/*
Theme Name: SMM Your Dream
Theme URI: https://example.com/smm
Author: AI
Author URI: https://example.com
Description: WordPress theme adapted from SMM landing design with Gutenberg and Contact Form 7 support.
Version: 1.0.0
Text Domain: smm-theme
*/

/* ─── TOKENS ─── */
:root {
  --burgundy:      #6D1A2E;
  --burgundy-deep: #4A0E1D;
  --burgundy-soft: #8B2240;
  --white:         #FFFFFF;
  --off-white:     #F9F7F5;
  --graphite:      #2C2C2C;
  --graphite-mid:  #6B6B6B;
  --graphite-light:#C8C4BE;
  --graphite-line: #E5E2DD;
  --radius-card:   28px;
  --radius-btn:    50px;
  --font-accent:   'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--graphite);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY SCALE ─── */
.t-hero     { font-family: var(--font-accent); font-size: clamp(3.5rem, 9vw, 8rem); font-weight: 700; line-height: 0.92; letter-spacing: -0.02em; }
.t-section  { font-family: var(--font-accent); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }
.t-card     { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.t-body     { font-family: var(--font-body); font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--graphite-mid); }
.t-label    { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--graphite-light); }
.t-caps     { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { background: var(--burgundy-deep); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(109,26,46,0.28); color: var(--white); }
.btn-outline { background: transparent; color: var(--burgundy); border: 1.5px solid var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--burgundy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); color: var(--burgundy); }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(229,226,221,0.6);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled { padding: 16px 48px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.3rem; font-weight: 700;
  color: var(--burgundy); letter-spacing: 0.04em;
  text-decoration: none; z-index: 105;
  line-height: 1;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--graphite-mid);
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--burgundy);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { transform: scaleX(1); }

/* BURGER MENU BUTTON */
.menu-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 110;
}
.menu-toggle span {
  display: block; position: absolute; height: 2px; width: 100%;
  background: var(--burgundy); border-radius: 2px;
  opacity: 1; left: 0;
  transition: .25s ease-in-out;
}
.menu-toggle span:nth-child(1) { top: 0px; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.active span:nth-child(1) { top: 11px; transform: rotate(135deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; left: -20px; }
.menu-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-135deg); }

/* ─── SECTION WRAPPER ─── */
.section { padding: 120px 48px; max-width: 1320px; margin: 0 auto; }
.section-narrow { padding: 100px 48px; max-width: 900px; margin: 0 auto; }

/* ─── DIVIDER ─── */
.divider { width: 100%; height: 1px; background: var(--graphite-line); }

