/* ==========================================================
   VARIABLES & RESET
   ========================================================== */

:root {
  /* Duck blue palette */
  --blue:       #1e7b8e;
  --blue-dark:  #145f6f;
  --blue-deep:  #0d4a58;
  --blue-light: #2d9ab5;
  --blue-pale:  #e0f2f6;

  /* Mustard palette */
  --mustard:       #d4962a;
  --mustard-dark:  #b07c1a;
  --mustard-light: #e5a83a;
  --mustard-pale:  #fdf3e0;

  /* Neutral */
  --cream:    #faf8f4;
  --white:    #ffffff;
  --dark:     #1b2a30;
  --text:     #3c3c3c;
  --text-muted: #717171;
  --border:   #e4ddd2;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(14, 75, 88, 0.07);
  --shadow-md: 0 6px 24px rgba(14, 75, 88, 0.11);
  --shadow-lg: 0 12px 48px rgba(14, 75, 88, 0.15);

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Transitions */
  --t: 0.28s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: 1.35rem; font-weight: 600; }

em { font-style: italic; color: var(--mustard); }

a { text-decoration: none; color: inherit; transition: color var(--t); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ==========================================================
   LAYOUT UTILITIES
   ========================================================== */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 104px 0; }

.bg-cream { background: var(--cream); }
.bg-blue  { background: var(--blue-dark); }

/* ==========================================================
   TYPOGRAPHY UTILITIES
   ========================================================== */

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mustard);
  margin-bottom: 12px;
}

.eyebrow-light { color: rgba(229, 168, 58, 0.9); }

.section-title { margin-bottom: 18px; }

.section-title-light { color: var(--white); }

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.body-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.body-text strong { color: var(--dark); font-weight: 600; }

/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  line-height: 1;
}

/* Mustard / CTA */
.btn-mustard {
  background: var(--mustard);
  color: var(--white);
  border-color: var(--mustard);
}
.btn-mustard:hover {
  background: var(--mustard-dark);
  border-color: var(--mustard-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 150, 42, 0.35);
}

/* Ghost / secondary (used on hero dark bg) */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline (used on light bg) */
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

.btn-full { width: 100%; justify-content: center; }

/* Nav button */
.btn-nav {
  background: var(--mustard);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--t);
}
.btn-nav:hover {
  background: var(--mustard-dark);
  transform: translateY(-1px);
}

/* ==========================================================
   NAVIGATION
   ========================================================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(21, 45, 54, 0.09);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color var(--t);
}
.navbar.scrolled .nav-brand { color: var(--dark); }

.nav-logo {
  font-size: 2rem;
  color: var(--mustard);
  line-height: 1;
  flex-shrink: 0;
}

.nav-title { display: flex; flex-direction: column; }

.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.65;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.btn-nav) {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t);
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--mustard);
  border-radius: 2px;
  transition: width var(--t);
}

.nav-links a:not(.btn-nav):hover::after,
.nav-links a:not(.btn-nav).active::after { width: 100%; }

.navbar.scrolled .nav-links a:not(.btn-nav) { color: var(--dark); }
.nav-links a:not(.btn-nav):hover { color: var(--mustard); }
.navbar.scrolled .nav-links a:not(.btn-nav):hover { color: var(--blue); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================
   HERO
   ========================================================== */

.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue) 55%, #2fa6c0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 130px 0 100px;
}

/* Ambient glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.18;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  top: -180px; right: -100px;
  background: radial-gradient(circle, var(--mustard) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title { color: var(--white); font-weight: 700; margin-bottom: 22px; }
.hero-title em { color: var(--mustard-light); }

.hero-desc {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual / rings */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-rings {
  position: relative;
  width: 360px;
  height: 360px;
}

.ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  animation: pulseRing 5s ease-in-out infinite;
}
.ring-lg { width: 100%; height: 100%; animation-delay: 0s; }
.ring-md { width: 75%;  height: 75%;  animation-delay: 0.6s; }
.ring-sm { width: 52%;  height: 52%;  animation-delay: 1.2s; }

@keyframes pulseRing {
  0%, 100% { opacity: 0.14; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.28; transform: translate(-50%, -50%) scale(1.03); }
}

.hero-avatar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-avatar span {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
}

/* Floating notes */
.fnote {
  position: absolute;
  font-size: 1.6rem;
  color: var(--mustard-light);
  opacity: 0.85;
  animation: floatNote 4.5s ease-in-out infinite;
}
.fn1 { top: 4%;  left: 8%;  animation-delay: 0s;    font-size: 1.8rem; }
.fn2 { top: 15%; right: 0%; animation-delay: 0.7s;  font-size: 1.4rem; }
.fn3 { top: 60%; right: 2%; animation-delay: 1.4s;  font-size: 2rem; }
.fn4 { bottom: 8%; left: 4%;  animation-delay: 2.1s; font-size: 1.3rem; }
.fn5 { top: 38%; left: 0%;   animation-delay: 2.8s; font-size: 1.5rem; }

@keyframes floatNote {
  0%, 100% { transform: translateY(0) rotate(0deg);   opacity: 0.75; }
  50%       { transform: translateY(-14px) rotate(8deg); opacity: 1;   }
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 1.1rem;
  animation: bounceDown 2.2s ease-in-out infinite;
  transition: all var(--t);
}
.hero-scroll:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(7px); }
}

