/* ==========================================================================
   EFFICORP — Design tokens
   Palette: Navy (authority) / Emerald (growth, "the connection") / White
   Display: Fraunces (editorial serif, restrained use)
   Body:    Manrope (clean, humanist sans)
   Signature: the "Talent Network" — a constellation of nodes and lines
   that runs quietly through the site, standing in for the idea that
   Efficorp's real product is connections between people and companies.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --navy-950: #081426;
  --navy-900: #0A1B33;
  --navy-800: #122A4D;
  --navy-700: #1B3A67;
  --navy-100: #E7ECF3;

  --emerald-700: #087249;
  --emerald-600: #0A8F5B;
  --emerald-500: #0FA968;
  --emerald-300: #6FE3AC;
  --emerald-100: #E3F8ED;

  --white: #FFFFFF;
  --paper: #F6F8F7;
  --ink: #101B2D;
  --slate: #56637A;
  --slate-soft: #8592A6;
  --line: rgba(16,27,45,0.09);

  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 60px -20px rgba(8,20,38,0.25);
  --shadow-card: 0 12px 32px -12px rgba(8,20,38,0.18);
  --shadow-glow: 0 0 0 1px rgba(15,169,104,0.18), 0 20px 60px -24px rgba(15,169,104,0.35);

  --ease: cubic-bezier(.22,1,.36,1);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
input,textarea,select{font-family:inherit;}

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--navy-900);
  font-weight:600;
  line-height:1.12;
  letter-spacing:-0.01em;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--emerald-600);
}
.eyebrow::before{
  content:'';
  width:22px; height:1px;
  background:var(--emerald-500);
}

.section{
  padding:120px 0;
  position:relative;
}
.section-tight{padding:80px 0;}
@media (max-width:900px){
  .section{padding:80px 0;}
  .section-tight{padding:56px 0;}
}

.section-head{
  max-width:640px;
  margin-bottom:64px;
}
.section-head h2{font-size:clamp(30px,4vw,44px); margin-top:14px;}
.section-head p{color:var(--slate); font-size:17px; margin-top:16px; max-width:520px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center::before{display:none;}
.section-head.center .eyebrow{justify-content:center; width:100%;}

.italic{font-style:italic; color:var(--emerald-600);}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:14.5px;
  letter-spacing:0.01em;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), background .3s ease, color .3s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(120deg, var(--emerald-500), var(--emerald-700) 130%);
  background-size:160% 160%;
  background-position:0% 50%;
  color:var(--white);
  box-shadow:0 14px 30px -10px rgba(10,143,91,0.55);
}
.btn-primary:hover{
  background-position:100% 50%;
  transform:translateY(-2px);
  box-shadow:0 18px 38px -10px rgba(10,143,91,0.65);
}
.btn-ghost{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.35);
  color:var(--white);
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{
  background:rgba(255,255,255,0.14);
  transform:translateY(-2px);
}
.btn-outline{
  background:transparent;
  border:1.5px solid var(--navy-900);
  color:var(--navy-900);
}
.btn-outline:hover{
  background:var(--navy-900);
  color:var(--white);
  transform:translateY(-2px);
}
.btn-sm{padding:12px 22px; font-size:13.5px;}
.btn svg{width:16px; height:16px; transition:transform .35s var(--ease);}
.btn:hover svg{transform:translateX(3px);}

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:22px 0;
  transition:padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.site-header.scrolled{
  padding:13px 0;
  background:rgba(8,20,38,0.82);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  box-shadow:0 12px 30px -18px rgba(0,0,0,0.5);
  border-color:rgba(255,255,255,0.08);
}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{height:40px; width:auto;}
.brand-name{
  font-family:var(--font-display);
  font-size:19px;
  font-weight:600;
  color:var(--white);
  letter-spacing:-0.01em;
  line-height:1.1;
}
.brand-name span{display:block; font-family:var(--font-body); font-size:10.5px; font-weight:600; letter-spacing:0.14em; color:var(--emerald-300); text-transform:uppercase; margin-top:2px;}

.nav-links{
  display:flex;
  align-items:center;
  gap:40px;
}
.nav-links a{
  font-size:14.5px;
  font-weight:600;
  color:rgba(255,255,255,0.82);
  position:relative;
  padding:4px 0;
  transition:color .3s ease;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background:var(--emerald-400,var(--emerald-500));
  transition:width .35s var(--ease);
}
.nav-links a:hover{color:var(--white);}
.nav-links a:hover::after{width:100%;}
.nav-links a.active{color:var(--emerald-300);}
.nav-links a.active::after{width:100%; background:var(--emerald-300);}

.header-cta{display:flex; align-items:center; gap:18px;}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  width:26px;
  z-index:1100;
}
.nav-toggle span{height:2px; width:100%; background:var(--white); border-radius:2px; transition:transform .3s ease, opacity .3s ease;}

@media (max-width:980px){
  .nav-links{
    position:fixed;
    inset:0 0 0 30%;
    background:var(--navy-950);
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:40px;
    gap:26px;
    transform:translateX(100%);
    transition:transform .45s var(--ease);
  }
  .nav-links.open{transform:translateX(0);}
  .nav-links a{font-size:20px;}
  .header-cta .btn-ghost{display:none;}
  .nav-toggle{display:flex;}
}

/* ---------- Progress bar ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px;
  background:linear-gradient(90deg, var(--emerald-300), var(--emerald-600));
  z-index:1200;
  width:0%;
}

/* ---------- Loader ---------- */
.loader{
  position:fixed; inset:0; z-index:3000;
  background:var(--navy-950);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.hide{opacity:0; visibility:hidden;}
.loader-mark{
  width:56px; height:56px;
  border-radius:50%;
  border:2px solid rgba(111,227,172,0.2);
  border-top-color:var(--emerald-400,var(--emerald-500));
  animation:spin 0.9s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg);}}

