/* ============================================================
   AmenAmen — styles.css
   Thème : Clair · Orange #F5501E · Teal #1BB8A3 · Cormorant + Plus Jakarta Sans
   ============================================================ */

:root {
  --orange:      #F5501E;
  --orange2:     #FF6B3D;
  --orange-pale: #FFF0EC;
  --teal:        #1BB8A3;
  --teal-dark:   #159F8C;
  --teal-pale:   #E8F9F7;
  --purple:      #7B5EA7;
  --purple-pale: #F0EBF8;
  --navy:        #0D1B2A;
  --navy2:       #162436;
  --white:       #FFFFFF;
  --cream:       #FFFAF8;
  --cream2:      #FFF5F0;
  --text:        #1C1C1E;
  --text2:       #4A4A5A;
  --text3:       #9898A8;
  --border:      rgba(0,0,0,0.07);
  --r8:8px; --r12:12px; --r16:16px; --r24:24px; --r32:32px; --r999:999px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
  --shadow-orange: 0 12px 40px rgba(245,80,30,0.30);
  --shadow-teal:   0 12px 40px rgba(27,184,163,0.25);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ===== NAVBAR ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: 68px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,250,248,0.90);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(245,80,30,0.08);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.nav-logo img { height: 36px; object-fit: contain; transition: opacity .2s; mix-blend-mode: multiply; }
.nav-logo img:hover { opacity: .85; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .9rem; font-weight: 600; color: var(--text2);
  position: relative; padding-bottom: 3px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--orange); border-radius: 1px; transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: #fff; padding: 10px 24px;
  border-radius: var(--r999); font-weight: 700; font-size: .88rem;
  border: none; cursor: pointer; transition: all .3s;
  box-shadow: 0 4px 16px rgba(245,80,30,0.25);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav-cta:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ===== COMMON SECTIONS ===== */
.sec { padding: 96px 6%; }
.sec-inner { max-width: 1240px; margin: 0 auto; }
.sec-label {
  font-size: .72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px; display: block;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.12; margin-bottom: 14px;
}
.sec-sub { font-size: 1rem; color: var(--text2); line-height: 1.75; max-width: 540px; }
.sec-head { margin-bottom: 60px; }

/* ===== BUTTONS ===== */
.btn-fill {
  background: var(--orange); color: #fff; padding: 13px 30px;
  border-radius: var(--r999); font-weight: 700; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; box-shadow: var(--shadow-orange);
  border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-fill:hover { background: var(--orange2); transform: translateY(-3px); box-shadow: 0 18px 48px rgba(245,80,30,.38); }
.btn-ghost {
  background: transparent; color: var(--text); padding: 13px 30px;
  border-radius: var(--r999); font-weight: 700; font-size: .95rem;
  border: 2px solid var(--border); display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }

/* ===== SCROLL REVEAL ===== */
.sr { opacity: 0; transform: translateY(28px); transition: all .65s cubic-bezier(.4,0,.2,1); }
.sr.in { opacity: 1; transform: translateY(0); }
.sr2 { transition-delay: .1s; }
.sr3 { transition-delay: .2s; }
.sr4 { transition-delay: .3s; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh; padding: 108px 6% 80px;
  display: flex; align-items: center;
  background: linear-gradient(145deg, #FFFAF8 0%, #FFF2EC 40%, #EBF9F8 100%);
  position: relative; overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; animation: blobFloat 10s ease-in-out infinite; }
.blob1 { width: 650px; height: 650px; background: rgba(245,80,30,.07); top: -180px; right: -120px; animation-delay: 0s; }
.blob2 { width: 450px; height: 450px; background: rgba(27,184,163,.09); bottom: -100px; left: -80px; animation-delay: 3s; }
.blob3 { width: 300px; height: 300px; background: rgba(123,94,167,.06); top: 50%; left: 35%; animation-delay: 6s; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(15px,-25px) scale(1.04); }
  66%      { transform: translate(-10px,15px) scale(.97); }
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,184,163,.1); border: 1px solid rgba(27,184,163,.25);
  color: var(--teal-dark); padding: 5px 15px; border-radius: var(--r999);
  font-size: .78rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 22px; animation: fadeUp .6s ease both;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: pulseAnim 2s ease infinite;
}
@keyframes pulseAnim {
  0%,100% { box-shadow: 0 0 0 0 rgba(27,184,163,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(27,184,163,0); }
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 700; line-height: 1.05;
  margin-bottom: 20px; animation: fadeUp .65s .1s ease both;
}
.h1-orange { color: var(--orange); }
.h1-teal   { color: var(--teal); }
.hero-p {
  font-size: 1.05rem; color: var(--text2); line-height: 1.75;
  max-width: 460px; margin-bottom: 36px; animation: fadeUp .65s .2s ease both;
}
.hero-btns  { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .65s .3s ease both; }
.hero-kpis  { display: flex; gap: 28px; margin-top: 44px; animation: fadeUp .65s .4s ease both; }
.kpi { padding-left: 14px; border-left: 3px solid var(--orange); }
.kpi strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--orange); }
.kpi span   { font-size: .8rem; color: var(--text3); font-weight: 500; }