/* ─── BLOCK 1: HERO ─── */
.wp-block-group.hero { /* Adapted for Gutenberg */
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 88px;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 80px 56px 80px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 36px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title { margin-bottom: 28px; color: var(--graphite); }
.hero-title span { color: var(--burgundy); display: block; }
.hero-sub {
  font-size: 1.05rem; line-height: 1.65;
  color: var(--graphite-mid);
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 48px;
  display: flex; align-items: center; gap: 12px;
  color: var(--graphite-light);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-scroll-line {
  width: 48px; height: 1px; background: var(--graphite-light);
}

.hero-right {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
}
.hero-photo-wrap {
  width: 100%; height: 100%;
  position: relative;
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #F0EAE5 0%, #E5DDD8 40%, #D4C4BC 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.photo-icon {
  width: 72px; height: 72px;
  border: 2px solid var(--graphite-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--graphite-light);
}
.hero-photo-badge {
  position: absolute;
  bottom: 40px; left: -24px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 14px;
  animation: slideInLeft 0.8s ease 0.6s both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.badge-icon {
  width: 44px; height: 44px;
  background: var(--burgundy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
}
.badge-text strong { display: block; font-size: 1rem; font-weight: 600; color: var(--graphite); }
.badge-text span { font-size: 0.72rem; color: var(--graphite-mid); font-weight: 400; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── BLOCK 2: SOCIAL PROOF ─── */
.wp-block-group.proof {
  background: var(--burgundy);
  padding: 0;
}
.proof-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  padding: 44px 48px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  transition: background 0.3s;
}
.proof-stat:last-child { border-right: none; }
.proof-stat:hover { background: rgba(255,255,255,0.06); }
.proof-num {
  font-family: var(--font-accent);
  font-size: 3rem; font-weight: 700;
  color: var(--white);
  line-height: 1; display: block;
  margin-bottom: 8px;
}
.proof-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── BLOCK 3: SERVICES (BENTO) ─── */
.wp-block-group.services { background: var(--off-white); }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 24px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.09); }
.bento-card:hover::before { border-color: var(--graphite-line); }

.bento-1 { grid-column: span 5; grid-row: span 1; background: var(--burgundy); color: white; }
.bento-2 { grid-column: span 4; grid-row: span 1; }
.bento-3 { grid-column: span 3; grid-row: span 2; background: var(--graphite); color: white; }
.bento-4 { grid-column: span 3; grid-row: span 1; }
.bento-5 { grid-column: span 6; grid-row: span 1; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.bento-1 .card-icon { background: rgba(255,255,255,0.15); }
.bento-3 .card-icon { background: rgba(255,255,255,0.1); }
.bento-card .card-icon { background: var(--burgundy); }

.card-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 10px; display: block;
  opacity: 0.55;
}
.bento-1 .card-tag, .bento-3 .card-tag { color: white; }

.card-title {
  font-family: var(--font-accent);
  font-size: 1.55rem; font-weight: 700; line-height: 1.15;
  margin-bottom: 14px;
}
.bento-1 .card-title, .bento-3 .card-title { color: white; }

.card-desc {
  font-size: 0.88rem; line-height: 1.65;
  color: var(--graphite-mid);
}
.bento-1 .card-desc { color: rgba(255,255,255,0.7); }
.bento-3 .card-desc { color: rgba(255,255,255,0.6); }

.card-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.ctag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
}
.ctag-light { background: var(--off-white); color: var(--graphite-mid); }
.ctag-bur   { background: rgba(255,255,255,0.2); color: white; }
.ctag-dark  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

.card-metric {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--graphite-line);
  display: flex; align-items: center; justify-content: space-between;
}
.bento-1 .card-metric { border-top-color: rgba(255,255,255,0.2); }

/* ─── BLOCK 4: EXPERIENCE ─── */
.wp-block-group.experience { background: var(--white); }
.exp-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.exp-left { position: sticky; top: 120px; }
.exp-label {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.exp-label-line { width: 32px; height: 1px; background: var(--burgundy); }
.exp-right { padding-top: 12px; }
.exp-point {
  padding: 32px 0;
  border-bottom: 1px solid var(--graphite-line);
  display: grid; grid-template-columns: 40px 1fr; gap: 24px; align-items: start;
}
.exp-point:first-child { padding-top: 0; border-top: 1px solid var(--graphite-line); }
.exp-num {
  font-family: var(--font-accent);
  font-size: 1.1rem; font-weight: 600; color: var(--burgundy);
  padding-top: 2px;
}
.exp-point-title {
  font-size: 1.05rem; font-weight: 600; color: var(--graphite);
  margin-bottom: 10px;
}
.exp-point-text { font-size: 0.92rem; line-height: 1.7; color: var(--graphite-mid); }

/* ─── BLOCK 5: PORTFOLIO ─── */
.wp-block-group.portfolio { background: var(--off-white); }
.portfolio-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 24px;
}
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.case-card:first-child { grid-column: span 2; }