/* ---------- Hero (network canvas) ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:radial-gradient(ellipse 120% 80% at 20% -10%, var(--navy-800) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  overflow:hidden;
  padding-top:120px;
  padding-bottom:80px;
}
.hero canvas{position:absolute; inset:0; width:100%; height:100%; opacity:0.85;}
.hero::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,20,38,0) 40%, var(--navy-950) 100%);
  pointer-events:none;
}
.hero-inner{position:relative; z-index:2; width:100%;}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}
@media (max-width:980px){ .hero-grid{grid-template-columns:1fr;} }

.hero-tag{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 18px 9px 8px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  color:var(--emerald-200,var(--emerald-300));
  font-size:12.5px; font-weight:700; letter-spacing:0.05em;
  margin-bottom:28px;
}
.hero-tag i{
  width:22px; height:22px; border-radius:50%;
  background:var(--emerald-500); color:var(--navy-950);
  display:flex; align-items:center; justify-content:center;
  font-style:normal; font-size:12px;
}
.hero h1{
  font-size:clamp(38px, 5.4vw, 66px);
  color:var(--white);
  font-weight:600;
}
.hero h1 em{font-style:italic; color:var(--emerald-300); font-weight:500;}
.hero p{
  margin-top:26px;
  color:rgba(255,255,255,0.72);
  font-size:18px;
  max-width:520px;
}
.hero-actions{display:flex; gap:16px; margin-top:40px; flex-wrap:wrap;}

.hero-panel{
  position:relative;
  display:grid;
  gap:18px;
}
.glass-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-radius:var(--radius-md);
  padding:26px 28px;
  color:var(--white);
}
.glass-stat{display:flex; align-items:center; gap:18px;}
.glass-stat .num{font-family:var(--font-display); font-size:34px; color:var(--emerald-300); font-weight:600;}
.glass-stat .label{font-size:13px; color:rgba(255,255,255,0.65); line-height:1.35; max-width:160px;}
.hero-panel .glass-card:nth-child(2){margin-left:auto; max-width:88%;}
.hero-panel .glass-card:nth-child(3){max-width:80%;}

/* floating shapes */
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  opacity:0.35;
  pointer-events:none;
  animation:float 12s ease-in-out infinite;
}
@keyframes float{
  0%,100%{transform:translate(0,0);}
  50%{transform:translate(20px,-30px);}
}

/* ---------- Marquee / trust strip ---------- */
.trust-strip{
  background:var(--white);
  border-bottom:1px solid var(--line);
  padding:26px 0;
}
.trust-strip .container{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.trust-strip span{font-size:12.5px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--slate-soft);}
.trust-strip .marks{display:flex; gap:36px; flex-wrap:wrap; align-items:center;}
.trust-strip .marks div{font-family:var(--font-display); font-weight:600; font-size:16px; color:var(--navy-700); opacity:0.55;}