/* phones */
.hero-phones { display: flex; justify-content: center; align-items: flex-end; position: relative; animation: fadeUp .7s .15s ease both; }
.phone-card {
  width: 195px; flex-shrink: 0;
  background: var(--navy); border-radius: 36px; padding: 7px;
  box-shadow: 0 40px 80px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.08);
  position: relative; transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.phone-card:hover { transform: translateY(-10px) rotate(-1.5deg); }
.phone-card.back { transform: translateX(-28px) translateY(24px) rotate(4deg); z-index: 0; opacity: .9; }
.phone-card.back:hover { transform: translateX(-28px) translateY(14px) rotate(3deg); }
.phone-card.front { z-index: 1; }
.phone-screen { border-radius: 30px; overflow: hidden; aspect-ratio: 9/19.5; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.chip {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 10px 16px; box-shadow: var(--shadow-md);
  font-size: .78rem; font-weight: 700; display: flex; align-items: center; gap: 8px;
  white-space: nowrap; animation: chipFloat 4s ease-in-out infinite;
}
.chip1 { top: 8%; right: -28px; animation-delay: 0s; }
.chip2 { bottom: 18%; left: -32px; animation-delay: 2.2s; }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; }
.chip-dot.o { background: var(--orange); }
.chip-dot.t { background: var(--teal); }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* === MARQUEE === */
.marquee { background: var(--orange); padding: 15px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: scrollMarquee 32s linear infinite; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 600; font-size: .85rem; padding: 0 36px; letter-spacing: .2px;
}
.marquee-sep { opacity: .5; font-size: 1.1rem; }
@keyframes scrollMarquee { to { transform: translateX(-50%); } }

/* === HOME FEATURE CARDS === */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px,1fr)); gap: 20px; }
.feat-card {
  background: #fff; border-radius: var(--r24); overflow: hidden;
  border: 1px solid var(--border);
  transition: all .35s cubic-bezier(.34,1.56,.64,1); box-shadow: var(--shadow-sm);
}
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feat-card-head { padding: 28px 28px 20px; display: flex; align-items: center; gap: 18px; }
.feat-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.ico-o { background: rgba(245,80,30,.1); }
.ico-t { background: rgba(27,184,163,.1); }
.ico-p { background: rgba(123,94,167,.1); }
.feat-card-head h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.feat-card-body { padding: 0 28px 24px; }
.feat-card-body p { color: var(--text2); font-size: .93rem; line-height: 1.7; margin-bottom: 16px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 7px; }
.pill { background: var(--cream2); color: var(--text3); font-size: .75rem; font-weight: 600; padding: 3px 11px; border-radius: var(--r999); }
.feat-screen { margin: 0 20px 20px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); max-height: 260px; }
.feat-screen img { width: 100%; object-fit: cover; object-position: top; }

/* === DARK SECTION === */
.dark-sec {
  background: var(--navy); color: #fff; padding: 96px 6%;
  position: relative; overflow: hidden;
}
.dark-sec::before {
  content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,80,30,.1), transparent 65%);
  top: -200px; right: -150px; pointer-events: none;
}
.dark-sec::after {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,184,163,.08), transparent 65%);
  bottom: -150px; left: -100px; pointer-events: none;
}
.dark-inner  { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.dark-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dark-label  { color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px; }
.dark-title  { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700; margin-bottom: 16px; color: #fff; line-height: 1.15; }
.dark-sub    { color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 32px; font-size: 1rem; }
.check-list  { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.82); font-size: .93rem; line-height: 1.55; }
.check-ico { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .65rem; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.dark-visual { display: flex; justify-content: center; position: relative; }
.dark-phone {
  width: 230px; background: rgba(255,255,255,.04); border-radius: 36px; padding: 7px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.07);
}
.dark-phone img { border-radius: 30px; width: 100%; }
.dark-glow {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,80,30,.22), transparent 65%);
  bottom: -60px; right: -40px; filter: blur(50px); pointer-events: none;
}

