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

:root {
  --teal: #028090;
  --teal-light: #03a4b8;
  --teal-dark: #016070;
  --accent: #02C39A;
  --dark: #0D2B3E;
  --dark2: #0a1f2e;
  --white: #ffffff;
  --light: #f0f8fa;
  --light2: #e0f0f4;
  --gray: #64748b;
  --text: #1e3a4a;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 70px;
  background: rgba(13,43,62,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2,128,144,0.25);
  transition: all 0.3s;
}
nav.scrolled { height: 60px; background: rgba(13,43,62,0.99); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: white; letter-spacing: 1px; line-height: 1.2; }
.nav-logo-text span { color: var(--accent); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 13.5px; font-weight: 400; letter-spacing: 0.3px; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--accent); transform: scaleX(0); transition: transform 0.25s; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { background: var(--teal); color: white; padding: 9px 22px; font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s; border: 1.5px solid var(--teal); }
.nav-cta:hover { background: var(--teal-light); border-color: var(--teal-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; }

.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark2); border-top: 1px solid rgba(2,128,144,0.3); z-index: 99; padding: 20px 5vw; flex-direction: column; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

/* ─── SECTION COMMON ─── */
section { padding: 100px 5vw; }

.section-tag { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; position: relative; padding-left: 20px; }
.section-tag::before { content: ''; position: absolute; left: 0; top: 50%; width: 12px; height: 1.5px; background: var(--teal); transform: translateY(-50%); }
.section-tag.centered { display: block; text-align: center; padding-left: 0; }
.section-tag.centered::before { display: none; }

.section-h2 { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.1; color: var(--dark); margin-bottom: 16px; }
.section-h2 span { color: var(--teal); }
.section-h2.light { color: white; }

.section-lead { font-size: 16px; line-height: 1.7; color: var(--gray); max-width: 560px; margin-bottom: 60px; }
.section-lead.light { color: rgba(255,255,255,0.5); }
.section-lead.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── LOADING ─── */
.section-loading { display: flex; align-items: center; justify-content: center; min-height: 200px; }
.loader { width: 36px; height: 36px; border: 3px solid rgba(2,128,144,0.2); border-top-color: var(--teal); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── BTNS ─── */
.btn-primary {
  background: var(--teal);
  color: white;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--teal);
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: transparent;
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2,128,144,0.3);
}
.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2,195,154,0.15);
}

/* ─── HERO ─── */
#hero { min-height: 100vh; background: var(--dark); display: flex; align-items: center; position: relative; overflow: hidden; padding: 70px 5vw 0; }

.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(2,128,144,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(2,128,144,0.06) 1px, transparent 1px); background-size: 60px 60px; animation: gridShift 20s linear infinite; }
@keyframes gridShift { from { transform: translate(0,0); } to { transform: translate(60px,60px); } }

.hero-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(2,128,144,0.18) 0%, transparent 70%); top: -100px; right: -100px; animation: glowPulse 6s ease-in-out infinite; }
.hero-glow2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(2,195,154,0.1) 0%, transparent 70%); bottom: 50px; left: -50px; animation: glowPulse 8s ease-in-out infinite reverse; }
@keyframes glowPulse { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.hero-teal-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--teal); }

.hero-content { position: relative; z-index: 2; max-width: 700px; animation: heroIn 1s ease both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(2,128,144,0.15); border: 1px solid rgba(2,128,144,0.4); padding: 7px 14px; font-size: 12px; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; animation: heroIn 1s 0.1s ease both; }
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: block; }

.hero-h1 { font-family: 'Syne', sans-serif; font-size: clamp(42px, 6vw, 72px); font-weight: 800; line-height: 1.05; color: white; margin-bottom: 24px; animation: heroIn 1s 0.2s ease both; }
.hero-h1 em { color: var(--teal); font-style: normal; display: block; }

.hero-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.62); max-width: 540px; margin-bottom: 40px; animation: heroIn 1s 0.3s ease both; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: heroIn 1s 0.4s ease both; }

.hero-stats { position: absolute; right: 5vw; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 20px; z-index: 2; animation: heroIn 1s 0.5s ease both; }
.stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(2,128,144,0.3); padding: 22px 28px; text-align: center; min-width: 140px; position: relative; overflow: hidden; transition: all 0.3s; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--teal); }
.stat-card:hover { background: rgba(2,128,144,0.12); transform: translateX(-4px); }
.stat-num { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; color: var(--accent); display: block; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }

/* ─── ABOUT ─── */
#about { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-main-card { background: var(--dark); padding: 48px 40px; position: relative; overflow: hidden; }
.about-main-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--teal); }
.about-main-card::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; border: 40px solid rgba(2,128,144,0.08); border-radius: 50%; }
.about-shield { width: 52px; height: 52px; background: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.about-shield svg { width: 28px; height: 28px; fill: white; }
.about-main-card h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 14px; }
.about-main-card p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.6); }

.about-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.badge { background: rgba(2,128,144,0.12); border: 1px solid rgba(2,128,144,0.25); padding: 14px; display: flex; align-items: center; gap: 10px; }
.badge svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; }
.badge span { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 400; }

.values-list { display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: white; border-left: 3px solid var(--teal); transition: all 0.25s; opacity: 0; transform: translateY(20px); }
.value-item.visible { opacity: 1; transform: translateY(0); }
.value-item:hover { transform: translateX(6px); box-shadow: 4px 4px 20px rgba(2,128,144,0.1); }
.value-icon { width: 38px; height: 38px; flex-shrink: 0; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 18px; height: 18px; fill: white; }
.value-item h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ─── SERVICES ─── */
#services { background: white; }
.services-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  grid-column: span 1;
}
.services-grid::after {
  content: '';
  grid-column: span 1;
}

.service-card { background: var(--light); border: 1px solid var(--light2); position: relative; overflow: hidden; transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s; display: flex; flex-direction: column; opacity: 0; transform: translateY(24px); }
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(2,128,144,0.15); border-color: var(--teal); }

.service-card-top { background: var(--dark); padding: 28px 28px 22px; position: relative; }
.service-card-top::after { content: ''; position: absolute; bottom: 0; left: 28px; right: 28px; height: 2px; background: var(--teal); }
.service-num { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: rgba(2,128,144,0.25); line-height: 1; margin-bottom: 10px; }
.service-icon-wrap { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.service-icon-wrap svg { width: 24px; height: 24px; fill: white; }
.service-card-top h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; }
.service-type { font-size: 11px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }

.service-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-body p { font-size: 13.5px; line-height: 1.7; color: var(--gray); margin-bottom: 22px; }
.service-features { list-style: none; flex: 1; margin-bottom: 24px; }
.service-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--light2); }
.service-features li:last-child { border-bottom: none; }
.service-features li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

.service-price-tag { background: var(--dark); padding: 4px 0 0; }
.service-cta-full {
  display: block; width: 100%; text-align: center;
  background: var(--teal); color: white;
  padding: 14px 18px;
  text-decoration: none; font-size: 13px; font-weight: 500;
  transition: background 0.2s;
}
.service-cta-full:hover { background: var(--teal-light); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--dark); overflow: hidden; position: relative; border-top: 1px solid rgba(2,128,144,0.15); border-bottom: 1px solid rgba(2,128,144,0.15); }
.trust-bar-inner { display: flex; animation: marquee 32s linear infinite; width: max-content; }
.trust-bar-inner:hover { animation-play-state: paused; }
.trust-bar-set { display: flex; align-items: center; white-space: nowrap; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 20px 36px; border-right: 1px solid rgba(2,128,144,0.18); transition: background 0.25s; cursor: default; }
.trust-item:hover { background: rgba(2,128,144,0.1); }
.trust-item-icon { width: 30px; height: 30px; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item-icon svg { width: 15px; height: 15px; fill: white; }
.trust-item-text { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65); letter-spacing: 0.3px; }
.trust-item-text span { color: var(--accent); font-weight: 600; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── PROCESS ─── */
#process { background: var(--dark); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.process-step { background: rgba(255,255,255,0.03); border: 1px solid rgba(2,128,144,0.18); padding: 34px 28px; position: relative; overflow: hidden; transition: all 0.3s; opacity: 0; transform: translateY(24px); }
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step:hover { background: rgba(2,128,144,0.1); border-color: var(--teal); }
.process-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background 0.3s; }
.process-step:hover::before { background: var(--accent); }

