/* ==========================================================================
   PROSPECTA — Solidus dizaino sistema
   Navy + Cream + Brass | Inter
   ========================================================================== */

:root{
  --navy:#0F1B2B;
  --navy-2:#16263B;
  --navy-3:#1D3049;
  --cream:#F6F1E7;
  --cream-2:#EFE8D8;
  --cream-3:#E7DFC9;
  --ink:#1C1B19;
  --ink-soft:#43413C;
  --ink-mute:#6B6760;
  --brass:#9C7A3C;
  --brass-light:#B79456;
  --brass-dark:#7C5F2C;
  --accent-blue:#2E4A66;
  --accent-blue-light:#4E7496;
  --stone:#C9BFA6;
  --stone-line: rgba(28,27,25,0.14);
  --stone-line-2: rgba(246,241,231,0.14);
  --radius: 2px;
  --radius-soft: 4px;
  --max: 1180px;
  --shadow: 0 24px 60px -24px rgba(15,27,43,0.35);
}

*{ margin:0; padding:0; box-sizing:border-box; }
:root{ color-scheme: light only; forced-color-adjust: none; }
html, body { background-color: #ffffff; color: #1a1a1a; color-scheme: light only; }
@media (prefers-color-scheme: dark) {
  :root, html, body { color-scheme: light only; background-color: #ffffff; color: #1a1a1a; }
}
html{ scroll-behavior:smooth; }
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; background:none; border:none; color:inherit; }
ul{ list-style:none; }

.serif{ font-family:'Inter', sans-serif; }
.sans{ font-family:'Inter', sans-serif; }
.italic{ font-style:italic; }

.wrap{ max-width:var(--max); margin:0 auto; padding:0 48px; }
.eyebrow-label{
  font-family:'Inter', sans-serif; font-size:11px; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--brass); display:inline-flex; align-items:center; gap:10px;
}
.eyebrow-label .bar{ width:24px; height:1px; background:var(--brass); display:inline-block; }

section{ position:relative; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:'Inter', sans-serif; font-size:12.5px; letter-spacing:0.1em; text-transform:uppercase;
  padding:16px 32px; border-radius:999px; border:1px solid transparent; transition:all .3s ease;
}
.btn-brass{ background:var(--navy); color:var(--cream); border-color:var(--navy); }
.btn-brass:hover{ background:var(--brass); border-color:var(--brass); }
.btn-brass-gold{ background:var(--brass); color:var(--navy); border-color:var(--brass); }
.btn-brass-gold:hover{ background:var(--brass-light); border-color:var(--brass-light); color:var(--navy); }
.btn-outline{ border-color:var(--ink); color:var(--ink); }
.btn-outline:hover{ border-color:var(--brass); color:var(--brass-dark); }
.btn-outline-light{ border-color:rgba(246,241,231,0.5); color:var(--cream); }
.btn-outline-light:hover{ border-color:var(--brass-light); color:var(--brass-light); }
.btn-fill-light{ background:var(--cream); color:var(--navy); border-color:var(--cream); }
.btn-fill-light:hover{ background:var(--brass-light); border-color:var(--brass-light); color:var(--navy); }
.btn-sm{ padding:12px 22px; font-size:11.5px; }

/* ---------- Hero CTA ---------- */
.hero-cta{
  display:inline-flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
}
.hero-cta .btn{
  width:190px;
  padding:12px 16px;
  font-size:12.5px;
  letter-spacing:0.04em;
  white-space:nowrap;
  text-align:center;
  box-sizing:border-box;
}


/* ---------- Header ---------- */
.top-bar{ background:var(--navy); color:var(--stone); font-family:'Inter', sans-serif; font-size:13.5px; letter-spacing:0.05em; padding:11px 0; }
.top-bar .wrap{ display:flex; justify-content:space-between; align-items:center; }
.top-bar a{ transition:color .2s ease; }
.top-bar a:hover{ color:var(--cream); }
.top-bar .sep{ opacity:0.4; margin:0 10px; }

.site-header{ background:var(--cream); border-bottom:1px solid var(--stone-line); position:sticky; top:0; z-index:100; }
.main-nav{ display:flex; align-items:center; justify-content:space-between; padding:18px 0; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.crest{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--brass);
  display:flex; align-items:center; justify-content:center; font-family:'Inter', sans-serif; font-size:17px; color:var(--brass);
  flex-shrink:0;
}
.wordmark{ font-family:'Inter', sans-serif; font-size:21px; font-weight:500; color:var(--ink); }

.nav-links{ display:flex; align-items:center; gap:6px; flex:1; justify-content:center; }
.nav-links > li{ position:relative; }
.nav-link{
  display:flex; align-items:center; gap:6px;
  font-family:'Inter', sans-serif; font-size:15px; font-weight:600; letter-spacing:0.03em; color:var(--ink);
  padding:11px 18px; transition:color .25s ease;
}
.nav-link:hover, .nav-link.active{ color:var(--navy); }
.nav-link.active{ font-weight:700; }
.nav-link svg{ width:11px; height:11px; transition:transform .25s ease; }
.has-dropdown:hover .nav-link svg{ transform:rotate(180deg); }

