@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@500;600;700&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  --bg: #FFF8F5;
  --surface: #FFFFFF;
  --surface-alt: #FFF0EB;
  --primary: #7C2D5B;
  --primary-hover: #9B3A72;
  --secondary: #E8A0BF;
  --accent: #F59E0B;
  --text: #2D1B2E;
  --text-secondary: #6B4C6E;
  --text-muted: #A087A2;
  --border: #F0D4E4;
  --radius: 20px;
  --shadow-soft: 0 4px 24px rgba(124, 45, 91, 0.08);
  --shadow-hover: 0 8px 32px rgba(124, 45, 91, 0.14);
  --transition: 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--primary-hover); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(124, 45, 91, 0.06);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.cookie-banner a {
  text-decoration: underline;
  color: var(--primary);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 45, 91, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 45, 91, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-cookie {
  background: var(--primary);
  color: #fff;
  padding: 10px 28px;
  border-radius: var(--radius);
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cookie:hover {
  background: var(--primary-hover);
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(124, 45, 91, 0.06);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  margin-left: 4px;
  white-space: nowrap;
  padding: 10px 22px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== SECTION UTILITIES ==================== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-family: 'Mulish', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(124, 45, 91, 0.06);
  border-radius: 30px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 16px;
}

.petal-divider {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.petal-divider svg {
  opacity: 0.3;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface-alt) 50%, #fce4ec 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 191, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 45, 91, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(124, 45, 91, 0.06);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(124, 45, 91, 0.12);
  object-fit: cover;
  width: 100%;
  max-height: 520px;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 2px solid var(--secondary);
  opacity: 0.4;
  z-index: -1;
}

/* ==================== ABOUT ==================== */
.about {
  background: var(--surface);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
  max-height: 460px;
}

.about-image {
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 2px solid var(--border);
  z-index: -1;
}

.about-content .section-label {
  text-align: left;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==================== BENEFITS ==================== */
.benefits {
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.benefit-gradient {
  height: 6px;
  background: linear-gradient(90deg, var(--secondary), #F8C8DC, var(--secondary));
}

.benefit-body {
  padding: 36px 28px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

/* ==================== SERVICES ==================== */
.services {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(124, 45, 91, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ==================== TRACKING / CREATIVE (IMAGE + TEXT SECTIONS) ==================== */
.split-section {
  position: relative;
}

.split-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
  max-height: 440px;
}

.split-content .section-label {
  text-align: left;
}

.split-content h2 {
  margin-bottom: 18px;
}

.split-content > p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1rem;
}

.split-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.split-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.split-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.split-feature h4 {
  font-family: 'Mulish', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.split-feature p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.tracking-section {
  background: var(--surface);
}

.creative-section {
  background: var(--bg);
}

.creative-section .split-image {
  order: 2;
}

.creative-section .split-content {
  order: 1;
}

/* ==================== MARQUEE ==================== */
.marquee-section {
  background: var(--primary);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'Cormorant', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 240, 235, 0.9);
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee-track span::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.6;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  background: var(--surface);
}

.steps-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-curve {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 80px);
  background: linear-gradient(to bottom, var(--secondary), var(--border));
  border-radius: 2px;
}

.step-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  align-items: flex-start;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.step-number {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(124, 45, 91, 0.2);
  z-index: 2;
  position: relative;
}

.step-content {
  flex: 1;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.step-content h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-initial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==================== FAQ ==================== */
.faq {
  background: var(--surface);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(124, 45, 91, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-item.active .faq-icon svg {
  color: #fff;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ==================== CONTACT ==================== */
.contact {
  background: var(--bg);
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-intro {
  text-align: center;
  margin-bottom: 36px;
}

.contact-intro h2 {
  margin-bottom: 12px;
}

.contact-intro p {
  color: var(--text-secondary);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-detail h4 {
  font-family: 'Mulish', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-bullets li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--primary);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--primary);
  color: rgba(255, 240, 235, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 240, 235, 0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 240, 235, 0.7);
  font-size: 0.82rem;
}

.footer-legal a:hover {
  color: #fff;
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
  padding: 120px 0 80px;
  background: var(--bg);
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal-page .legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--primary);
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { padding: 120px 0 20px; }
  .hero-text { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image::before { display: none; }

  .about .container,
  .split-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content .section-label,
  .split-content .section-label {
    text-align: center;
  }

  .about-image::after { display: none; }

  .about-image img,
  .split-image img {
    max-height: 360px;
    margin: 0 auto;
  }

  .about-stats {
    justify-items: center;
  }

  .creative-section .split-image {
    order: 0;
  }

  .creative-section .split-content {
    order: 0;
  }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-bullets {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    padding: 32px 24px;
  }

  .step-item,
  .step-item:nth-child(even) {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
  }

  .steps-curve { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-content { padding: 100px 0 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; text-align: center; }
}