/* === TESTIMONIALS === */
.testi-sec  { background: var(--cream2); padding: 96px 6%; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 20px; margin-top: 56px; }
.testi-card {
  background: #fff; border-radius: var(--r24); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars       { color: var(--orange); font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote {
  font-size: .95rem; color: var(--text2); line-height: 1.75;
  margin-bottom: 22px; font-style: italic;
  border-left: 3px solid var(--orange-pale); padding-left: 14px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-role { font-size: .78rem; color: var(--text3); }

/* === DOWNLOAD CTA === */
.dl-sec {
  background: linear-gradient(135deg, var(--orange) 0%, #FF5F2D 50%, var(--orange2) 100%);
  padding: 100px 6%; text-align: center; position: relative; overflow: hidden;
}
.dl-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.08), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255,255,255,.05), transparent 50%);
}
.dl-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.dl-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.4rem); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.1; }
.dl-sub   { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.7; }
.dl-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(0,0,0,.25); color: #fff; padding: 13px 26px;
  border-radius: 14px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.2); transition: all .3s; backdrop-filter: blur(10px);
}
.store-btn:hover { background: rgba(0,0,0,.4); transform: translateY(-3px); }
.store-ico { font-size: 1.7rem; line-height: 1; }
.store-lbl small  { display: block; font-size: .68rem; opacity: .8; font-weight: 400; margin-bottom: 1px; }
.store-lbl strong { font-size: .95rem; font-weight: 700; }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.feat-hero {
  padding: 138px 6% 80px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy2) 100%);
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.feat-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px;
  background: linear-gradient(transparent, var(--cream)); pointer-events: none;
}
.feat-hero-badge { color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; display: block; }
.feat-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,5vw,4.2rem); font-weight: 700; margin-bottom: 18px; line-height: 1.1; }
.feat-hero-sub  { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 580px; margin: 0 auto; line-height: 1.8; }

.features-list       { padding: 60px 6% 96px; background: var(--cream); }
.features-list-inner { max-width: 1100px; margin: 0 auto; }

.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--border);
}
.feat-row:last-child { border-bottom: none; }
.feat-row.flip { direction: rtl; }
.feat-row.flip > * { direction: ltr; }
.feat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 13px; border-radius: var(--r999);
  font-size: .73rem; font-weight: 800; letter-spacing: .4px; margin-bottom: 18px;
}
.fb-o { background: rgba(245,80,30,.1); color: var(--orange); }
.fb-t { background: rgba(27,184,163,.1); color: var(--teal-dark); }
.fb-p { background: rgba(123,94,167,.1); color: var(--purple); }
.feat-row-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem,2.5vw,2.2rem); font-weight: 700; margin-bottom: 14px; line-height: 1.2;
}
.feat-row-text p     { color: var(--text2); line-height: 1.8; margin-bottom: 18px; font-size: .97rem; }
.feat-mini-list      { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feat-mini-list li   { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text2); font-weight: 500; }
.feat-mini-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.feat-row-phone      { display: flex; justify-content: center; }
.showcase-phone {
  width: 210px; background: var(--navy); border-radius: 36px; padding: 7px;
  box-shadow: 0 30px 70px rgba(0,0,0,.2), 0 0 0 1px rgba(0,0,0,.06);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.showcase-phone:hover { transform: translateY(-10px) rotate(1.5deg); }
.showcase-phone img  { border-radius: 30px; width: 100%; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding: 138px 6% 70px;
  background: linear-gradient(145deg, var(--cream) 0%, var(--cream2) 50%, var(--teal-pale) 100%);
  text-align: center;
}
.contact-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 72px 6% 100px; max-width: 1100px; margin: 0 auto;
}
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; margin-bottom: 14px; }
.contact-info > p { color: var(--text2); line-height: 1.8; margin-bottom: 32px; font-size: .97rem; }
.c-method {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 16px; padding: 18px 22px;
  border: 1px solid var(--border); margin-bottom: 14px;
  transition: all .3s; box-shadow: var(--shadow-sm);
}
.c-method:hover { transform: translateX(5px); border-color: rgba(245,80,30,.2); box-shadow: var(--shadow-md); }
.c-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.c-txt strong  { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 2px; }
.c-txt span, .c-txt a { font-size: .83rem; color: var(--text3); }
.c-txt a       { color: var(--orange); }