.case-visual {
  height: 240px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.case-card:first-child .case-visual { height: 300px; }

.cv-bur  { background: linear-gradient(135deg, #6D1A2E, #9B3050); }
.cv-dark { background: linear-gradient(135deg, #1C1C1C, #3A3A3A); }
.cv-warm { background: linear-gradient(135deg, #C9956A, #A5744D); }

.case-mockup {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mock-phone {
  width: 120px; height: 200px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 22px;
  display: flex; flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mock-phone-inner {
  flex: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  padding: 8px; overflow: hidden;
}
.mock-cell {
  border-radius: 5px; background: rgba(255,255,255,0.2);
}
.mock-cell:first-child { grid-column: span 2; height: 60px; }
.mock-cell-sm { height: 40px; }
.mock-bar {
  height: 32px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0 10px; margin: 0 8px 8px;
  border-radius: 8px;
}
.mock-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }

.mock-stats {
  display: flex; gap: 12px;
  position: absolute; right: 20px;
}
.ms-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  color: white;
}
.ms-num { font-family: var(--font-accent); font-size: 1.5rem; font-weight: 700; display: block; line-height: 1; }
.ms-lbl { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 4px; display: block; }

.case-body { padding: 28px 28px 32px; }
.case-niche {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 10px; display: block;
}
.case-title {
  font-family: var(--font-accent);
  font-size: 1.25rem; font-weight: 700; color: var(--graphite);
  margin-bottom: 10px;
}
.case-desc { font-size: 0.86rem; line-height: 1.65; color: var(--graphite-mid); margin-bottom: 20px; }
.case-results { display: flex; gap: 24px; }
.case-result strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--graphite); }
.case-result span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--graphite-light); }


/* ─── BLOCK 6: CTA + FOOTER ─── */
.wp-block-group.cta {
  background: var(--burgundy);
  padding: 0;
}
.cta-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 20px; display: block;
}
.cta-title {
  font-family: var(--font-accent);
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700;
  color: white; line-height: 1.05; margin-bottom: 24px;
}
.cta-sub { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 400px; }

/* CONTACT FORM 7 STYLES */
.cta-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-card);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cta-form label {
  display: block;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.cta-form .wpcf7-form-control:not(.btn) {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 14px 18px;
  color: white;
  font-family: var(--font-body); font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  display: block;
}
.cta-form .wpcf7-form-control::placeholder { color: rgba(255,255,255,0.3); }
.cta-form .wpcf7-form-control:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form select { color: rgba(255,255,255,0.7); }
.cta-form select option { background: var(--burgundy-deep); color: white; }

.cta-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.cta-form p { margin-bottom: 16px; }
.cta-form p:last-child { margin-bottom: 0; }

/* Contact Form 7 Button Adapter */
.cta-form .wpcf7-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

div.wpcf7-response-output {
  margin: 1em 0;
  padding: 0.8em 1em;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 500;
  border: none !important;
}
div.wpcf7-mail-sent-ok { background: rgba(255,255,255,0.9); color: var(--burgundy); }
div.wpcf7-validation-errors { background: rgba(255, 100, 100, 0.2); color: white; }
span.wpcf7-not-valid-tip { font-size: 0.75rem; color: #ffafaf; margin-top: 4px; display: block; }


footer {
  background: var(--burgundy-deep);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-accent);
  font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.7);
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }
.footer-socials { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  transition: var(--transition);
}
.social-link:hover { border-color: rgba(255,255,255,0.6); color: white; background: rgba(255,255,255,0.1); }

/* ─── SCROLL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  .section, .section-narrow { padding: 80px 32px; }
  .wp-block-group.hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 420px; }
  .hero-photo-badge { left: 24px; }
  .proof-inner { flex-direction: column; padding: 0 32px; }
  .proof-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%;}
  .proof-stat:last-child { border-bottom: none; }
  .bento-1 { grid-column: span 12; }
  .bento-2 { grid-column: span 6; }
  .bento-3 { grid-column: span 6; grid-row: span 1; }
  .bento-4 { grid-column: span 6; }
  .bento-5 { grid-column: span 6; }
  .exp-inner { grid-template-columns: 1fr; gap: 40px; }
  .exp-left { position: relative; top: 0; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card:first-child { grid-column: span 1; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 24px 32px; }
}

@media (max-width: 640px) {
  nav { padding: 16px 20px; }

  .menu-toggle { display: block; }
  
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
  }
  .nav-links.active { right: 0; display: flex !important; }
  .nav-links a { font-size: 1.2rem; }
  .nav-links .btn { display: none; } /* Hide primary button in mobile nav if needed, or adjust */

  .section { padding: 64px 20px; }
  .hero-left { padding: 60px 20px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-1,.bento-2,.bento-3,.bento-4,.bento-5 { grid-column: span 1; grid-row: span 1; }
  .cta-form .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 60px 20px; }
  footer { padding: 20px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
}