/* ==========================================================
   STATS BAR
   ========================================================== */

.stats-bar {
  background: var(--dark);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat { padding: 20px 12px; }

.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==========================================================
   ABOUT
   ========================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

/* Photo column */
.about-img-frame {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--blue-pale) 0%, #c9e8ef 100%);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.about-img-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(30, 123, 142, 0.08);
}

.placeholder-initials {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.35;
  line-height: 1;
}

.placeholder-sub {
  font-size: 0.8rem;
  color: var(--blue);
  opacity: 0.5;
  font-style: italic;
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--mustard);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

/* Content column */
.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.tag {
  background: var(--blue-pale);
  color: var(--blue-dark);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  border: 2px solid var(--blue-pale);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.insta-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* ==========================================================
   SERVICES
   ========================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Featured card */
.service-featured {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.service-featured h3 { color: var(--white); }
.service-featured p,
.service-featured .service-list li { color: rgba(255, 255, 255, 0.8); }

/* Ribbon */
.service-ribbon {
  position: absolute;
  top: 22px;
  right: -32px;
  background: var(--mustard);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 44px;
  transform: rotate(35deg);
}

.service-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.service-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '✓';
  color: var(--mustard);
  font-weight: 700;
  flex-shrink: 0;
}
.service-featured .service-list li::before { color: var(--mustard-light); }

/* Custom offer banner */
.custom-offer-banner {
  margin-top: 48px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.custom-offer-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 640px;
  line-height: 1.7;
}
.custom-offer-banner strong {
  color: var(--white);
}
@media (max-width: 640px) {
  .custom-offer-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

/* ==========================================================
   HOW IT WORKS
   ========================================================== */

.steps-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 8px 0;
}

.step-num {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.step-body { padding-top: 18px; }
.step-body h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.2rem; }
.step-body p  { color: var(--text-muted); line-height: 1.72; }

.step-line {
  width: 2px;
  height: 48px;
  margin-left: 39px;
  background: linear-gradient(to bottom, var(--blue-light), var(--mustard-light));
  border-radius: 2px;
  opacity: 0.5;
}

/* ==========================================================
   BENEFITS
   ========================================================== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: all var(--t);
}
.benefit-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.benefit-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */

.testimonials { background: var(--dark); }

.testimonials .section-desc { color: rgba(255, 255, 255, 0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all var(--t);
}
.tcard:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 150, 42, 0.35);
}

.tcard-quote {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--mustard);
  line-height: 0.9;
  margin-bottom: 18px;
  opacity: 0.8;
}

.tcard-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 28px;
}

.tcard-author { display: flex; align-items: center; gap: 12px; }

.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.tcard-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.tcard-role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  margin-top: 2px;
}

/* ==========================================================
   CONTACT
   ========================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 20px 0 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.contact-icon { font-size: 1.25rem; flex-shrink: 0; }
.contact-details a {
  color: var(--mustard-light);
  font-weight: 500;
}
.contact-details a:hover { color: var(--mustard); }

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
}
.contact-note span { font-size: 1.2rem; }

/* Form */
.form-wrapper {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 123, 142, 0.13);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b0b0; }
.form-group textarea { resize: vertical; min-height: 128px; }

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23717171' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 48px 20px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p  { color: var(--text-muted); }

/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
  background: #0c1c22;
  color: rgba(255, 255, 255, 0.6);
  padding: 52px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand { display: flex; align-items: center; gap: 12px; }

.footer-logo { font-size: 2rem; color: var(--mustard); line-height: 1; }

.footer-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.footer-tagline { font-size: 0.72rem; opacity: 0.5; margin-top: 2px; }

.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--mustard); }

.footer-insta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t);
}
.footer-insta:hover { color: var(--mustard); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.4;
}

/* ==========================================================
   SCROLL-TO-TOP
   ========================================================== */

.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--t);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 998;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* ==========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================== */

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s ease calc(var(--delay, 0s)),
              transform 0.55s ease calc(var(--delay, 0s));
}
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease calc(var(--delay, 0s)),
              transform 0.5s ease calc(var(--delay, 0s));
}
.reveal-left.in-view,
.reveal-up.in-view {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================================== */

@media (max-width: 1024px) {
  .about-grid { gap: 56px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==========================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================================== */

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--blue-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 1050;
  }
  .nav-links.open { display: flex; }

  .nav-links a:not(.btn-nav) {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
  }

  /* Hero */
  .hero { padding: 110px 0 90px; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-text { order: 2; }
  .hero-visual { order: 1; }

  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }

  .hero-rings { width: 260px; height: 260px; }
  .hero-avatar span { font-size: 1.8rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-col { max-width: 320px; margin: 0 auto; width: 100%; }

  /* Benefits */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-wrapper { padding: 32px 24px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-nav { gap: 14px; }
}

/* ==========================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ========================================================== */

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }

  h2 { font-size: 1.8rem; }

  .hero-rings { width: 220px; height: 220px; }
  .hero-avatar span { font-size: 1.5rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-val { font-size: 2.2rem; }

  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .services-grid { max-width: 100%; }

  .step { grid-template-columns: 64px 1fr; gap: 20px; }
  .step-num { width: 64px; height: 64px; font-size: 1.2rem; }
  .step-line { margin-left: 31px; }

  .scroll-top { bottom: 20px; right: 20px; }
}