.dropdown-panel{
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(8px);
  background:var(--navy); min-width:300px; padding:10px; border-radius:var(--radius);
  box-shadow:var(--shadow);
  opacity:0; visibility:hidden; transition:opacity .25s ease, transform .25s ease;
}
.has-dropdown:hover .dropdown-panel{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.dropdown-panel a{
  display:flex; align-items:center; gap:12px; padding:12px 14px; border-radius:var(--radius);
  transition:background .2s ease;
}
.dropdown-panel a:hover{ background:rgba(246,241,231,0.07); }
.dropdown-panel .num{ color:var(--brass-light); width:18px; display:inline-flex; align-items:center; justify-content:center; }
.dropdown-panel .num svg{ width:16px; height:16px; }
.dropdown-panel .label{ font-family:'Inter', sans-serif; font-size:13px; color:var(--cream); }

.nav-right{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
@media (min-width: 900px){ .nav-right{ margin-right: 36px; } }
.nav-phone{ font-family:'Inter', sans-serif; font-size:12.5px; color:var(--ink-soft); display:none; }

/* Header CTA: dark navy with thin brass outline + rounded corners */
.nav-right .btn-brass{ background:var(--navy); color:var(--cream); border:1px solid var(--brass); border-radius:999px; box-shadow:0 0 0 1px var(--navy) inset; }
.nav-right .btn-brass:hover{ background:var(--brass); color:var(--cream); border-color:var(--brass); }

.mobile-toggle{ display:none; flex-direction:column; gap:5px; padding:6px; }
.mobile-toggle span{ width:22px; height:1.5px; background:var(--ink); display:block; }

.mobile-menu{
  display:none; position:fixed; inset:0; background:var(--navy); z-index:200;
  padding:24px; overflow-y:auto;
}
.mobile-menu.open{ display:block; }
.mobile-menu-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:40px; }
.mobile-menu-close{ color:var(--cream); font-size:24px; background:none; border:none; cursor:pointer; line-height:1; padding:4px 8px; }
.mobile-menu a{ display:block; font-family:'Inter', sans-serif; font-size:22px; color:var(--cream); padding:14px 0; border-bottom:1px solid var(--stone-line-2); }
.mobile-menu .sub-label{ font-family:'Inter', sans-serif; font-size:10.5px; letter-spacing:0.2em; color:var(--brass-light); text-transform:uppercase; margin:28px 0 8px; }
.mobile-menu .sub-link{ font-family:'Inter', sans-serif; font-size:14px; color:var(--stone); padding:10px 0; border-bottom:none; }
.mobile-menu .mobile-submenu-toggle{ display:flex; width:100%; align-items:center; justify-content:space-between; background:none; border:none; text-align:left; font-family:'Inter', sans-serif; font-size:22px; color:var(--cream); padding:14px 0; border-bottom:1px solid var(--stone-line-2); cursor:pointer; }
.mobile-menu .mobile-submenu-toggle .chev{ font-size:16px; transition:transform 0.2s ease; margin-left:12px; }
.mobile-menu .mobile-submenu-toggle.open .chev{ transform:rotate(180deg); }
.mobile-menu .mobile-submenu{ display:none; padding:8px 0 8px 14px; border-bottom:1px solid var(--stone-line-2); }
.mobile-menu .mobile-submenu.open{ display:block; }
.mobile-menu .mobile-submenu a{ border-bottom:none; font-size:16px; padding:10px 0; }
.mobile-menu .mobile-submenu a.sub-link{ font-size:14px; }

/* Overlay behind drawer (tablet) */
.menu-overlay{ position:fixed; inset:0; background:rgba(10,15,25,0.55); z-index:190; opacity:0; visibility:hidden; transition:opacity .28s ease; }
.menu-overlay.open{ opacity:1; visibility:visible; }
body.menu-open{ overflow:hidden; }

/* Tablet: turn menu into a right-side drawer */
@media (min-width:768px) and (max-width:1023px){
  .mobile-menu{
    display:block; visibility:hidden;
    left:auto; right:0; top:0; inset:auto 0 auto auto;
    width:clamp(380px, 45vw, 420px);
    height:100dvh; max-height:100dvh;
    padding:28px 32px calc(28px + env(safe-area-inset-bottom)) 32px;
    transform:translateX(100%);
    transition:transform .28s ease, visibility .28s ease;
    box-shadow:-24px 0 60px rgba(0,0,0,0.35);
    overflow-y:auto; -webkit-overflow-scrolling:touch;
  }
  .mobile-menu.open{ visibility:visible; transform:translateX(0); display:flex; flex-direction:column; }
  .mobile-menu-top{ margin-bottom:20px; min-height:44px; }
  .mobile-menu a,
  .mobile-menu .mobile-submenu-toggle{
    font-size:19px; padding:12px 0; min-height:48px;
    display:flex; align-items:center;
  }
  .mobile-menu .mobile-submenu{ padding:4px 0 8px 12px; }
  .mobile-menu .mobile-submenu a{ min-height:44px; font-size:15px; padding:8px 0; }
  .mobile-menu .mobile-menu-cta{
    position:sticky; bottom:calc(80px + env(safe-area-inset-bottom));
    margin-top:auto; margin-bottom:0;
    display:flex; align-items:center; justify-content:center;
    width:100%; height:52px; min-height:52px;
    font-family:'Inter', sans-serif; font-size:15px; font-weight:500;
    letter-spacing:0.04em; text-transform:uppercase;
    color:var(--navy); background:var(--brass-light);
    border:none; border-radius:2px; padding:0 16px;
    border-bottom:none;
    box-shadow:0 -12px 20px -8px var(--navy);
  }
  .mobile-menu .mobile-menu-cta:hover{ background:var(--brass); }
}

/* Show mobile toggle up to 1023px (tablet included) */
@media (max-width:1023px){
  .nav-links, .nav-phone{ display:none; }
  .mobile-toggle{ display:flex; }
}

/* Mobile: full-screen menu polish */
@media (max-width:767px){
  .top-bar{ font-size:12px; padding:9px 0; }
  .top-bar .sep{ margin:0 6px; }
  .mobile-menu{
    display:block; visibility:hidden;
    left:auto; right:0; top:0; inset:auto 0 auto auto;
    width:min(88vw, 360px);
    padding:20px 24px calc(20px + env(safe-area-inset-bottom)) 24px;
    height:100dvh; max-height:100dvh;
    overflow-y:auto; -webkit-overflow-scrolling:touch;
    transform:translateX(100%);
    transition:transform .28s ease, visibility .28s ease;
    box-shadow:-24px 0 60px rgba(0,0,0,0.35);
  }
  .mobile-menu.open{ visibility:visible; transform:translateX(0); display:flex; flex-direction:column; }
  .mobile-menu-top{ margin-bottom:52px; min-height:44px; }
  .mobile-menu-close{
    min-width:44px; min-height:44px; display:inline-flex;
    align-items:center; justify-content:center; padding:0; margin-right:-8px;
    font-size:22px;
  }
  .mobile-menu a,
  .mobile-menu .mobile-submenu-toggle{
    font-size:22px; padding:14px 0; min-height:54px;
    display:flex; align-items:center;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu .mobile-submenu-toggle{ justify-content:space-between; }
  .mobile-menu .mobile-submenu-toggle .chev{
    min-width:44px; min-height:44px; display:inline-flex;
    align-items:center; justify-content:center; margin-left:8px; font-size:16px;
  }
  .mobile-menu .mobile-submenu{
    padding:4px 0 8px 16px; border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu .mobile-submenu a{
    font-size:15px; min-height:44px; padding:8px 0; border-bottom:none;
  }
  .mobile-menu .mobile-menu-cta{
    position:sticky; bottom:calc(80px + env(safe-area-inset-bottom));
    margin-top:auto; margin-bottom:0;
    display:flex; align-items:center; justify-content:center;
    width:100%; height:52px; min-height:52px;
    font-family:'Inter', sans-serif; font-size:15px; font-weight:500;
    letter-spacing:0.04em; text-transform:uppercase;
    color:var(--navy); background:var(--brass-light);
    border:none; border-radius:2px; padding:0 16px;
    border-bottom:none;
    box-shadow:0 -12px 20px -8px var(--navy);
  }
  .mobile-menu .mobile-menu-cta:hover{ background:var(--brass); }
}


/* ---------- Breadcrumb ---------- */
.breadcrumb{ font-family:'Inter', sans-serif; font-size:11.5px; color:var(--ink-mute); display:flex; align-items:center; gap:8px; margin-bottom:22px; flex-wrap:wrap; }
.breadcrumb a:hover{ color:var(--brass-dark); }
.breadcrumb .sep{ opacity:0.5; }

.back-link{
  display:none; align-items:center; gap:8px;
  font-family:'Inter', sans-serif; font-size:12px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:16px;
}
.back-link:hover{ color:var(--brass-dark); }
@media (max-width: 1023px){
  .back-link{ display:inline-flex; }
}

/* ---------- Hero (generic page hero) ---------- */
.page-hero{ padding:48px 0 64px; }
.page-hero.has-bottom-text{ padding-bottom:0; }
.page-hero + .content-section{ padding-top:64px; }
.page-hero.has-bottom-text + .content-section{ border-top:1px solid var(--stone-line); }
.page-hero h1{
  font-family:'Inter', sans-serif; font-weight:500; font-style:italic;
  font-size:clamp(28px, 3.8vw, 44px); line-height:1.15; max-width:760px;
  text-wrap:balance; overflow-wrap:break-word; hyphens:auto;
}
.page-hero .lead{ margin-top:22px; font-size:16.5px; line-height:1.7; color:var(--ink-soft); max-width:560px; }

/* ---------- Homepage hero ---------- */
.home-hero{
  position:relative;
  min-height:580px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
  color:var(--cream);
  text-align:left;
  padding:120px 0 0;
}
.home-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.home-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:38% center;
  display:block;
  transform:scaleX(-1);
}
.home-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(90deg,
    rgba(15,27,43,0.85) 0%,
    rgba(15,27,43,0.78) 22%,
    rgba(15,27,43,0.62) 42%,
    rgba(15,27,43,0.38) 58%,
    rgba(15,27,43,0.14) 74%,
    rgba(15,27,43,0.03) 88%,
    transparent 100%
  );
}
.home-hero-content{
  position:relative;
  z-index:2;
  padding-bottom:120px;
  margin-left:36px;
  margin-right:auto;
  width:100%;
}
.home-hero-content .eyebrow-label{
  color:var(--brass-light);
  margin-bottom:18px;
}
.home-hero h1{
  font-family:'Inter', sans-serif;
  font-weight:500;
  font-style:italic;
  font-size:clamp(26px, 3.8vw, 48px);
  line-height:1.15;
  max-width:22ch;
  margin:0;
  color:var(--cream);
  white-space:normal;
  text-wrap:balance;
}
.home-hero h1 .brass{
  color:var(--brass-light);
  font-style:italic;
}
.home-hero .lead{
  font-size:clamp(16px, 1.6vw, 20px);
  line-height:1.65;
  color:rgba(246,241,231,0.84);
  max-width:860px;
  margin-top:26px;
}
.home-hero .lead .lead-line{
  display:block;
  white-space:nowrap;
}
.home-hero .lead .lead-line.indent{
  padding-left:28px;
}
.home-hero .hero-cta{
  margin-top:34px;
  justify-content:flex-start;
}

.home-hero .ledger{
  position:relative;
  z-index:2;
  margin-top:auto;
}
@media (max-width: 1024px){
  .home-hero-bg img{
    object-position:12% center;
  }
  .home-hero-overlay{
    background: linear-gradient(180deg,
      rgba(15,27,43,0.88) 0%,
      rgba(15,27,43,0.78) 50%,
      rgba(15,27,43,0.68) 100%
    );
  }
  .home-hero-content{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }
  .home-hero .eyebrow-label{ justify-content:center; }
  .home-hero h1{ max-width:100%; text-align:center; }
  .home-hero .lead{ max-width:100%; text-align:center; }
  .home-hero .hero-cta{ justify-content:center; }
}
@media (max-width: 767px){
  .home-hero{
    min-height:520px;
    padding:90px 0 0;
    text-align:center;
  }
  .home-hero-bg img{
    object-position:30% center;
  }
  .home-hero-overlay{
    background: linear-gradient(180deg,
      rgba(15,27,43,0.90) 0%,
      rgba(15,27,43,0.82) 55%,
      rgba(15,27,43,0.72) 100%
    );
  }
  .home-hero-content{
    padding-bottom:80px;
    text-align:center;
  }
  .home-hero-content.wrap{ padding:0 16px; }
  .home-hero .eyebrow-label{ justify-content:center; }
  .home-hero h1{ max-width:100%; text-align:center; white-space:normal; }
  .home-hero .lead{ max-width:100%; text-align:center; }
  .home-hero .lead .lead-line{ white-space:normal; }
  .home-hero .hero-cta{ justify-content:center; }
}

.hero-image{ margin-top:32px; position:relative; height:420px; overflow:hidden; }
.hero-image::before{ content:''; position:absolute; inset:0; z-index:2; border-top:1px solid var(--brass); border-bottom:1px solid var(--brass); }
.hero-caption{ position:absolute; bottom:28px; left:48px; z-index:3; color:var(--cream); font-family:'Inter', sans-serif; font-size:11px; letter-spacing:0.15em; text-transform:uppercase; }

/* ---------- Image placeholder ---------- */
.img-placeholder{
  position:relative; background:var(--cream-2);
  border:1px solid var(--stone); display:flex; align-items:center; justify-content:center;
  min-height:220px; overflow:hidden;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(156,122,60,0.04) 18px, rgba(156,122,60,0.04) 19px);
}
.img-placeholder .ph-inner{ text-align:center; color:var(--ink-mute); padding:20px; max-width:340px; }
.img-placeholder .ph-icon{ width:32px; height:32px; margin:0 auto 14px; opacity:0.55; }
.img-placeholder .ph-tag{ font-family:'Inter', sans-serif; font-size:9.5px; letter-spacing:0.2em; text-transform:uppercase; color:var(--brass); margin-bottom:8px; }
.img-placeholder .ph-label{ font-family:'Inter', sans-serif; font-size:12px; line-height:1.5; letter-spacing:0.02em; }
.img-placeholder.dark{ background:var(--navy-2); border-color:rgba(246,241,231,0.22); background-image:repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(246,241,231,0.03) 18px, rgba(246,241,231,0.03) 19px); }
.img-placeholder.dark .ph-inner{ color:var(--stone); }
.img-placeholder.dark .ph-tag{ color:var(--brass-light); }