/* ---------- Cards ---------- */
.grid{display:grid; gap:26px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:980px){ .grid-3, .grid-4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-2, .grid-3, .grid-4{grid-template-columns:1fr;} }

.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:34px 30px;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position:relative;
  overflow:hidden;
}
.card:hover{transform:translateY(-6px); box-shadow:var(--shadow-card); border-color:rgba(15,169,104,0.35);}
.card .icon{
  width:52px; height:52px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:var(--emerald-100);
  color:var(--emerald-700);
  margin-bottom:22px;
  transition:transform .45s var(--ease), background .45s var(--ease), color .45s var(--ease);
}
.card:hover .icon{background:var(--navy-900); color:var(--emerald-300); transform:scale(1.08) rotate(-4deg);}
.card .icon svg{width:24px; height:24px;}
.card h3{font-size:19px; margin-bottom:10px;}
.card p{color:var(--slate); font-size:15px;}

.card-gradient-border{
  padding:1px;
  border-radius:var(--radius-md);
  background:linear-gradient(135deg, rgba(15,169,104,0.35), rgba(16,27,45,0.06) 60%);
}
.card-gradient-border .card-inner{
  background:var(--white);
  border-radius:calc(var(--radius-md) - 1px);
  padding:34px 30px;
  height:100%;
}

/* Dark feature card */
.card-dark{
  background:linear-gradient(160deg, var(--navy-800), var(--navy-950));
  color:var(--white);
  border-radius:var(--radius-lg);
  padding:44px;
}
.card-dark h3{color:var(--white);}
.card-dark p{color:rgba(255,255,255,0.68);}

/* ---------- Why choose / checklist ---------- */
.check-list{display:grid; gap:16px;}
.check-item{
  display:flex; align-items:flex-start; gap:14px;
  padding:18px 20px;
  border-radius:14px;
  background:var(--white);
  border:1px solid var(--line);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.check-item:hover{transform:translateX(6px); box-shadow:var(--shadow-card);}
.check-item .tick{
  flex:none;
  width:26px; height:26px; border-radius:50%;
  background:var(--emerald-500); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
}
.check-item strong{display:block; font-size:15.5px; color:var(--navy-900); margin-bottom:2px;}
.check-item span{font-size:14px; color:var(--slate);}

/* ---------- Process timeline ---------- */
.timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}
@media (max-width:980px){ .timeline{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .timeline{grid-template-columns:1fr;} }
.timeline::before{
  content:'';
  position:absolute; top:26px; left:0; right:0;
  height:1px;
  background:repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
@media (max-width:980px){ .timeline::before{display:none;} }
.timeline-step{position:relative; text-align:left;}
.timeline-step .dot{
  width:52px; height:52px; border-radius:50%;
  background:var(--white); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:600; color:var(--emerald-600);
  margin-bottom:18px; position:relative; z-index:2;
  transition:background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.timeline-step:hover .dot{background:var(--navy-900); color:var(--emerald-300); transform:translateY(-4px);}
.timeline-step h4{font-size:15.5px; margin-bottom:6px;}
.timeline-step p{font-size:13.5px; color:var(--slate);}

/* ---------- Stats ---------- */
.stats-band{
  background:var(--navy-950);
  border-radius:var(--radius-lg);
  padding:64px 40px;
  position:relative;
  overflow:hidden;
}
.stats-band .grid-4{gap:0;}
.stat{
  text-align:center;
  padding:0 20px;
  border-right:1px solid rgba(255,255,255,0.1);
}
.stat:last-child{border-right:none;}
@media (max-width:640px){ .stat{border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); padding-bottom:24px; margin-bottom:24px;} .stat:last-child{border-bottom:none; margin-bottom:0; padding-bottom:0;} }
.stat .num{
  font-family:var(--font-display);
  font-size:clamp(36px,4vw,50px);
  color:var(--emerald-300);
  font-weight:600;
}
.stat .label{color:rgba(255,255,255,0.62); font-size:13.5px; margin-top:8px; letter-spacing:0.03em;}

/* ---------- Testimonials ---------- */
.testi-track{
  display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:10px;
  scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{display:none;}
.testi-card{
  flex:0 0 auto; width:min(480px,86vw);
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:36px; scroll-snap-align:start;
}
.testi-stars{color:var(--emerald-500); font-size:14px; letter-spacing:2px; margin-bottom:16px;}
.testi-card p{font-size:16px; color:var(--navy-800); font-style:italic;}
.testi-who{display:flex; align-items:center; gap:12px; margin-top:22px;}
.testi-avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--emerald-100); color:var(--emerald-700);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:600;
}
.testi-who strong{display:block; font-size:14.5px; color:var(--navy-900);}
.testi-who span{font-size:13px; color:var(--slate);}

/* ---------- CTA band ---------- */
.cta-band{
  border-radius:var(--radius-lg);
  padding:70px 60px;
  background:linear-gradient(135deg, var(--navy-900) 0%, var(--emerald-700) 160%);
  color:var(--white);
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band h2{color:var(--white); font-size:clamp(26px,3.4vw,38px); max-width:520px;}
.cta-band p{color:rgba(255,255,255,0.75); margin-top:10px;}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy-950); color:rgba(255,255,255,0.7); padding:80px 0 30px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,0.08);}
@media (max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .footer-grid{grid-template-columns:1fr;} }
.footer-brand .brand-name{color:var(--white);}
.footer-grid p.tag{margin-top:16px; font-size:14px; color:rgba(255,255,255,0.55); max-width:280px;}
.footer-col h4{color:var(--white); font-size:14px; letter-spacing:0.04em; margin-bottom:20px; font-family:var(--font-body); font-weight:700;}
.footer-col ul{display:grid; gap:12px;}
.footer-col a{font-size:14px; color:rgba(255,255,255,0.6); transition:color .3s ease, padding-left .3s ease;}
.footer-col a:hover{color:var(--emerald-300); padding-left:4px;}
.footer-social{display:flex; gap:12px; margin-top:20px;}
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.16);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s ease, border-color .3s ease, transform .3s ease;
}
.footer-social a:hover{background:var(--emerald-600); border-color:var(--emerald-600); transform:translateY(-3px);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:28px; font-size:13px; color:rgba(255,255,255,0.45); flex-wrap:wrap; gap:12px;}
.footer-bottom a{color:rgba(255,255,255,0.45);}
.footer-bottom a:hover{color:var(--white);}