.step-num { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: rgba(2,128,144,0.2); line-height: 1; margin-bottom: 16px; transition: color 0.3s; }
.process-step:hover .step-num { color: rgba(2,195,154,0.35); }
.step-icon { width: 42px; height: 42px; background: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-icon svg { width: 20px; height: 20px; fill: white; }
.process-step h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: white; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ─── CASE STUDIES ─── */
#cases { background: var(--light); }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.case-card { background: white; overflow: hidden; transition: all 0.3s; position: relative; opacity: 0; transform: translateY(24px); }
.case-card.visible { opacity: 1; transform: translateY(0); }
.case-card:hover { box-shadow: 0 20px 60px rgba(2,128,144,0.12); transform: translateY(-4px); }

.case-card-header { background: var(--dark); padding: 28px 32px; display: flex; align-items: flex-start; justify-content: space-between; position: relative; }
.case-card-header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--teal); }
.case-label { font-size: 10px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.case-client h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: white; margin-bottom: 4px; }
.case-location { font-size: 12px; color: rgba(255,255,255,0.45); }
.case-service-badge { padding: 7px 14px; font-size: 11px; font-weight: 500; color: white; white-space: nowrap; align-self: flex-start; }
.case-service-badge.teal { background: var(--teal); }
.case-service-badge.accent { background: var(--accent); color: var(--dark); }

.case-body { padding: 28px 32px; }
.case-sections { display: flex; flex-direction: column; gap: 18px; }
.case-section { display: flex; gap: 14px; align-items: flex-start; }
.case-section-icon { width: 32px; height: 32px; flex-shrink: 0; background: var(--light); display: flex; align-items: center; justify-content: center; border: 1px solid var(--light2); }
.case-section-icon svg { width: 16px; height: 16px; fill: var(--teal); }
.case-section-content h5 { font-size: 12px; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.case-section-content p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.case-outlets { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.outlet-tag { background: var(--light); border: 1px solid var(--light2); padding: 5px 12px; font-size: 11.5px; color: var(--dark); }

/* ─── PRICING ─── */
#pricing { background: white; }
.pricing-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card { border: 2px solid var(--light2); overflow: hidden; position: relative; transition: all 0.35s; opacity: 0; transform: translateY(24px); }
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(2,128,144,0.12); }
.pricing-card.featured { border-color: var(--teal); transform: translateY(-10px); box-shadow: 0 24px 60px rgba(2,128,144,0.18); }
.pricing-card.featured.visible:not(:hover) { transform: translateY(-10px); }

.featured-tag { background: var(--accent); text-align: center; padding: 8px; font-size: 11px; font-weight: 600; color: var(--dark); letter-spacing: 1px; text-transform: uppercase; }
.pricing-card-top { background: var(--dark); padding: 28px 28px 22px; }
.pricing-icon { width: 44px; height: 44px; background: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pricing-icon svg { width: 22px; height: 22px; fill: white; }
.pricing-card-top h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: white; margin-bottom: 4px; }
.pricing-card-top p { font-size: 12px; color: rgba(255,255,255,0.45); }

.pricing-card-price { padding: 22px 28px; background: var(--light); border-bottom: 1px solid var(--light2); }
.price-amount { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 5px; }
.price-period { font-size: 13px; color: var(--gray); }

.pricing-features { padding: 24px 28px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text); }
.pricing-features li svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }

.pricing-cta { padding: 0 28px 28px; }
.pricing-cta a { display: block; text-align: center; background: var(--dark); color: white; padding: 13px; font-size: 13px; font-weight: 500; text-decoration: none; transition: all 0.25s; border: 2px solid var(--dark); }
.pricing-cta a:hover { background: var(--teal); border-color: var(--teal); }
.pricing-card.featured .pricing-cta a { background: var(--teal); border-color: var(--teal); }

/* ─── CONTACT ─── */
#contact { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(2,128,144,0.25); padding: 18px 22px; display: flex; align-items: center; gap: 16px; transition: all 0.25s; text-decoration: none; }
.contact-card:hover { background: rgba(2,128,144,0.12); border-color: var(--teal); transform: translateX(4px); }
.contact-card-icon { width: 42px; height: 42px; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 20px; height: 20px; fill: white; }
.contact-card-label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-card-value { font-size: 15px; font-weight: 500; color: white; }

.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(2,128,144,0.2); padding: 36px 32px; }
.contact-form h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(2,128,144,0.25); padding: 12px 16px; color: white; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { background: var(--teal); color: white; border: none; padding: 14px 32px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer; width: 100%; transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--teal-light); }
.form-submit.sent { background: var(--accent); color: var(--dark); }

/* ─── FOOTER ─── */
footer { background: var(--dark2); border-top: 1px solid rgba(2,128,144,0.2); padding: 28px 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand-icon { width: 30px; height: 30px; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.footer-brand-icon svg { width: 16px; height: 16px; fill: white; }
.footer-brand-text { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: white; letter-spacing: 1px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: auto; margin-left: 0; width: auto; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured, .pricing-card.featured.visible:not(:hover) { transform: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .cases-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  section { padding: 70px 5vw; }
}