/* ---------- Ledger / stats ---------- */
.ledger{ background:var(--navy); color:var(--cream); padding:16px 0; }
.ledger .wrap{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px; }
.ledger-item{ text-align:center; flex:1; min-width:150px; }
.ledger-item .num{ font-family:'Inter', sans-serif; font-size:28px; color:var(--brass-light); font-weight:500; }
.ledger-item .label{ margin-top:4px; font-family:'Inter', sans-serif; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--stone); }

@media (max-width: 991px){
  .ledger{ padding:22px 0; }
  .ledger .wrap{ flex-wrap:nowrap; gap:10px; }
  .ledger-item{ min-width:0; }
  .ledger-item .num{ font-size:24px; }
  .ledger-item .label{ font-size:9px; letter-spacing:0.08em; margin-top:4px; }
}
@media (max-width: 640px){
  .ledger{ padding:20px 0; }
  .ledger .wrap{ flex-wrap:nowrap; gap:8px; }
  .ledger-item{ min-width:0; }
  .ledger-item .num{ font-size:20px; }
  .ledger-item .label{ font-size:8px; letter-spacing:0.06em; margin-top:4px; }
}

/* ---------- Services rows (homepage index) ---------- */
.services{ padding:110px 0; }
.services-head{ text-align:center; max-width:640px; margin:0 auto 64px; }
.services-head .eyebrow-label{ display:inline-flex; margin-bottom:18px; justify-content:center; }
.services-head h2{ font-family:'Inter', sans-serif; font-weight:500; font-size:clamp(28px,3.4vw,42px); line-height:1.25; }