/* ---------- Floating action buttons ---------- */
.floating-actions{position:fixed; right:26px; bottom:26px; z-index:900; display:flex; flex-direction:column; gap:14px; align-items:flex-end;}
.fab{
  width:54px; height:54px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-soft);
  transition:transform .35s var(--ease);
}
.fab:hover{transform:translateY(-4px) scale(1.05);}
.fab-whatsapp{background:#25D366; color:#fff;}
.fab-top{background:var(--navy-900); color:var(--emerald-300); opacity:0; pointer-events:none; transform:translateY(10px);}
.fab-top.show{opacity:1; pointer-events:auto; transform:translateY(0);}
.fab svg{width:24px; height:24px;}

/* ---------- Reveal on scroll ---------- */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal-stagger > *{opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease);}
.reveal-stagger.in > *{opacity:1; transform:translateY(0);}
.reveal-stagger.in > *:nth-child(1){transition-delay:.05s;}
.reveal-stagger.in > *:nth-child(2){transition-delay:.12s;}
.reveal-stagger.in > *:nth-child(3){transition-delay:.19s;}
.reveal-stagger.in > *:nth-child(4){transition-delay:.26s;}
.reveal-stagger.in > *:nth-child(5){transition-delay:.33s;}
.reveal-stagger.in > *:nth-child(6){transition-delay:.40s;}
.reveal-stagger.in > *:nth-child(7){transition-delay:.47s;}
.reveal-stagger.in > *:nth-child(8){transition-delay:.54s;}

/* ---------- Inner page hero (About/Services/Careers/Contact) ---------- */
.page-hero{
  position:relative;
  background:radial-gradient(ellipse 100% 80% at 15% 0%, var(--navy-800), var(--navy-950));
  padding:200px 0 100px;
  color:var(--white);
  overflow:hidden;
}
.page-hero canvas{position:absolute; inset:0; opacity:0.6;}
.page-hero .container{position:relative; z-index:2;}
.page-hero .eyebrow{color:var(--emerald-300);}
.page-hero .eyebrow::before{background:var(--emerald-300);}
.page-hero h1{color:var(--white); font-size:clamp(34px,4.6vw,54px); margin-top:14px; max-width:720px;}
.page-hero p{color:rgba(255,255,255,0.7); font-size:17px; margin-top:18px; max-width:600px;}
.breadcrumb{display:flex; gap:8px; align-items:center; font-size:13px; color:rgba(255,255,255,0.5); margin-bottom:8px;}
.breadcrumb span{color:var(--emerald-300);}

