/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --black: #0a0a0a;

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: background 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.nav-logo-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.nav-cta) {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-500);
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease-out);
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--slate-900);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-600);
  transition: width 0.3s var(--ease-out);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-700) !important;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.25s var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--teal-600) !important;
  color: var(--white) !important;
  border-color: var(--teal-600) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--slate-700);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--slate-800);
  letter-spacing: -0.02em;
  padding: 12px 24px;
  transition: color 0.25s var(--ease-out);
}

.mobile-menu-link:hover {
  color: var(--teal-600);
}

.mobile-menu-link--cta {
  margin-top: 16px;
  font-size: 16px;
  color: var(--teal-700);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--teal-200);
  border-radius: 100px;
  padding: 14px 28px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--slate-50);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(13, 148, 136, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(13, 148, 136, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 32px;
}

.hero-tag-line {
  width: 32px;
  height: 1px;
  background: var(--teal-600);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 28px;
}

.hero-title-accent {
  font-style: italic;
  color: var(--teal-600);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-500);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--slate-400);
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--slate-200);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  overflow: hidden;
  border-radius: 16px;
  position: absolute;
}

.hero-img--main {
  width: 75%;
  height: 85%;
  top: 0;
  right: 0;
}

.hero-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hero-img--main:hover img {
  transform: scale(1.03);
}

.hero-img--accent {
  width: 45%;
  height: 35%;
  bottom: 10%;
  left: 0;
  border: 4px solid var(--slate-50);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--small {
  width: 50%;
  height: 28%;
  bottom: 0;
  right: 10%;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.hero-img--small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: 38%;
  left: -12px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-200);
}

.btn--ghost:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--teal-600);
  border-color: var(--teal-600);
}

.btn--outline:hover {
  background: var(--teal-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--teal-700);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--teal-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

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

.btn--lg {
  padding: 18px 36px;
  font-size: 15px;
}

/* ── Section Shared ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 20px;
}

.section-tag--light {
  color: var(--teal-400);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 20px;
}

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

.section-title-accent {
  font-style: italic;
  color: var(--teal-600);
}

.section-title-accent--light {
  color: var(--teal-400);
}

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

.section-header--centered {
  text-align: center;
}

/* ── Services ── */
.services {
  padding: 120px 0;
  background: var(--white);
}

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

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  transition: all 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: var(--teal-100);
}

.service-card-icon {
  padding: 28px 28px 0;
  color: var(--teal-600);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  padding: 16px 28px 0;
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-500);
  padding: 12px 28px 24px;
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--slate-50);
}

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

.about-visual {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 78%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid var(--slate-50);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 24px;
  right: 40px;
  background: var(--teal-600);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.3);
}

.about-exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-exp-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.4;
}

.about-content {
  max-width: 480px;
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--teal-600);
  margin-bottom: 32px;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate-500);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-700);
}

.about-feature svg {
  flex-shrink: 0;
}

/* ── Why Us ── */
.why-us {
  padding: 120px 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.why-card {
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: all 0.4s var(--ease-out);
}

.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateY(-4px);
}

.why-card-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-500);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-400);
}

/* ── Testimonials ── */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

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

.testimonial-card {
  padding: 36px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border-color: var(--teal-100);
}

.testimonial-card-quote {
  color: var(--teal-400);
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-card-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate-600);
  margin-bottom: 28px;
}

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

.testimonial-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card-name {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-800);
  letter-spacing: -0.01em;
}

.testimonial-card-location {
  display: block;
  font-size: 12px;
  color: var(--slate-400);
  margin-top: 2px;
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
  background: var(--teal-700);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}

.cta-content {
  flex: 1;
  max-width: 520px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-title-accent {
  font-style: italic;
  color: var(--teal-200);
}

.cta-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: var(--slate-50);
}

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

.contact-divider {
  width: 48px;
  height: 1px;
  background: var(--teal-600);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  flex-shrink: 0;
}

.contact-detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.contact-detail-value {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.6;
}

.contact-detail-value a {
  transition: color 0.2s var(--ease-out);
}

.contact-detail-value a:hover {
  color: var(--teal-600);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
}

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

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: 12px;
  outline: none;
  transition: all 0.25s var(--ease-out);
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder {
  color: var(--slate-300);
}

.form-select {
  cursor: pointer;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  margin-bottom: 16px;
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 320px;
}

.form-success-text a {
  color: var(--teal-600);
  font-weight: 500;
}

/* ── Footer ── */
.footer {
  padding: 64px 0 32px;
  background: var(--slate-900);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.75;
  color: var(--slate-500);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--slate-400);
  transition: color 0.2s var(--ease-out);
}

.footer-nav a:hover {
  color: var(--teal-400);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-phone,
.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--slate-400);
  transition: color 0.2s var(--ease-out);
}

.footer-phone:hover,
.footer-address:hover {
  color: var(--teal-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  color: var(--slate-600);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 480px;
    order: -1;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    height: 440px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero-visual {
    height: 360px;
  }

  .hero-img--main {
    width: 85%;
    height: 80%;
  }

  .hero-img--accent {
    width: 50%;
    height: 30%;
  }

  .hero-img--small {
    width: 55%;
    height: 25%;
  }

  .hero-floating-card {
    display: none;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-num {
    font-size: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .services,
  .about,
  .why-us,
  .testimonials,
  .cta,
  .contact {
    padding: 80px 0;
  }
}

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

  .hero-title {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat-divider {
    display: none;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: 14px;
  }
}