.service-rows{ border-top:1px solid var(--stone-line); }
.service-row{
  display:grid; grid-template-columns:80px 1fr 260px; align-items:center; gap:28px;
  padding:34px 0; border-bottom:1px solid var(--stone-line);
  transition:background .3s ease, transform .3s ease, box-shadow .3s ease;
  cursor:pointer;
}
.service-row:hover{
  background:var(--cream-2);
  transform:translateY(-4px);
  box-shadow:0 18px 40px -18px rgba(15,27,43,0.12);
}
.service-row .num{ color:var(--brass); display:flex; align-items:center; justify-content:center; }
.service-row .num svg{ width:32px; height:32px; display:block; color:var(--accent-blue); }
.service-row:hover .num svg{ transform:scale(1.08); transition:transform .3s ease; }
.service-row h3{ font-family:'Inter', sans-serif; font-weight:500; font-size:21px; margin-bottom:6px; text-wrap:balance; overflow-wrap:break-word; hyphens:auto; }
.service-row p{ font-size:14.5px; color:var(--ink-mute); line-height:1.6; max-width:480px; }
.service-row .more{
  font-family:'Inter', sans-serif; font-size:13px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--ink); text-align:center; justify-self:end;
  border:1px solid var(--brass); padding:12px 18px; border-radius:var(--radius);
  transition:all .3s ease, transform .3s ease; width:auto; min-width:0; margin-right:40px; display:inline-block;
}
.service-row:hover .more{ transform:translateX(5px); }
.service-row .more:hover{ background:var(--navy); color:var(--cream); border-color:var(--navy); }

/* ---------- Quote band ---------- */
.quote-band{ background:var(--cream-2); padding:84px 0; text-align:center; border-top:1px solid var(--stone-line); border-bottom:1px solid var(--stone-line); }
.quote-band blockquote{ font-family:'Inter', sans-serif; font-style:italic; font-weight:500; font-size:clamp(22px,2.6vw,32px); max-width:760px; margin:0 auto; line-height:1.45; color:var(--navy); }
.quote-band cite{ display:block; margin-top:24px; font-family:'Inter', sans-serif; font-style:normal; font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:var(--brass); }

/* ---------- Content sections (service detail) ---------- */
.content-section{ padding:64px 0; }
.content-section + .content-section{ border-top:1px solid var(--stone-line); }
.content-grid{ display:grid; grid-template-columns:1fr 1fr; gap:42px 60px; align-items:stretch; }
.content-grid h2{ font-family:'Inter', sans-serif; font-weight:500; font-size:clamp(22px,2.4vw,28px); line-height:1.3; }
.content-grid p{ font-size:15px; line-height:1.75; color:var(--ink-soft); }
.section-block + .section-block{ margin-top:42px; }
.content-grid > .section-block + .section-block{ margin-top:0; }
.section-block h3, .section-block h2{ font-family:'Inter', sans-serif; font-weight:500; font-size:19px; margin-bottom:10px; letter-spacing:normal; }
.section-block p{ font-size:14.5px; line-height:1.75; color:var(--ink-soft); }

/* Premium card grid variant (keeps palette + text) */
.content-grid--cards{ gap:24px; }
.content-grid--cards .card-block{
  position:relative;
  background:var(--cream);
  border:1px solid var(--stone-line);
  padding:34px 32px 30px;
  border-radius:2px;
  transition:border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.content-grid--cards .card-block:hover{
  border-color:rgba(28,27,25,0.28);
  transform:translateY(-2px);
  box-shadow:0 18px 40px -28px rgba(28,27,25,0.35);
}
.content-grid--cards .card-ico{
  width:26px; height:26px; color:var(--accent-blue);
  display:block; margin-bottom:18px;
}
.content-grid--cards .card-rule{
  display:block; width:28px; height:1px;
  background:var(--accent-blue); opacity:.55;
  margin-bottom:16px;
}
.content-grid--cards .card-block h3, .content-grid--cards .card-block h2{ margin-bottom:12px; }
@media (max-width: 720px){
  .content-grid--cards{ grid-template-columns:1fr; gap:16px; }
  .content-grid--cards .card-block{ padding:26px 22px 24px; }
}

.intro-block p{ font-size:16.5px; line-height:1.8; color:var(--ink-soft); max-width:760px; }
.intro-block p + p{ margin-top:20px; }

/* ---------- Checklist / included ---------- */
.checklist{ display:grid; grid-template-columns:1fr 1fr; gap:14px 32px; }
.checklist li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink-soft); line-height:1.5; }
.checklist .tick{ width:16px; height:16px; flex-shrink:0; margin-top:2px; color:var(--brass); }

.benefit-box{
  background:var(--navy);
  color:var(--cream);
  padding:28px 44px;
  margin-top:48px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:24px 48px;
  align-items:center;
}
.benefit-box:has(p:empty){ grid-template-columns:1fr; }
.benefit-box .tag{
  font-family:'Inter', sans-serif; font-size:10.5px; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--brass-light); margin-bottom:0; display:block; white-space:nowrap;
}
.benefit-box p{ font-family:'Inter', sans-serif; font-style:italic; font-size:19px; line-height:1.5; max-width:none; }
.benefit-box p.benefit-note{ font-family:'Inter', sans-serif; font-style:normal; font-size:15px; line-height:1.75; max-width:none; }

/* ---------- FAQ accordion ---------- */
.faq-list{ border-top:1px solid var(--stone-line); max-width:820px; }
.faq-item{ border-bottom:1px solid var(--stone-line); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:24px 0; text-align:left;
}
.faq-q span.q-text{ font-family:'Inter', sans-serif; font-size:17px; color:var(--ink); }
.faq-q .plus{ font-family:'Inter', sans-serif; font-size:20px; color:var(--brass); flex-shrink:0; transition:transform .3s ease; line-height:1; }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-a{ max-height:300px; }
.faq-a-inner{ padding:0 0 24px; font-size:14.5px; line-height:1.7; color:var(--ink-soft); max-width:680px; }