/* ---------- Values grid ---------- */
.value-card{text-align:left;}
.value-num{font-family:var(--font-display); font-size:14px; color:var(--emerald-500); font-weight:700; letter-spacing:0.06em; margin-bottom:14px;}

/* ---------- FAQ ---------- */
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 4px; font-weight:700; font-size:16px; color:var(--navy-900);
}
.faq-q .plus{
  flex:none; width:26px; height:26px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; position:relative; transition:transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after{content:''; position:absolute; background:var(--navy-900); transition:transform .35s var(--ease), background .35s var(--ease);}
.faq-q .plus::before{width:10px; height:1.4px;}
.faq-q .plus::after{width:1.4px; height:10px;}
.faq-item.open .faq-q .plus{background:var(--emerald-500); border-color:var(--emerald-500);}
.faq-item.open .faq-q .plus::after{transform:rotate(90deg); background:#fff;}
.faq-item.open .faq-q .plus::before{background:#fff;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .5s var(--ease);}
.faq-a p{padding:0 4px 24px; color:var(--slate); font-size:15px; max-width:80%;}

/* ---------- Forms ---------- */
.form-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:44px; box-shadow:var(--shadow-card);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
@media (max-width:640px){ .form-row{grid-template-columns:1fr;} }
.field{margin-bottom:20px;}
.field label{display:block; font-size:13px; font-weight:700; color:var(--navy-900); margin-bottom:8px; letter-spacing:0.02em;}
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:10px; border:1.5px solid var(--line);
  background:var(--paper); font-size:14.5px; color:var(--ink);
  transition:border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--emerald-500); background:var(--white);
  box-shadow:0 0 0 4px rgba(15,169,104,0.12);
}
.field-file{
  border:1.5px dashed var(--line); border-radius:10px; padding:26px; text-align:center;
  background:var(--paper); cursor:pointer; transition:border-color .3s ease, background .3s ease;
}
.field-file:hover{border-color:var(--emerald-500); background:var(--emerald-100);}
.field-file input{display:none;}
.form-success{
  display:none; align-items:center; gap:14px; padding:18px 20px; border-radius:12px;
  background:var(--emerald-100); color:var(--emerald-700); font-weight:600; font-size:14.5px; margin-top:18px;
}
.form-success.show{display:flex;}

/* Job categories */
.job-cat{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:28px; display:flex; align-items:center; gap:18px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.job-cat:hover{transform:translateY(-5px); box-shadow:var(--shadow-card); border-color:rgba(15,169,104,0.35);}
.job-cat .icon{width:48px; height:48px; border-radius:12px; background:var(--emerald-100); color:var(--emerald-700); display:flex; align-items:center; justify-content:center; flex:none;}
.job-cat h4{font-size:16px; margin-bottom:4px;}
.job-cat span{font-size:13px; color:var(--slate);}

/* Contact info list */
.contact-info-item{display:flex; gap:16px; align-items:flex-start; padding:22px 0; border-bottom:1px solid var(--line);}
.contact-info-item:last-child{border-bottom:none;}
.contact-info-item .icon{width:44px; height:44px; border-radius:12px; background:var(--emerald-100); color:var(--emerald-700); display:flex; align-items:center; justify-content:center; flex:none;}
.contact-info-item strong{display:block; font-size:14px; color:var(--navy-900); margin-bottom:4px;}
.contact-info-item span, .contact-info-item a{font-size:14.5px; color:var(--slate);}

.map-frame{border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--line); height:280px;}
.map-frame iframe{width:100%; height:100%; border:0;}

/* Sticky call button (mobile) */
.sticky-call{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:950;
  background:var(--navy-950); color:#fff; text-align:center;
  padding:14px; font-weight:700; font-size:14.5px; letter-spacing:0.02em;
  align-items:center; justify-content:center; gap:8px;
}
@media (max-width:780px){ .sticky-call{display:flex;} body{padding-bottom:52px;} }

/* Utility */
.mt-8{margin-top:8px;} .mt-16{margin-top:16px;} .mt-24{margin-top:24px;} .mt-40{margin-top:40px;}
.flex{display:flex;} .items-center{align-items:center;} .gap-12{gap:12px;}
.text-center{text-align:center;}
.center-col{max-width:700px; margin:0 auto;}