.contact-form {
  background: #fff; border-radius: 28px; padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 28px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-weight: 700; font-size: .84rem; margin-bottom: 7px; color: var(--text); }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,.09); border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .92rem;
  background: var(--cream); color: var(--text); transition: border-color .2s; outline: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--orange); background: #fff; }
.fg textarea { min-height: 120px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-btn {
  width: 100%; background: var(--orange); color: #fff;
  padding: 14px; border: none; border-radius: 12px;
  font-weight: 700; font-size: .97rem; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .3s; margin-top: 4px;
}
.form-btn:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.success-banner {
  display: none; background: var(--teal-pale); border: 1px solid var(--teal);
  color: var(--teal-dark); padding: 14px; border-radius: 12px;
  margin-top: 14px; text-align: center; font-weight: 700; font-size: .9rem;
}

/* ============================================================
   TERMS PAGE
   ============================================================ */
.terms-hero { padding: 138px 6% 56px; background: var(--navy); color: #fff; text-align: center; }
.terms-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; margin-bottom: 10px; }
.terms-hero-sub   { color: rgba(255,255,255,.55); font-size: .9rem; }
.terms-body { max-width: 860px; margin: 0 auto; padding: 64px 6% 96px; }
.terms-tabs {
  display: flex; gap: 6px; background: #fff; padding: 5px; border-radius: 16px;
  box-shadow: var(--shadow-sm); margin-bottom: 48px;
}
.ttab {
  flex: 1; padding: 11px; border: none; background: transparent;
  border-radius: 12px; font-weight: 700; font-size: .88rem; cursor: pointer;
  transition: all .3s; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text2);
}
.ttab.on { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(245,80,30,.3); }
.ttab:not(.on):hover { background: var(--cream2); }
.tpanel     { display: none; }
.tpanel.on  { display: block; animation: fadeUp .4s ease; }
.t-section  { margin-bottom: 32px; }
.t-section h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700;
  margin-bottom: 10px; color: var(--navy);
  padding-left: 14px; border-left: 3px solid var(--orange);
}
.t-section p   { color: var(--text2); line-height: 1.8; margin-bottom: 10px; font-size: .95rem; }
.t-section ul  { list-style: none; color: var(--text2); line-height: 1.8; }
.t-section ul li { padding: 5px 0 5px 22px; position: relative; font-size: .93rem; }
.t-section ul li::before { content: '▸'; color: var(--orange); font-size: .75rem; position: absolute; left: 0; top: 7px; }
.terms-date {
  text-align: center; font-size: .82rem; color: var(--text3);
  padding: 20px; background: var(--cream2); border-radius: 12px; margin-top: 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 56px 6% 28px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top   { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.f-brand img  { height: 34px; object-fit: contain; margin-bottom: 14px; }
.f-brand p    { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 240px; }
.f-social     { display: flex; gap: 10px; margin-top: 18px; }
.soc {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: #fff; transition: all .3s; cursor: pointer;
}
.soc:hover    { background: var(--orange); border-color: var(--orange); }
.f-col h4     { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 14px; }
.f-col ul     { list-style: none; }
.f-col ul li  { margin-bottom: 9px; }
.f-col ul li a { color: rgba(255,255,255,.5); font-size: .86rem; transition: color .2s; }
.f-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
.f-bottom-links { display: flex; gap: 20px; }
.f-bottom-links a { color: rgba(255,255,255,.35); transition: color .2s; }
.f-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner, .dark-grid, .contact-body { grid-template-columns: 1fr; gap: 40px; }
  .hero-phones { order: -1; }
  .phone-card.back { display: none; }
  .feat-row, .feat-row.flip { grid-template-columns: 1fr; direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .fg-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-h1    { font-size: 2.6rem; }
  .feat-grid  { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom, .dl-btns, .hero-btns, .hero-kpis { flex-direction: column; }
  .footer-bottom { align-items: center; gap: 10px; text-align: center; }
  .dl-btns   { align-items: center; }
  .hero-btns, .hero-kpis { align-items: flex-start; }
  .terms-tabs { flex-direction: column; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .nav-links.mob-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 68px; z-index: 8999;
    background: rgba(255,250,248,.97); backdrop-filter: blur(20px);
    padding: 32px 6%; gap: 0;
  }
  .nav-links.mob-open li { border-bottom: 1px solid var(--border); padding: 15px 0; }
  .nav-links.mob-open a  { font-size: 1.1rem; }
}