/* ---------- Pricing ---------- */
.pricing-rows{ display:flex; flex-direction:column; gap:1px; background:var(--stone-line); border:1px solid var(--stone-line); }
.pricing-row{ background:var(--cream); padding:40px 44px; display:grid; grid-template-columns:60px 1fr; gap:28px; align-items:start; transition:background .3s ease; }
.pricing-row:hover{ background:var(--cream-2); }
.pricing-row .num{ font-family:'Inter', sans-serif; font-style:italic; font-size:30px; color:var(--brass); }
.pricing-row-head{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.pricing-row h3{ font-family:'Inter', sans-serif; font-weight:500; font-size:23px; }
.pricing-row .tag{
  display:inline-block; font-family:'Inter', sans-serif; font-size:10.5px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--brass-dark); border:1px solid var(--brass); padding:3px 10px; border-radius:999px;
}
.pricing-row p{ margin-top:10px; font-size:14.5px; color:var(--ink-mute); line-height:1.65; max-width:560px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1.5fr 1fr; gap:0; border:1px solid var(--stone-line); }
.contact-form{ padding:36px; }
.contact-sidebar{ padding:36px; background:var(--cream-2); border-left:1px solid var(--stone-line); display:flex; flex-direction:column; gap:24px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:'Inter', sans-serif; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-mute); margin-bottom:6px; }
.field input, .field textarea{
  width:100%; background:transparent; border:none; border-bottom:1px solid var(--stone-line);
  padding:8px 0; font-family:'Inter', sans-serif; font-size:15px; color:var(--ink);
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--brass); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.service-dropdown{ position:relative; }
.service-dropdown-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px;
  background:transparent; border:none; border-bottom:1px solid var(--stone-line);
  padding:10px 0; font-family:'Inter', sans-serif; font-size:15px; color:var(--ink-soft);
  cursor:pointer; text-align:left;
}
.service-dropdown-trigger:focus{ outline:none; border-color:var(--brass); }
.service-dropdown-chevron{ width:12px; height:8px; color:var(--ink-mute); transition:transform .2s ease; flex-shrink:0; }
.service-dropdown.open .service-dropdown-chevron{ transform:rotate(180deg); }
.service-dropdown-text{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.service-dropdown-panel{
  display:none; position:absolute; top:calc(100% + 6px); left:0; right:0; z-index:10;
  background:var(--cream); border:1px solid var(--stone-line); border-radius:var(--radius-soft);
  box-shadow:var(--shadow); padding:6px 0; max-height:280px; overflow-y:auto;
}
.service-dropdown.open .service-dropdown-panel{ display:block; }
.field .service-option{
  display:flex; align-items:center; gap:10px; padding:10px 14px; cursor:pointer;
  font-family:'Inter', sans-serif; font-size:14px; color:var(--ink-soft); transition:background .15s ease;
  text-transform:none; letter-spacing:0;
}
.field .service-option:hover{ background:var(--cream-2); }
.service-option input{ position:absolute; opacity:0; width:0; height:0; }
.service-check{
  width:16px; height:16px; border:1px solid var(--stone-line); border-radius:2px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .15s ease;
}
.service-check svg{ width:12px; height:12px; color:var(--cream); opacity:0; transform:scale(0.8); transition:all .15s ease; }
.service-option input:checked + .service-check{ background:var(--navy); border-color:var(--navy); }
.service-option input:checked + .service-check svg{ opacity:1; transform:scale(1); }
.service-option input:focus + .service-check{ box-shadow:0 0 0 2px rgba(156,122,60,0.25); }
.contact-sidebar .info-block{ display:flex; gap:14px; align-items:flex-start; }
.contact-sidebar .info-block svg{ width:16px; height:16px; color:var(--brass); margin-top:2px; flex-shrink:0; }
.contact-sidebar .info-label{ font-family:'Inter', sans-serif; font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color:var(--ink-mute); margin-bottom:3px; }
.contact-sidebar .info-value{ font-family:'Inter', sans-serif; font-size:16px; color:var(--ink); }
.form-success{ display:none; padding:30px 0; }
.form-success.show{ display:block; }
.form-success .tag{ display:flex; align-items:center; gap:10px; color:var(--brass-dark); font-family:'Inter', sans-serif; font-size:19px; margin-bottom:14px; }

/* ---------- CTA band ---------- */
.cta-final{ padding:100px 0; text-align:center; }
.cta-final h3, .cta-final h2{ font-family:'Inter', sans-serif; font-weight:500; font-style:normal; font-size:clamp(26px,3.2vw,40px); margin-bottom:34px; }
.cta-final .hero-cta{ justify-content:center; }
@media (max-width: 1024px){
  .hero-cta,
  .home-hero .hero-cta,
  .cta-final .hero-cta{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
  }
  .hero-cta .btn{
    width:200px;
    max-width:200px;
    padding:12px 20px;
    font-size:12px;
    letter-spacing:0.04em;
    border-radius:999px;
    text-align:center;
  }
}
@media (max-width: 480px){
  .hero-cta .btn{
    width:180px;
    max-width:180px;
    padding:11px 18px;
    font-size:11.5px;
  }
}


/* ---------- Footer ---------- */
footer.site-footer{ background:var(--navy); color:var(--stone); padding:22px 0; }
.foot-row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px 24px;
}
.foot-row .foot-brand{ justify-self:start; }
.foot-row .foot-links{ justify-self:center; flex-wrap:nowrap; white-space:nowrap; }
.foot-row .foot-copy{ justify-self:end; }

.foot-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  flex-shrink:0;
}
.foot-brand .crest{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border:1.5px solid var(--brass);
  border-radius:50%;
  font-family:'Inter', sans-serif;
  font-size:13px;
  font-weight:500;
  color:var(--brass);
  flex-shrink:0;
}
.foot-brand .wordmark{
  font-family:'Inter', sans-serif;
  font-size:20px;
  font-weight:500;
  color:var(--cream);
  letter-spacing:-0.02em;
}
.foot-tagline{
  font-family:'Inter', sans-serif;
  font-size:13.5px;
  color:var(--stone);
  padding-left:10px;
  border-left:1px solid var(--stone-line-2);
}
.foot-links{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
  justify-content:center;
}
.foot-links a{
  font-family:'Inter', sans-serif;
  font-size:14px;
  color:var(--stone);
  text-decoration:none;
  transition:color .2s ease;
}
.foot-links a:hover{ color:var(--cream); }
.foot-copy{
  font-family:'Inter', sans-serif;
  font-size:13px;
  color:rgba(246,241,231,0.82);
  white-space:nowrap;
  flex-shrink:0;
}

@media (max-width: 900px){
  .foot-row{ display:flex; flex-direction:column; align-items:center; gap:18px; padding:18px 0 8px; }
  .foot-links{ justify-content:center; gap:18px; }
  .foot-copy{ white-space:normal; text-align:center; }
}
@media (max-width: 480px){
  .foot-row{ gap:16px; padding:18px 0 10px; }
  .foot-brand{ flex-wrap:nowrap; gap:8px; }
  .foot-brand .wordmark{ font-size:20px; }
  .foot-brand .foot-tagline{ width:auto; border-left:1px solid var(--stone-line-2); border-top:none; padding-left:8px; padding-top:0; margin-top:0; font-size:14px; }
  .foot-links{ display:grid; grid-template-columns:1fr 1fr; gap:12px 20px; justify-items:center; width:100%; text-align:center; }
  .foot-links a{ text-align:center; }
  .foot-links a{ font-size:15px; }
  .foot-copy{ text-align:center; font-size:13px; }
}



/* ---------- About page ---------- */
.about-hero{ padding:56px 0 72px; }
.about-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:auto auto;
  gap:0 60px;
  align-items:start;
}
.about-hero-heading{ grid-column:1; grid-row:1; }
.about-hero-body{ grid-column:1; grid-row:2; }
.about-hero-grid .hero-media{ grid-column:2; grid-row:1 / 3; }
.about-hero h1{ font-family:'Inter', sans-serif; font-weight:500; font-style:italic; font-size:clamp(28px,3.6vw,46px); line-height:1.12; margin-bottom:0; }
.about-hero-body{ margin-top:-32px; }
.about-hero .lead{ margin-top:0; font-size:16.5px; line-height:1.7; color:var(--ink-soft); max-width:480px; }
.about-hero .lead strong{ color:var(--ink); font-weight:500; }
.about-hero-body .hero-cta{ margin-top:34px; }


