*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #0c1b2e;
  --navy:      #103558;
  --teal:      #0f7ea5;
  --teal-lt:   #e8f5fa;
  --amber:     #d4820a;
  --amber-lt:  #fef3e0;
  --green:     #0f9e6a;
  --cream:     #f9f7f4;
  --white:     #ffffff;
  --muted:     #647689;
  --border:    #e2ddd8;
  --font-h:    'Lora', Georgia, serif;
  --font-b:    'Sora', sans-serif;
  --r:         14px;
  --shadow:    0 4px 24px rgba(12,27,46,.09);
  --shadow-lg: 0 12px 48px rgba(12,27,46,.16);
}

html { scroll-behavior: smooth; }
body.ta-redesign { font-family: var(--font-b); color: var(--ink); background: var(--cream); overflow-x: hidden; line-height: 1.6; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 20px; padding: 5px 14px; }
.badge-teal  { background: var(--teal-lt);  color: var(--teal);  }
.badge-amber { background: var(--amber-lt); color: var(--amber); }
.badge-dot   { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.sec-title { font-family: var(--font-h); font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1.22; margin-bottom: 14px; }
.sec-sub   { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.75; }
.sec-hd    { margin-bottom: 48px; }
.sec-hd.c  { text-align: center; }
.sec-hd.c .sec-sub { margin: 0 auto; }
body.ta-redesign section { padding: 48px 0; }
body.ta-redesign a { text-decoration: none; }

/* TOP BAR */
.topbar { background: var(--ink); padding: 9px 0; font-size: 12.5px; color: #8ba5be; }
.topbar-i { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.topbar-pill { background: rgba(212,130,10,.15); border: 1px solid rgba(212,130,10,.35); border-radius: 20px; padding: 4px 14px; color: #f5c060; font-weight: 600; font-size: 12px; }
.topbar-c { display: flex; gap: 22px; align-items: center; }
.topbar-c a { color: #9fc3df; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-c a:hover { color: #fff; }

/* NAV */
.ta-nav { position: sticky; top: 0; z-index: 900; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 14px rgba(12,27,46,.06); }
.nav-i { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 55px; width: auto; }
.logo-mark { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--navy), var(--teal)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 17px; font-family: var(--font-h); }
.logo-name { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--ink); line-height: 20px; }
.logo-name em { font-style: normal; color: var(--amber); }
.navlinks { list-style: none; display: flex; gap: 22px; align-items: center; margin: 0; padding: 0; }
.navlinks > li { position: relative; }
.navlinks a { font-size: 13.5px; font-weight: 500; color: var(--muted); transition: color .2s; }
.navlinks a:hover { color: var(--navy); }
.navlink-row { display: flex; align-items: center; gap: 2px; }
.drop-caret { background: none; border: none; padding: 6px 2px; margin: 0; cursor: pointer; line-height: 0; }
.drop-caret::before { content: ''; display: block; width: 7px; height: 7px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .2s; }
.drop-caret.open::before, .has-dropdown:hover .drop-caret::before { transform: rotate(225deg); }
.nav-dropdown { position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s; z-index: 100; }
.navlinks > li:hover .nav-dropdown,
.nav-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 8px 18px; font-size: 13px; color: var(--muted); }
.nav-dropdown a:hover { background: var(--teal-lt); color: var(--teal); }
.nav-right { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-call { display: flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 700; font-size: 11px; border: 2px solid var(--navy); border-radius: 10px; padding: 8px 12px; transition: all .2s; white-space: nowrap; }
.btn-call:hover { background: var(--navy); color: #fff; }
.btn-quote { background: var(--amber); color: #fff; border-radius: 10px; padding: 8px 14px; font-size: 11px; font-weight: 700; transition: background .2s; white-space: nowrap; }
.btn-quote:hover { background: #b86d06; color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 8px 22px 24px; max-height: var(--mob-menu-max-h, calc(100vh - 120px)); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mobile-menu.open { display: block; }
.mobile-menu .mob-link { display: block; padding: 12px 0; font-size: 14px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border); }
.mob-accordion { border-bottom: 1px solid var(--border); }
.mob-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; padding: 12px 0; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; font-family: var(--font-b); text-align: left; }
.mob-toggle:hover { color: var(--teal); }
.mob-toggle.open { color: var(--teal); }
.mob-arrow { font-size: 18px; font-weight: 400; color: var(--muted); transition: transform .25s; line-height: 1; flex-shrink: 0; margin-left: 12px; }
.mob-toggle.open .mob-arrow { transform: rotate(45deg); color: var(--teal); }
.mobile-menu .mob-sub { display: none; padding: 4px 0 10px 16px; border-left: 2px solid var(--teal-lt); margin: 0 0 4px 4px; }
.mobile-menu .mob-sub.open { display: block; }
.mobile-menu .mob-sub a { display: block; font-size: 13px; color: var(--muted); padding: 9px 0; border-bottom: none; font-weight: 500; transition: color .2s; }
.mobile-menu .mob-sub a:hover { color: var(--teal); }
.mobile-menu-btns { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; padding-top: 8px; }
body.mob-nav-open { overflow: hidden; }

/* HERO */
.hero { background: linear-gradient(150deg, #091828 0%, #0e2d4c 55%, #0a3d52 100%); padding: 48px 0 56px; position: relative; overflow: hidden; }
.hero-bg1 { position: absolute; top: -100px; right: -80px; width: 580px; height: 580px; background: radial-gradient(circle, rgba(15,126,165,.2) 0%, transparent 65%); border-radius: 50%; }
.hero-bg2 { position: absolute; bottom: -100px; left: 5%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(212,130,10,.12) 0%, transparent 65%); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1fr 430px; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-kw-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.kw-chip { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; padding: 4px 12px; }
.kw-chip.active { color: #f5c060; border-color: rgba(245,192,96,.4); background: rgba(245,192,96,.08); }
.hero h1 { font-family: var(--font-h); font-size: 50px; line-height: 1.13; font-weight: 700; color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #6dd4ee; }
.hero-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.hchk { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: #c5dce9; font-weight: 500; }
.hchk-dot { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), #0a5f7a); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px; }
.hstat-num { font-family: var(--font-h); font-size: 26px; font-weight: 700; color: #f5c060; }
.hstat-lbl { font-size: 11px; color: #6a94b0; margin-top: 3px; text-transform: uppercase; letter-spacing: .6px; font-weight: 600; }

/* FORM */
.form-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.38); }
.form-head { background: linear-gradient(135deg, var(--navy), var(--teal)); padding: 18px; text-align: center; }
.form-head h3 { font-family: var(--font-h); color: #fff; font-size: 20px; font-weight: 700; }
.form-head p { color: rgba(255,255,255,.7); font-size: 12.5px; margin-top: 5px; }
.form-urgency { background: rgba(212,130,10,.15); border-top: 2px solid var(--amber); padding: 9px 16px; text-align: center; font-size: 12px; font-weight: 700; color: var(--amber); }
.form-body { padding: 20px 26px 26px; }
.f-row { margin-bottom: 12px; }
.f-row input, .f-row select, .f-row textarea { width: 100%; padding: 11px 15px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 13.5px; font-family: var(--font-b); color: var(--ink); background: var(--cream); transition: border .2s, box-shadow .2s; outline: none; -webkit-appearance: none; }
.f-row input:focus, .f-row select:focus, .f-row textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,126,165,.12); }
.f-row textarea { resize: none; height: 76px; }
.btn-submit { width: 100%; padding: 14px; font-size: 15px; font-weight: 700; background: linear-gradient(135deg, var(--amber), #e09010); color: #fff; border: none; border-radius: 10px; cursor: pointer; font-family: var(--font-b); transition: opacity .2s, transform .15s; }
.btn-submit:hover { opacity: .9; transform: translateY(-2px); }
.form-sep { text-align: center; color: var(--muted); font-size: 12px; margin: 13px 0 11px; position: relative; }
.form-sep::before, .form-sep::after { content: ''; position: absolute; top: 50%; width: 25%; height: 1px; background: var(--border); }
.form-sep::before { left: 0; } .form-sep::after { right: 0; }
.btn-callnow { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--ink); color: #fff; border-radius: 10px; padding: 12px; font-size: 11.5px; font-weight: 700; transition: background .2s; }
.btn-callnow:hover { background: #1a3050; color: #fff; }
.form-safe { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 11.5px; color: var(--muted); }

/* TRUST STRIP */
.trust-strip { background: #ffd9a1; border-bottom: 1px solid var(--border); padding: 16px 0; }
.trust-list { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-itm { display: flex; align-items: center; gap: 9px; }
.trust-icon { font-size: 18px; }
.trust-itm strong { font-size: 13px; color: var(--ink); font-weight: 700; }
.trust-itm span { font-size: 11.5px; color: var(--muted); display: block; margin-top: 1px; }
.trust-div { width: 1px; height: 30px; background: var(--border); }

/* SERVICES */
.services-sec { background: var(--white); }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.srv-card { border: 1.5px solid var(--border); border-radius: var(--r); padding: 24px; background: var(--cream); transition: all .25s; position: relative; overflow: hidden; }
.srv-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--amber)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.srv-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-em { font-size: 30px; margin-bottom: 16px; }
.srv-card h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.srv-card h3 a { color: inherit; }
.srv-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.srv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.srv-tag { font-size: 11px; font-weight: 600; color: var(--teal); background: var(--teal-lt); border-radius: 12px; padding: 3px 10px; }
.srv-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--amber); }
.srv-link:hover { gap: 9px; }

/* TEAM / WHY */
.team-sec { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.team-big-card { background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 20px; padding: 40px 36px; color: #fff; }
.team-big-num { font-family: var(--font-h); font-size: 72px; font-weight: 700; color: #f5c060; line-height: 1; }
.team-big-lbl { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.team-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.team-mini { background: rgba(255,255,255,.1); border-radius: 10px; padding: 14px 16px; }
.team-mini-n { font-family: var(--font-h); font-size: 26px; font-weight: 700; color: #f5c060; }
.team-mini-l { font-size: 11.5px; color: rgba(255,255,255,.65); margin-top: 3px; }
.team-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.team-badge { background: rgba(255,255,255,.1); border-radius: 20px; padding: 7px 14px; font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; }
.why-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-item { position: relative; display: flex; flex-direction: column; gap: 14px; border: 1.5px solid var(--border); border-radius: var(--r); padding: 28px 24px 24px; background: var(--white); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.why-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--amber)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.why-item:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
.why-item:hover::before { transform: scaleX(1); }
.why-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--teal-lt), var(--amber-lt)); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.why-item h4 { font-family: var(--font-h); font-weight: 700; color: var(--ink); font-size: 16.5px; line-height: 1.3; }
.why-item p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* INDUSTRIES */
.ind-sec { background: var(--white); }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ind-card { border: 1.5px solid var(--border); border-radius: var(--r); padding: 24px 22px; transition: all .22s; background: var(--cream); }
.ind-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow); }
.ind-em { font-size: 26px; margin-bottom: 12px; }
.ind-card h4 { font-weight: 700; color: var(--ink); font-size: 15px; margin-bottom: 7px; }
.ind-card h4 a { color: inherit; }
.ind-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* LANGUAGES */
.langs-sec { background: var(--ink); }
.langs-sec .sec-label { color: #6dd4ee; }
.langs-sec .sec-title { color: #fff; }
.langs-sec .sec-sub { color: #7aadca; }
.langs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.lang-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 18px 16px; display: flex; align-items: center; gap: 12px; transition: all .22s; }
.lang-card:hover { background: rgba(15,126,165,.2); border-color: rgba(109,212,238,.4); }
.lang-flag { font-size: 26px; }
.lang-nm { font-weight: 700; color: #fff; font-size: 14px; }
.lang-nm a { color: #fff; }
.lang-native { font-size: 11.5px; color: #6a94b0; margin-top: 2px; }
.langs-more { text-align: center; margin-top: 30px; color: #7aadca; font-size: 14.5px; }
.langs-more strong { color: #6dd4ee; }

/* PROCESS */
.process-sec { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--teal), var(--amber)); border-radius: 1px; }
.p-step { text-align: center; position: relative; z-index: 1; }
.p-num { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--teal)); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 24px; font-weight: 700; color: #fff; margin: 0 auto 18px; box-shadow: 0 4px 18px rgba(16,53,88,.3); }
.p-step h4 { font-weight: 700; color: var(--ink); margin-bottom: 7px; font-size: 15px; }
.p-step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* TESTIMONIALS */
.testi-sec { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 28px; transition: all .2s; }
.testi-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.t-stars { color: #f0a500; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.t-text { font-size: 14px; color: #3a4d5c; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0; }
.t-name { font-weight: 700; color: var(--ink); font-size: 13.5px; }
.t-role { font-size: 12px; color: var(--muted); }

/* FAQ */
.faq-sec { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 10px; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 22px; cursor: pointer; background: var(--cream); font-weight: 700; font-size: 14px; color: var(--ink); transition: background .2s; user-select: none; }
.faq-q:hover { background: var(--teal-lt); }
.faq-q.open { background: var(--teal-lt); color: var(--teal); }
.faq-arrow { font-size: 18px; transition: transform .3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 16px 22px 20px; font-size: 13.5px; color: var(--muted); line-height: 1.75; border-top: 1px solid var(--border); }
.faq-a.open { display: block; }

/* CITIES */
.city-sec { background: var(--navy); padding: 52px 0; }
.city-sec .sec-label { color: #6dd4ee; margin-bottom: 10px; text-align: center; }
.city-sec h2 { font-family: var(--font-h); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 26px; text-align: center; }
.city-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.city-tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 22px; padding: 8px 20px; font-size: 13.5px; color: #c5dce9; font-weight: 600; transition: all .2s; }
.city-tag:hover { background: rgba(15,126,165,.3); border-color: rgba(109,212,238,.5); color: #fff; }

/* CTA */
.cta-sec { background: linear-gradient(135deg, var(--ink) 0%, #0e2d4c 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(15,126,165,.18) 0%, transparent 60%); }
.cta-inner { max-width: 744px; margin: 0 auto; padding: 0 22px; position: relative; z-index: 2; }
.cta-inner h2 { font-family: var(--font-h); font-size: 38px; color: #fff; font-weight: 700; margin-bottom: 14px; line-height: 1.25; }
.cta-inner p { color: #7aadca; font-size: 16px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-p { background: linear-gradient(135deg, var(--amber), #e0900e); color: #fff; border-radius: 12px; padding: 15px 32px; font-size: 15.5px; font-weight: 700; transition: opacity .2s, transform .15s; }
.cta-btn-p:hover { opacity: .9; transform: translateY(-2px); color: #fff; }
.cta-btn-s { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); border-radius: 12px; padding: 13px 28px; font-size: 15px; font-weight: 600; transition: all .2s; }
.cta-btn-s:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* ARTICLE */
.article-sec { background: var(--cream); }
.article-body h2 { font-family: var(--font-h); font-size: 26px; color: var(--ink); font-weight: 700; margin: 1px 0 12px; }
.article-body h3 { font-family: var(--font-h); font-size: 20px; color: var(--ink); font-weight: 700; margin: 24px 0 10px; }
.article-body p { font-size: 15px; color: #3a4d5c; line-height: 1.8; margin-bottom: 14px; }
.article-body ul { margin: 12px 0 16px 20px; list-style: disc; }
.article-body ul li { font-size: 15px; color: #3a4d5c; line-height: 1.8; margin-bottom: 7px; }
.article-body strong { color: var(--ink); }
.seo-terms { background: var(--white); padding: 24px 0; border-top: 1px solid var(--border); }
.seo-terms p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* FOOTER */
.ta-footer { background: #050e1c; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-col h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col p { font-size: 13px; color: #6a8fa8; line-height: 1.7; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #6a8fa8; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: #6dd4ee; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); color: #9fc3df; font-size: 14px; padding: 0; }
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #384d60; }
.footer-keywords { font-size: 11px; color: #2a3d50; line-height: 1.8; margin-top: 16px; }
.footer-keywords a { display: inline; color: #384d60; }
.footer-keywords a:hover { color: #6dd4ee; }

/* FABs */
.fab-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.32); transition: transform .2s; }
.fab:hover { transform: scale(1.12); color: #fff; }
.fab-wa { background: #25d366; }
.fab-ph { background: var(--amber); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity: 0; }
.anim.in { animation: fadeUp .55s ease forwards; }
.d1{animation-delay:.08s} .d2{animation-delay:.16s} .d3{animation-delay:.24s} .d4{animation-delay:.32s} .d5{animation-delay:.40s}

/* RESPONSIVE */
@media(max-width:980px){
  .hero-grid, .team-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .srv-grid, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: repeat(2, 1fr); }
  .langs-grid { grid-template-columns: repeat(2, 1fr); }
  .navlinks, .nav-right .btn-call, .nav-right .btn-quote { display: none; }
  .nav-toggle { display: block; }
  .sec-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px){
  .hero h1 { font-size: 28px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .srv-grid, .ind-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .trust-div { display: none; }
  .topbar-pill { display: none; }
  .trust-list { gap: 16px; justify-content: flex-start; }
  .langs-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
}
