:root {
  --primary: #2c3e50;
  --secondary: #e67e22;
  --accent: #16a085;
  --light: #ecf0f1;
  --dark: #1a252f;
  --text: #34495e;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav-wrapper {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-editorial .container {
  text-align: center;
}

.hero-editorial h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-editorial .lead {
  font-size: 1.25rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-editorial .hero-img {
  width: 100%;
  max-width: 700px;
  margin: 40px auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Section Styles */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--light);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-accent {
  background: linear-gradient(135deg, var(--secondary) 0%, #d35400 100%);
  color: var(--white);
}

.section-accent h2 {
  color: var(--white);
}

h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 600;
}

p + p {
  margin-top: 18px;
}

/* Article Content */
.article-content {
  font-size: 1.05rem;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content blockquote {
  border-left: 4px solid var(--secondary);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(230,126,34,0.08);
  font-style: italic;
  font-size: 1.15rem;
}

.inline-img {
  margin: 36px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: #d35400;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--light);
  color: var(--primary);
}

.cta-inline {
  margin: 32px 0;
  text-align: center;
}

/* Cards */
.cards-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.card {
  flex: 1 1 300px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 12px;
}

.card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 16px 0;
}

.card .price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
}

.card ul {
  list-style: none;
  margin: 16px 0;
}

.card ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Service Grid */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-item {
  flex: 1 1 340px;
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary), #d35400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.service-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-content .price-tag {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Split Section */
.split-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
}

.split-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Testimonials */
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 24px 0;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

/* Form Styles */
.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #dde1e5;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.benefit-item {
  flex: 1 1 250px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: center;
  margin: 40px 0;
}

.stat-item {
  flex: 1 1 140px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.section-dark .stat-number {
  color: var(--white);
}

.stat-label {
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--secondary);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta .btn {
  box-shadow: 0 4px 20px rgba(230,126,34,0.4);
}

/* Thanks Page */
.thanks-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.thanks-content {
  max-width: 540px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), #1abc9c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

.legal-content h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content li {
  margin-bottom: 14px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-editorial h1 {
    font-size: 2rem;
  }

  .split-section {
    flex-direction: column;
    gap: 32px;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .section {
    padding: 50px 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  .cards-wrap {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    right: 16px;
    bottom: 100px;
  }
}