.hub{ background:var(--navy); aspect-ratio:1/1; width:100%; max-width:480px; margin:0 auto; position:relative; overflow:hidden; }
.hub::before, .hub::after{ content:''; position:absolute; width:16px; height:16px; border:1px solid var(--brass); opacity:0.6; }
.hub::before{ top:14px; left:14px; border-right:none; border-bottom:none; }
.hub::after{ bottom:14px; right:14px; border-left:none; border-top:none; }
.hub svg{ position:absolute; inset:0; width:100%; height:100%; }
.hub-spoke-label{ position:absolute; transform:translate(-50%,-50%); text-align:center; max-width:150px; }
.hub-spoke-label .chip{ display:inline-flex; align-items:center; gap:7px; padding:7px 12px; background:var(--navy-2); border:1px solid rgba(183,148,86,0.4); }
.hub-spoke-label .chip svg{ position:static; width:13px; height:13px; color:var(--brass-light); flex-shrink:0; }
.hub-spoke-label .chip span{ font-family:'Inter', sans-serif; font-size:11.5px; font-weight:500; color:var(--cream); white-space:nowrap; }
.hub-spoke-label .desc{ font-family:'Inter', sans-serif; font-size:10.5px; color:var(--stone); margin-top:6px; line-height:1.4; }

@keyframes hubRotate{ to{ transform:rotate(360deg); } }
@keyframes dashFlow{ to{ stroke-dashoffset:-40; } }
@keyframes pulseRing{ 0%{ transform:scale(0.6); opacity:0.55; } 100%{ transform:scale(2.6); opacity:0; } }
.hub-rotate{ transform-origin:250px 250px; animation:hubRotate 60s linear infinite; }
.hub-spoke{ animation:dashFlow 4s linear infinite; }
.hub-pulse{ transform-origin:center; animation:pulseRing 3s ease-out infinite; }

.intro-split{
  display:grid;
  grid-template-columns:1fr 2fr;
  grid-template-rows:auto auto;
  gap:0 60px;
  align-items:start;
}
.intro-split > div:first-child{ grid-column:1; grid-row:1 / 3; }
.intro-split .body{ grid-column:2; grid-row:2; padding-top:14px; }
.intro-split h2{ font-family:'Inter', sans-serif; font-weight:500; font-size:clamp(24px,2.6vw,32px); line-height:1.25; }
.intro-split .body p{ font-size:15.5px; line-height:1.8; color:var(--ink-soft); }
.intro-split .body p + p{ margin-top:18px; }

.mission{ background:var(--cream-2); padding:90px 0; text-align:center; border-top:1px solid var(--stone-line); border-bottom:1px solid var(--stone-line); }
.mission .eyebrow-label{ margin-bottom:22px; display:inline-flex; }
.mission p.statement{ font-family:'Inter', sans-serif; font-weight:500; font-size:clamp(24px,3vw,38px); line-height:1.3; max-width:880px; margin:0 auto; color:var(--navy); }
.mission p.statement em{ font-style:italic; color:var(--brass-dark); }

.goal-section{ border-top:1px solid var(--stone-line); border-bottom:1px solid var(--stone-line); }
@media (max-width: 980px){
  .about-hero-body{ margin-top:0; }
  .intro-split{ grid-template-columns:1fr; gap:28px 0; }
  .intro-split > div:first-child{ grid-column:1; grid-row:1; }
  .intro-split .body{ grid-column:1; grid-row:2; padding-top:0; }
  .nav-links, .nav-phone{ display:none; }
  .mobile-toggle{ display:flex; }
  .content-grid{ grid-template-columns:1fr; gap:36px; }
  .contact-grid{ grid-template-columns:1fr; }
  .contact-form{ padding:28px; }
  .contact-sidebar{ padding:28px; border-left:none; border-top:1px solid var(--stone-line); gap:20px; }
  .checklist{ grid-template-columns:1fr; }
}
@media (min-width: 768px) and (max-width: 980px){
  .contact-grid{ max-width:640px; margin:0 auto; }
  .contact-form{ padding:32px; }
  .contact-sidebar{
    padding:28px 32px;
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:24px;
    row-gap:20px;
    align-items:start;
  }
  .contact-sidebar > .eyebrow-label{ grid-column:1 / -1; }
  .contact-sidebar > .info-block{ margin:0; }
  .contact-sidebar > div[style*="margin-top:auto"]{
    grid-column:1 / -1;
    margin-top:8px !important;
  }
  .field{ margin-bottom:16px; }
  .field-row{ grid-template-columns:1fr 1fr !important; gap:16px; }
  .contact-form textarea{ min-height:110px; }
}

@media (min-width: 768px) and (max-width: 900px){

  .about-hero{ padding:44px 0 64px; }
  .about-hero-grid{
    grid-template-columns:1fr;
    gap:28px 0;
    max-width:720px;
    margin:0 auto;
    text-align:center;
  }
  .about-hero-heading{ grid-column:1; grid-row:1; }
  .about-hero h1{
    max-width:none;
    margin-left:auto;
    margin-right:auto;
    font-size:32px;
    line-height:1.15;
    text-wrap:nowrap;
    white-space:nowrap;
  }
  .about-hero-grid .hero-media{
    grid-column:1;
    grid-row:2;
    width:100%;
    max-width:620px;
    margin-left:auto;
    margin-right:auto;
  }
  .about-hero-body{
    grid-column:1;
    grid-row:3;
    max-width:620px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }
  .about-hero .lead{
    max-width:620px;
    margin-left:auto;
    margin-right:auto;
    font-size:17px;
    line-height:1.65;
  }
  .about-hero-body .hero-cta{
    display:flex;
    flex-direction:row;
    justify-content:center;
    gap:14px;
    margin-top:28px;
  }
}

@media (max-width: 767px){
  .about-hero-grid{ grid-template-columns:1fr; gap:28px 0; }
  .about-hero-heading{ grid-column:1; grid-row:1; }
  .about-hero-grid .hero-media{ grid-column:1; grid-row:2; }
  .about-hero-body{ grid-column:1; grid-row:3; text-align:center; }
  .about-hero-body .hero-cta{ display:flex; justify-content:center !important; }
  .contact-form{ padding:22px; }
  .contact-sidebar{ padding:22px; }
  .field{ margin-bottom:14px; }
  .field input, .field textarea{ padding:6px 0; font-size:14px; }
  .field-row{ gap:12px; }
  .contact-sidebar .info-value{ font-size:14px; line-height:1.5; }
  .contact-sidebar p{ font-size:14px !important; line-height:1.5 !important; }
  .service-dropdown-trigger{ font-size:14px; }
  .form-success .tag{ font-size:14px; }
  .form-success p{ font-size:13px !important; }
}
@media (max-width: 720px){
  .nav-right .btn{ display:none; }
}
@media (max-width: 880px){
  .wrap{ padding:0 24px; }
  .service-row{ display:grid; grid-template-columns:50px 1fr auto; gap:20px; align-items:center; padding:24px 0; }
  .service-row .num{ margin-right:0; }
  .service-row > div:nth-child(2){ min-width:0; }
  .service-row .more{ margin-right:24px; margin-left:0; margin-top:0; justify-self:end; padding:12px 18px; }
  .ledger .wrap{ justify-content:flex-start; }
  .pricing-row{ grid-template-columns:40px 1fr; padding:30px 24px; }
  .field-row{ grid-template-columns:1fr; }
  .top-bar .wrap{ font-size:10.5px; }
}
@media (max-width: 767px){
  .service-row{ display:flex; flex-direction:column; align-items:center; gap:0; padding:24px 0; text-align:center; }
  .service-row .num{ margin:0 0 10px 0; }
  .service-row > div:nth-child(2){ width:100%; text-align:center; }
  .service-row h3{ text-align:center; font-size:19px; }
  .service-row p{ margin-left:auto; margin-right:auto; }
  .service-row .more{ margin:14px auto 0; padding:12px 20px; }
}

/* ===== Apie mus — pillars / hero media ===== */
.about-hero-grid .hero-media{ position:relative; width:100%; margin-top:32px; }
@media (max-width: 980px){
  .about-hero-grid .hero-media{ margin-top:0; }
}
.about-hero-grid .hero-photo{
  position:relative; aspect-ratio:4/3; overflow:hidden;
  border:1px solid var(--stone-line); border-radius:var(--radius);
  background:var(--cream-2);
}
.about-hero-grid .hero-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.about-hero-grid .hero-photo::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(15,27,43,0.18));
  pointer-events:none;
}
.about-hero-grid .hero-media-caption{
  margin-top:14px; font-family:'Inter',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-mute); text-align:center;
}
.about-hero-grid .hero-media-tag{
  display:inline-block; margin-bottom:10px;
  font-family:'Inter',sans-serif; font-size:10px; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--brass); background:transparent; padding:0 0 7px; border-bottom:1px solid var(--brass);
}

.pillars{ padding:0 0 88px; background:var(--cream); }
.pillars .eyebrow-label{ justify-content:center; }
.pillars-head{ text-align:center; margin-bottom:34px; }
.pillars-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:1px;
  background:var(--stone-line); border:1px solid var(--stone-line);
}
@media (min-width:900px){ .pillars-grid{ grid-template-columns:repeat(4,1fr); } }
.pillar{
  background:var(--cream); padding:34px 28px; transition:background .3s ease;
}
.pillar:hover{ background:var(--cream-2); }
.pillar-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border:1px solid var(--brass); color:var(--brass);
  border-radius:50%; margin-bottom:20px;
}
.pillar-icon svg{ width:20px; height:20px; }
.pillar h3{
  font-family:'Inter', sans-serif; font-size:19px; font-weight:500; color:var(--navy);
  letter-spacing:-0.01em; margin-bottom:10px;
}
.pillar p{ font-family:'Inter',sans-serif; font-size:14px; line-height:1.6; color:var(--ink-soft); }

/* ---------- Homepage section separators (matches service pages) ---------- */
.services + .process-band,
.process-band + .why-band,
.why-band + .cta-final{ border-top:1px solid var(--stone-line); }

/* ---------- Process band (Kaip dirbame) ---------- */
.process-band{ background:var(--cream); color:var(--ink); padding:90px 0; }
.process-head{ text-align:center; margin-bottom:56px; }
.process-head .eyebrow-label{ justify-content:center; margin-bottom:16px; color:var(--brass); }
.process-head .eyebrow-label .bar{ background:var(--brass); }
.process-head h2{ font-family:'Inter', sans-serif; font-weight:500; font-size:clamp(26px,3vw,38px); line-height:1.2; }
.process-topline{ height:1px; background:var(--stone-line); margin-bottom:28px; }
.process-row{ display:flex; flex-wrap:wrap; position:relative; }
.process-step{ flex:1; min-width:180px; padding:32px 28px; position:relative; }
.process-step + .process-step::before{ content:''; position:absolute; left:0; top:22%; height:56%; width:1px; background:var(--stone-line); }

.process-step h3{ font-family:'Inter', sans-serif; font-weight:500; font-size:17px; margin-bottom:8px; white-space:nowrap; }
.process-step .step-num{ color:var(--brass); margin-right:3px; white-space:nowrap; }
.process-step h3{ line-height:1.3; }
.process-step p{ font-family:'Inter',sans-serif; font-size:13px; line-height:1.6; color:var(--ink-soft); max-width:260px; }

/* ---------- Why us (Kodel mes) ---------- */
.why-band{ padding:100px 0; background:var(--cream); }
.why-head{ text-align:center; margin-bottom:60px; }
.why-head .eyebrow-label{ justify-content:center; margin-bottom:16px; }
.why-head h2{ font-family:'Inter', sans-serif; font-weight:500; font-size:clamp(26px,3vw,38px); line-height:1.2; }
.why-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--stone-line); border:1px solid var(--stone-line); }
.why-item{ background:var(--cream); padding:36px 32px; transition:background .3s ease; }
.why-item:hover{ background:var(--cream-2); }
.why-item h3{ font-family:'Inter', sans-serif; font-weight:500; font-size:19px; margin-bottom:10px; }
.why-item p{ font-size:14px; line-height:1.7; color:var(--ink-soft); }
@media (max-width:980px){
  .why-row{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .why-row{ grid-template-columns:1fr; }
  .why-item{ padding:28px 24px; }
}

@media (max-width:980px){
  .process-step{ min-width:50%; }
  .process-step:nth-child(3)::before{ display:none; }
  .process-step:nth-child(5)::before{ display:none; }
}
@media (max-width:640px){
  .process-step{ min-width:100%; padding:24px 0; }
  .process-step + .process-step::before{ display:none; }
  .process-step + .process-step{ border-top:1px solid var(--stone-line); }
}

/* Telemarketing hero split layout */
.hero-split{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto 1fr;
  gap:0 56px;
  align-items:stretch;
  margin-top:18px;
}
.hero-split.has-small-media{
  grid-template-columns: 1.45fr 0.72fr;
  gap:0 48px;
}
.hero-split-text{
  display:contents;
  min-width:0;
}
.hero-split-text h1{
  grid-column:1;
  grid-row:1;
  margin-top:0;
}
.hero-split-text > .hero-intro,
.hero-split-text > .hero-body,
.hero-split-text > .hero-lead,
.hero-split-text > .editorial-caption,
.hero-split-text > .premium-hero-intro{
  grid-column:1;
  grid-row:2;
}
.hero-split-media{
  grid-column:2;
  grid-row:1 / 3;
  position:relative;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 10px 30px -15px rgba(0,0,0,0.4);
}
.hero-split.has-small-media .hero-split-media{
  max-height:320px;
  align-self:start;
}
.hero-split-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-body .lead{ margin-top:0; }
.hero-intro{
  margin-top: 28px;
}
.hero-intro p{
  font-size:16.5px;
  line-height:1.8;
  color:var(--ink-soft);
}
.hero-intro p + p{ margin-top:20px; }

.hero-lead{
  position: relative;
  max-width: 720px;
  margin-top: 28px;
  border-left: 1px solid var(--brass);
  padding-left: 24px;
}
.hero-lead p{
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.editorial-caption{
  position: relative;
  max-width: 720px;
  margin-top: 28px;
  border-left: 1px solid var(--brass);
  padding-left: 24px;
}
.editorial-caption::before{
  content: '—';
  display: block;
  color: var(--brass);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 12px;
}
.editorial-caption p{
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.editorial-caption.smaller p{
  font-size: 17px;
}
.editorial-caption.two-lines{
  max-width: 940px;
}
.editorial-caption.no-wrap p{
  white-space: nowrap;
}
@media (max-width: 767px){
  .editorial-caption.no-wrap p{
    white-space: normal;
  }
}

/* Premium hero intro — split paragraphs, gold vertical rule */
.premium-hero-intro{
  position: relative;
  max-width: 940px;
  margin-top: 28px;
  border-left: 1px solid var(--brass);
  padding-left: 24px;
  align-self: start;
}
.premium-hero-intro p{
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.premium-hero-intro p + p{
  margin-top: 16px;
}
.premium-hero-intro p:first-child{
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}
.premium-hero-intro.balanced p:first-child{
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
}


@media (max-width:900px){
  .hero-split,
  .hero-split.has-small-media{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap:24px;
    margin-top:20px;
  }
  .hero-split-text h1{
    grid-column:1;
    grid-row:1;
  }
  .hero-split-media,
  .hero-split.has-small-media .hero-split-media{
    grid-column:1;
    grid-row:2;
    max-height:340px;
    align-self:start;
  }
  .hero-split-text > .hero-intro,
  .hero-split-text > .hero-body,
  .hero-split-text > .hero-lead,
  .hero-split-text > .editorial-caption,
  .hero-split-text > .premium-hero-intro{
    grid-column:1;
    grid-row:3;
  }
}
@media (max-width:767px){
  .hero-split.has-small-media .hero-split-media,
  .hero-split .hero-split-media{
    max-height:260px;
  }
  .hero-split-text > .hero-intro,
  .hero-split-text > .hero-body,
  .hero-split-text > .premium-hero-intro{
    grid-column:1;
    grid-row:3;
  }
  .premium-hero-intro{
    margin-top: 4px;
    padding-left: 18px;
    max-width: 100%;
  }
  .premium-hero-intro p:first-child,
  .premium-hero-intro.balanced p:first-child,
  .premium-hero-intro p,
  .premium-hero-intro.balanced p,
  .editorial-caption.smaller p,
  .editorial-caption.smaller.no-wrap p{
    font-size: 17px;
    line-height: 1.55;
  }
  .hero-intro{ margin-top:0; }
  .hero-body .hero-intro{ margin-top:24px; }
  .benefit-box{
    grid-template-columns:1fr;
    gap:12px;
    padding:24px 24px;
    align-items:start;
  }
}

/* ===== Vieningi vertikalūs sekcijų tarpai ===== */
.services,
.quote-band,
.mission,
.process-band,
.why-band,
.cta-final,
.content-section{
  padding-top:96px;
  padding-bottom:96px;
}
.pillars{ padding-top:0; padding-bottom:96px; }

@media (max-width: 980px){
  .services,
  .quote-band,
  .mission,
  .process-band,
  .why-band,
  .cta-final,
  .content-section{
    padding-top:64px;
    padding-bottom:64px;
  }
  .pillars{ padding-bottom:64px; }
  .page-hero{ padding:32px 0 40px; }
  .page-hero + .content-section{ padding-top:40px; }
}
@media (max-width: 640px){
  .services,
  .quote-band,
  .mission,
  .process-band,
  .why-band,
  .cta-final,
  .content-section{
    padding-top:48px;
    padding-bottom:48px;
  }
  .pillars{ padding-bottom:48px; }
  .page-hero{ padding:24px 0 32px; }
  .page-hero + .content-section{ padding-top:32px; }
  .services-head{ margin-bottom:40px; }
  .process-head, .why-head{ margin-bottom:36px; }
}

/* Hide Lovable badge */
#lovable-badge, [id^="lovable-badge"], a[href*="lovable.dev"][target="_blank"], iframe[src*="lovable-badge"], iframe[src*="gpteng.co"] { display:none !important; visibility:hidden !important; opacity:0 !important; pointer-events:none !important; }

/* ---------- Cookie consent banner ---------- */
#cookie-banner{
  position:fixed; left:50%; transform:translateX(-50%); bottom:16px; z-index:9999;
  width:calc(100% - 32px); max-width:720px;
  background:#0F1B2B; color:#F5EFE0;
  border:1px solid rgba(199,164,85,0.35);
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
  padding:8px 14px;
  font-family:'Inter', sans-serif;
  animation:cookieSlideUp .35s ease-out;
}
@keyframes cookieSlideUp{ from{ transform:translate(-50%,20px); opacity:0 } to{ transform:translateX(-50%); opacity:1 } }
@keyframes cookieSlideUp{ from{ transform:translateY(20px); opacity:0 } to{ transform:none; opacity:1 } }
.cookie-banner__inner{
  max-width:880px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.cookie-banner__text{
  margin:0; font-size:13px; line-height:1.5; color:#F5EFE0; flex:1 1 320px;
}
.cookie-banner__text a{ color:#C7A455; text-decoration:underline; }
.cookie-banner__actions{ display:flex; gap:10px; flex-wrap:nowrap; flex-shrink:0; }
.cookie-banner__btn{
  font-family:'Inter', sans-serif;
  font-size:13px; font-weight:600; letter-spacing:0.02em;
  padding:9px 20px; border-radius:999px; cursor:pointer;
  border:1px solid transparent; transition:all .18s ease;
  white-space:nowrap;
}
.cookie-banner__btn--primary{
  background:#C7A455; color:#0F1B2B; border-color:#C7A455;
}
.cookie-banner__btn--primary:hover{ background:#b89347; border-color:#b89347; }
.cookie-banner__btn--ghost{
  background:transparent; color:#F5EFE0; border-color:rgba(245,239,224,0.35);
}
.cookie-banner__btn--ghost:hover{ border-color:#F5EFE0; }
@media (max-width: 640px){
  #cookie-banner{ left:10px; right:10px; bottom:10px; width:auto; max-width:none; transform:none; padding:12px 14px; }
  .cookie-banner__inner{ flex-direction:column; align-items:stretch; justify-content:flex-start; gap:10px; }
  .cookie-banner__text{ font-size:12.5px; text-align:left; flex:0 0 auto; }
  .cookie-banner__actions{ justify-content:flex-end; gap:8px; flex:0 0 auto; }
  .cookie-banner__btn{ flex:0 1 auto; padding:9px 18px; font-size:12.5px; }
}


/* ==========================================================================
   Formos laukų klaidos
   ========================================================================== */
.field input.has-error,
.field textarea.has-error,
.field select.has-error{
  border-color:#c0392b !important;
  background:#fdf6f5;
}
.field input.has-error:focus,
.field textarea.has-error:focus{
  outline:none;
  box-shadow:0 0 0 3px rgba(192,57,43,0.15);
}
.field-error{
  display:none;
  margin-top:6px;
  font-size:12.5px;
  line-height:1.4;
  color:#8a3a3a;
}
