:root{
  --font-main:"Montserrat", "Segoe UI", Tahoma, Arial, sans-serif;
  --bg:#000000;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --line:rgba(255,255,255,.25);
  --red:rgba(175, 35, 35, .78);
  --panel:rgba(255,255,255,.06);
  --panel-2:rgba(255,255,255,.18);
  --panel-strong:rgba(255,255,255,.35);
  --drawer-bg:#0b0b0b;
  --footer-bg:#0b0b0b;
  --footer-glow-1:rgba(255,255,255,.06);
  --footer-glow-2:rgba(255,255,255,.05);
  --overlay:rgba(0,0,0,.55);
  --topbar-solid-bg:#0f172a;
  --topbar-solid-text:#f8fafc;
  --topbar-solid-line:rgba(255,255,255,.16);
  --topbar-solid-panel:rgba(255,255,255,.08);
  --topbar-solid-panel-strong:rgba(255,255,255,.16);
  --topbar-solid-shadow:0 12px 30px rgba(0,0,0,.32);
  --topbar-solid-lang-bg:rgba(255,255,255,.08);
  --topbar-solid-lang-border:rgba(255,255,255,.22);
  --topbar-solid-lang-btn-active-bg:rgba(255,255,255,.18);
  --topbar-solid-lang-btn-active-border:rgba(255,255,255,.28);
  --topbar-solid-sustain-bg:rgba(78,168,106,.14);
  --topbar-solid-sustain-border:rgba(78,168,106,.45);
  --topbar-solid-sustain-color:#7dd99a;
  --topbar-solid-sustain-shadow:0 8px 18px rgba(0,0,0,.28);
}

/* light theme */
:root[data-theme="light"]{
  --bg:#f6f6f2;
  --text:#0b0b0b;
  --muted:rgba(0,0,0,.65);
  --line:rgba(0,0,0,.18);
  --panel:rgba(0,0,0,.04);
  --panel-2:rgba(0,0,0,.12);
  --panel-strong:rgba(0,0,0,.28);
  --drawer-bg:#f8f8f4;
  --footer-bg:#f5f6f2;
  --footer-glow-1:rgba(0,0,0,.06);
  --footer-glow-2:rgba(0,0,0,.05);
  --overlay:rgba(0,0,0,.35);
  --topbar-solid-bg:#ffffff;
  --topbar-solid-text:#0b0b0b;
  --topbar-solid-line:rgba(0,0,0,.08);
  --topbar-solid-panel:rgba(0,0,0,.05);
  --topbar-solid-panel-strong:rgba(0,0,0,.12);
  --topbar-solid-shadow:0 12px 30px rgba(0,0,0,.12);
  --topbar-solid-lang-bg:#f7f9fc;
  --topbar-solid-lang-border:#d8dee8;
  --topbar-solid-lang-btn-active-bg:#e7edf9;
  --topbar-solid-lang-btn-active-border:#c6d4ea;
  --topbar-solid-sustain-bg:#eef0f3;
  --topbar-solid-sustain-border:#d7dae0;
  --topbar-solid-sustain-color:#3e8d57;
  --topbar-solid-sustain-shadow:0 6px 16px rgba(0,0,0,.1);
}

/* reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-main);
  background:var(--bg);
  color:var(--text);
}
input, textarea, button, select{
  font-family:inherit;
}
a{color:inherit}

/* main flush */
.content--flush{padding:0}

/* ---------------- TOPBAR ---------------- */
.topbar{
  position:fixed;
  left:0; right:0; top:0;
  z-index:50;
  padding:10px 0;
  background:linear-gradient(180deg, rgba(26,55,86,.78) 0%, rgba(26,55,86,.34) 68%, rgba(26,55,86,0) 100%);
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.topbar--locked{
  position:sticky;
}
.topbar--solid{
  background:var(--topbar-solid-bg);
  border-bottom:1px solid var(--topbar-solid-line);
  box-shadow:var(--topbar-solid-shadow);
}
.topbar--menu-open{
  background:var(--topbar-solid-bg);
  border-bottom:1px solid var(--topbar-solid-line);
  box-shadow:var(--topbar-solid-shadow);
}
.topbar__inner{
  max-width:1760px;
  margin:0 auto;
  padding:0 clamp(20px, 2.6vw, 46px);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  position:relative;
}
.topbar__brand{display:flex;align-items:center;text-decoration:none}
.topbar__logo{
  height:34px;
  width:auto;
  display:block;
  transition:transform .35s ease, filter .35s ease;
}
.topbar__brand:hover .topbar__logo{
  transform:scale(1.05);
  filter:drop-shadow(0 10px 22px rgba(255,255,255,.25));
}
.topbar.has-splash .topbar__logo{opacity:0}

/* ---------------- SPLASH LOGO ---------------- */
.splash{
  position:fixed;
  inset:0;
  background:#000;
  z-index:9999;
  opacity:1;
  transition:opacity .5s ease;
}
.splash.is-hidden{
  opacity:0;
  pointer-events:none;
}
.splash__logo{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) translate(0,0);
  opacity:0;
  transition:opacity .45s ease;
}
.splash.is-visible .splash__logo{opacity:1}
.splash.is-animating .splash__logo{
  transition:
    opacity .45s ease,
    transform .9s cubic-bezier(.16,1,.3,1) 2s;
  transform:translate(-50%,-50%) translate(var(--splash-x, 0px), var(--splash-y, 0px));
}
.splash__img{
  display:block;
  width:auto;
  height:34px;
}

.topbar__nav{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:clamp(16px, 2.2vw, 42px);
  align-items:center;
  white-space:nowrap;
}
.topbar__link{
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  letter-spacing:.45px;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}
.topbar__link:hover{color:var(--text)}
.topbar__link.active{color:var(--text)}

.topbar__right{
  margin-left:auto;
  display:flex;
  gap:10px;
  align-items:center;
}
.topbar__sustain{
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  font-size:16px;
  letter-spacing:.2px;
  color:#4ea86a;
  padding:10px 18px;
  border-radius:7px;
  border:1px solid #e4e6ea;
  background:#f2f3f5;
  font-weight:600;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.topbar__sustain:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.12);
}
.topbar__sustain.active{
  color:#40915a;
}
.topbar__sustainLeaf{
  font-size:15px;
}
.topbar__langs{
  position:relative;
}
.topbar__langCurrent{
  border:1px solid rgba(255,255,255,.34);
  background:rgba(255,255,255,.2);
  color:#ffffff;
  height:36px;
  min-width:76px;
  border-radius:12px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  backdrop-filter:blur(8px);
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.topbar__langCurrent:hover{
  background:rgba(255,255,255,.28);
}
.topbar__langCode{
  font-size:16px;
  font-weight:700;
  line-height:1;
}
.topbar__langMenu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:88px;
  background:#ffffff;
  border:1px solid #dce2eb;
  border-radius:12px;
  padding:6px;
  box-shadow:0 14px 30px rgba(15,23,42,.2);
  display:grid;
  gap:4px;
  opacity:0;
  pointer-events:none;
  transform:translateY(-6px);
  transition:opacity .18s ease, transform .2s ease;
  z-index:35;
}
.topbar__langs.is-open .topbar__langMenu{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.topbar__langCaret{
  font-size:10px;
  opacity:.9;
  transition:transform .2s ease;
}
.topbar__langs.is-open .topbar__langCaret{
  transform:rotate(180deg);
}
.topbar__langBtn{
  border:1px solid transparent;
  background:transparent;
  color:#111827;
  min-width:0;
  border-radius:9px;
  padding:7px 9px;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  line-height:1;
  white-space:nowrap;
  transition:background .18s ease, color .18s ease, border-color .18s ease;
}
.topbar__langBtn:hover{
  background:#f3f5fa;
}
.topbar__langBtn.is-active{
  background:#e9eef8;
  color:#0f5bd5;
  border-color:#cbd7eb;
}
.topbar__langValue{
  font-weight:700;
}
.topbar__flag{
  font-size:16px;
  line-height:1;
}
.topbar__flagImg{
  width:20px;
  height:14px;
  object-fit:cover;
  border-radius:999px;
  border:1px solid rgba(17,24,39,.2);
  box-shadow:0 1px 2px rgba(15,23,42,.2);
  flex-shrink:0;
}
.topbar__langCurrent .topbar__flagImg{
  border-color:rgba(255,255,255,.45);
  box-shadow:0 1px 2px rgba(0,0,0,.24);
}
.topbar__cta{
  font-size:13px;
  text-decoration:none;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  white-space:nowrap;
}
.topbar__theme{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.topbar__theme:hover{
  transform:translateY(-1px);
}
.topbar__theme:focus-visible{
  outline:2px solid #60a5fa;
  outline-offset:2px;
}
.topbar__icon{
  width:18px;
  height:18px;
  display:block;
}
.topbar__icon--sun{display:none}
:root[data-theme="light"] .topbar__icon--sun{display:block}
:root[data-theme="light"] .topbar__icon--moon{display:none}

/* Burger */
.topbar__burger{
  display:none;
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel);
  cursor:pointer;
  transition:background .28s ease, border-color .28s ease, transform .22s ease, box-shadow .28s ease;
}
.topbar__burger span{
  display:block;
  width:18px;height:2px;
  background:var(--text);
  margin:4px auto;
  opacity:.9;
  transform-origin:center;
  transition:transform .3s cubic-bezier(.4,0,.2,1), opacity .24s ease, background .24s ease;
}
.topbar__burger:active{
  transform:scale(.96);
}
.topbar--menu-open .topbar__burger{
  background:#0f5bd5;
  border-color:#0f5bd5;
  box-shadow:0 10px 20px rgba(15,91,213,.34);
}
.topbar--menu-open .topbar__burger span{
  background:#ffffff;
}
.topbar--menu-open .topbar__burger span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}
.topbar--menu-open .topbar__burger span:nth-child(2){
  opacity:0;
  transform:scaleX(.35);
}
.topbar--menu-open .topbar__burger span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.topbar--solid .topbar__link,
.topbar--solid .topbar__link:hover,
.topbar--solid .topbar__link.active{
  color:var(--topbar-solid-text);
}
.topbar--solid .topbar__burger{
  background:var(--topbar-solid-panel);
  border-color:var(--topbar-solid-panel-strong);
}
.topbar--solid .topbar__burger span{background:var(--topbar-solid-text)}
.topbar--solid .topbar__theme{
  background:var(--topbar-solid-panel);
  border-color:var(--topbar-solid-panel-strong);
  color:var(--topbar-solid-text);
}
.topbar--solid .topbar__sustain{
  border-color:var(--topbar-solid-sustain-border);
  background:var(--topbar-solid-sustain-bg);
  color:var(--topbar-solid-sustain-color);
  box-shadow:var(--topbar-solid-sustain-shadow);
}
.topbar--solid .topbar__langs{
  color:var(--topbar-solid-text);
}
.topbar--solid .topbar__langCurrent{
  background:var(--topbar-solid-lang-bg);
  border-color:var(--topbar-solid-lang-border);
  color:var(--topbar-solid-text);
}
.topbar--solid .topbar__langBtn{
  color:#374151;
}
.topbar--solid .topbar__langBtn.is-active{
  background:var(--topbar-solid-lang-btn-active-bg);
  color:#0f5bd5;
  border-color:var(--topbar-solid-lang-btn-active-border);
}
.topbar--solid .topbar__langCurrent .topbar__flagImg{
  border-color:var(--topbar-solid-lang-border);
}
.topbar--solid .topbar__nav .topbar__link{color:var(--topbar-solid-text)}
.topbar--solid .topbar__nav .topbar__link:hover{color:var(--topbar-solid-text)}
.topbar--menu-open .topbar__burger{
  background:#0f5bd5;
  border-color:#0f5bd5;
  box-shadow:0 10px 20px rgba(15,91,213,.34);
}
.topbar--menu-open .topbar__burger span{
  background:#ffffff;
}

/* Drawer (mobile menu) */
.drawer{
  position:fixed;
  inset:0;
  background:var(--overlay);
  display:none;
}
.drawer.is-open{display:block}
.drawer__panel{
  position:absolute;
  top:0; right:0;
  height:100%;
  width:min(340px, 88vw);
  background:var(--drawer-bg);
  border-left:1px solid var(--line);
  padding:16px;
}
.drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:700;
  margin-bottom:14px;
}
.drawer__close{
  width:40px;height:40px;
  border-radius:10px;
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--text);
  cursor:pointer;
}
.drawer__links{display:grid;gap:10px}
.drawer__link{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  text-decoration:none;
  color:var(--muted);
  border:1px solid var(--line);
}
.drawer__link.active{border-color:var(--panel-strong);color:var(--text)}
.drawer__footer{margin-top:14px}
.drawer__sustain{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:12px 12px;
  border-radius:999px;
  border:1px solid rgba(215,193,137,.58);
  text-decoration:none;
  color:#0f0f0f;
  background:linear-gradient(135deg, #f3ebd2 0%, #ddc78f 55%, #c9ab64 100%);
  margin-bottom:10px;
  font-size:13px;
  letter-spacing:.3px;
}
.drawer__sustain.active{
  border-color:rgba(215,193,137,.82);
}
.drawer__langs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-bottom:10px;
}
.drawer__langBtn{
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--text);
  border-radius:12px;
  padding:10px 8px;
  font-size:13px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.drawer__langBtn.is-active{
  border-color:var(--panel-strong);
}
.drawer__themeToggle{
  width:100%;
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  margin-bottom:10px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
}
.drawer__themeToggle i{
  font-size:14px;
}
.drawer__themeToggle.is-light i::before{
  content:"\f185";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
}
.drawer__flag{
  font-size:14px;
  line-height:1;
}
.drawer__flagImg{
  width:18px;
  height:12px;
  object-fit:cover;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.2);
  flex-shrink:0;
}
.drawer__btn{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:12px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
}

.google-translate-slot{
  position:fixed;
  width:1px;
  height:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
  left:-9999px;
  top:auto;
}
body{
  top:0 !important;
}
.goog-te-banner-frame.skiptranslate{
  display:none !important;
}

/* ---------------- PAGE TITLE BAR ---------------- */
.page-titlebar{
  position:relative;
  padding:34px 0 24px;
  border-bottom:1px solid var(--line);
}
.page-titlebar--dark{
  background:
    radial-gradient(560px 260px at 12% 0%, rgba(255,255,255,.08), transparent 64%),
    radial-gradient(720px 300px at 88% 0%, rgba(255,255,255,.06), transparent 66%),
    var(--bg);
  color:var(--text);
}
.page-titlebar--light{
  background:
    radial-gradient(560px 260px at 10% 0%, rgba(15,91,213,.14), transparent 64%),
    #eef2f6;
  color:#0f1f35;
  border-bottom:1px solid #d7dee8;
}
.page-titlebar__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
.page-titlebar__title{
  margin:0;
  font-size:clamp(30px, 4vw, 48px);
  letter-spacing:.2px;
}
.page-titlebar__desc{
  margin:10px 0 0;
  max-width:760px;
  font-size:14px;
  line-height:1.7;
  color:inherit;
  opacity:.85;
}
@media (max-width: 640px){
  .page-titlebar{
    padding:24px 0 18px;
  }
  .page-titlebar__inner{
    padding:0 16px;
  }
}

/* ---------------- FULLSCREEN HERO SLIDER ---------------- */
.heroSlider--prota{
  position:relative;
  width:100%;
  height:100svh;
  min-height:660px;
  overflow:hidden;
  background:#0b1320;
  color:#fff;
  font-family:var(--font-main);
}
.heroSlider__track{
  position:relative;
  height:100%;
}
.heroSlide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity 1.05s ease, visibility 1.05s ease;
}
.heroSlide.is-active{
  opacity:1;
  visibility:visible;
}
.heroSlide.is-entering,
.heroSlide.is-leaving{
  visibility:visible;
}
.heroSlide__bg{
  position:absolute;
  inset:0;
  background-image:var(--slide-image);
  background-size:cover;
  background-position:center;
  transform:translate3d(0, 0, 0) scale(1.06);
  transition:transform 1.15s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.heroSlide.is-active .heroSlide__bg{
  transform:translate3d(0, 0, 0) scale(1);
}
.heroSlide.is-entering .heroSlide__bg{
  transform:translate3d(0, 14%, 0) scale(1.08);
}
.heroSlide.is-entering.is-active .heroSlide__bg{
  transform:translate3d(0, 0, 0) scale(1);
}
.heroSlide.is-leaving .heroSlide__bg{
  transform:translate3d(0, 12%, 0) scale(1.02);
}
.heroSlide__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,12,22,.62) 0%, rgba(7,12,22,.42) 48%, rgba(7,12,22,.2) 100%),
    radial-gradient(900px 480px at 12% 50%, rgba(15,30,58,.42), transparent 65%);
}
.heroSlide__content{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto;
  padding:120px 20px 108px;
  height:100%;
  display:flex;
  align-items:flex-end;
}
.heroSlide__left{
  max-width:780px;
  margin-bottom:10px;
}
.heroSlide__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:7px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.15);
  color:#d5dbe6;
  letter-spacing:1.4px;
  font-size:12px;
  text-transform:uppercase;
  font-weight:600;
}
.heroSlide__badge i{
  color:#f59e0b;
  font-size:8px;
}
.heroSlide__title{
  margin:0 0 16px;
  font-size:clamp(44px, 6.6vw, 82px);
  font-weight:700;
  line-height:1.08;
  text-transform:uppercase;
}
.heroSlide__desc{
  margin:0 0 34px;
  max-width:620px;
  color:rgba(255,255,255,.86);
  font-size:18px;
  line-height:1.6;
}
.heroSlide__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.heroSlide__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  border-radius:10px;
  min-height:52px;
  padding:14px 26px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.3px;
  border:1px solid transparent;
  transition:
    background-color .08s ease,
    border-color .08s ease,
    color .08s ease,
    box-shadow .08s ease,
    transform .08s ease,
    opacity .08s ease;
}
.heroSlide__btn--primary{
  background:#5b626c;
  border-color:#5b626c;
  color:#fff;
  box-shadow:0 10px 22px rgba(11,18,32,.28);
}
.heroSlide__btn--secondary{
  background:#ffffff;
  color:#132339;
}
.heroSlide__btn:hover{
  background:#0f5bd5;
  border-color:#0f5bd5;
  color:#fff;
  box-shadow:0 12px 28px rgba(15,91,213,.45);
  transform:translateY(-2px);
}
.heroSlide__btn{
  opacity:0;
  transform:translate3d(0, -24px, 0);
}
.heroSlide.is-active .heroSlide__btn{
  opacity:1;
  transform:translate3d(0, 0, 0);
}
.heroSlide.is-active .heroSlide__btn--primary{
  transition-delay:0s;
}
.heroSlide.is-active .heroSlide__btn--secondary{
  transition-delay:0s;
}
.heroSlider__bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:22px;
  max-width:1240px;
  margin:0 auto;
  padding:0 20px;
  z-index:4;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:16px;
  align-items:center;
}
.heroSlider__counter{
  display:flex;
  align-items:center;
  gap:7px;
  color:#fff;
  font-size:18px;
}
.heroSlider__progress{
  position:relative;
  height:2px;
  background:rgba(255,255,255,.26);
  overflow:hidden;
}
.heroSlider__bar{
  position:absolute;
  inset:0;
  transform:scaleX(0);
  transform-origin:left;
  background:rgba(255,255,255,.88);
}
.heroSlider__arrows{
  display:flex;
  gap:10px;
}
.heroSlider__arrow{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(0,0,0,.28);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  transition:all .2s ease;
}
.heroSlider__arrow:hover{
  background:#0f5bd5;
  border-color:#0f5bd5;
}

/* ---------------- HOME STATS ---------------- */
.home-stats{
  margin-top:-2px;
  background:linear-gradient(180deg, #0b1320 0%, #111b2f 100%);
  padding:30px 20px 44px;
}
.home-stats__inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}
.home-stats__card{
  background:rgba(30,41,59,.62);
  border:1px solid rgba(255,255,255,.07);
  border-radius:16px;
  padding:26px 24px;
  backdrop-filter:blur(8px);
}
.home-stats__card h4{
  margin:0 0 12px;
  color:#d6deeb;
  font-size:14px;
  font-weight:600;
}
.home-stats__num{
  margin-bottom:10px;
  color:#fff;
  font-size:42px;
  font-weight:700;
  line-height:1;
}
.home-stats__card p{
  margin:0;
  color:#a0aec0;
  font-size:12px;
  line-height:1.5;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px){
  .topbar--menu-open{
    background:#ffffff;
    border-bottom:1px solid rgba(15,23,42,.08);
    box-shadow:0 14px 30px rgba(0,0,0,.16);
  }
  .topbar__nav{display:none;}
  .topbar__burger{display:inline-block;}

  .topbar__inner{
    justify-content:center;
    position:relative;
  }
  .topbar__brand{margin:0 auto}
  .topbar__burger{
    position:absolute;
    left:14px;
    background:#ffffff;
    border-color:rgba(15,23,42,.16);
    box-shadow:0 8px 18px rgba(0,0,0,.12);
  }
  .topbar__burger span{
    background:#0f172a;
  }
  .topbar__right{
    position:absolute;
    right:14px;
    gap:8px;
  }
  .topbar__sustain,
  .topbar__langs,
  .topbar__theme{
    display:none;
  }
  .drawer{
    position:absolute;
    inset:auto 0 auto 0;
    top:100%;
    background:transparent;
    display:block;
    opacity:0;
    pointer-events:none;
    transform:translateY(-12px);
    transition:opacity .26s ease, transform .34s cubic-bezier(.22,.61,.36,1);
    z-index:45;
  }
  .drawer.is-open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
  .drawer__panel{
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    height:auto;
    max-height:0;
    overflow:hidden;
    padding:0 16px;
    border-left:0;
    border-top:1px solid rgba(15,23,42,.08);
    border-bottom:1px solid rgba(15,23,42,.1);
    border-radius:0 0 18px 18px;
    background:#ffffff;
    color:#0f172a;
    box-shadow:0 20px 34px rgba(0,0,0,.16);
    transition:max-height .42s cubic-bezier(.22,.61,.36,1), padding .32s ease;
  }
  .drawer.is-open .drawer__panel{
    max-height:min(78vh, 520px);
    overflow:auto;
    padding:10px 16px 16px;
  }
  .drawer__head{
    color:#0f172a;
    margin-bottom:8px;
  }
  .drawer__close{
    border-color:rgba(15,23,42,.18);
    background:#f3f6fb;
    color:#0f172a;
  }
  .drawer__link{
    color:#0f172a;
    border-color:rgba(15,23,42,.14);
    background:#ffffff;
  }
  .drawer__link.active{
    color:#0f5bd5;
    border-color:rgba(15,91,213,.32);
    background:rgba(15,91,213,.08);
  }
  .drawer__sustain{
    border-color:rgba(15,91,213,.38);
    background:rgba(15,91,213,.08);
    color:#0f5bd5;
    font-weight:700;
  }
  .drawer__langs{
    margin-bottom:12px;
  }
  .drawer__langBtn{
    border-color:rgba(15,23,42,.14);
    background:#f4f6fa;
    color:#0f172a;
  }
  .drawer__langBtn.is-active{
    border-color:#0f5bd5;
    color:#0f5bd5;
    background:rgba(15,91,213,.12);
  }
  .drawer__btn{
    border-color:#0f5bd5;
    background:#0f5bd5;
    color:#ffffff;
  }
  .drawer__themeToggle{
    border-color:rgba(15,23,42,.14);
    background:#f4f6fa;
    color:#0f172a;
  }
  .drawer__themeToggle.is-light{
    border-color:#0f5bd5;
    color:#0f5bd5;
    background:rgba(15,91,213,.12);
  }
  .topbar--menu-open .topbar__burger{
    background:#ffffff;
    border-color:rgba(15,23,42,.22);
    box-shadow:0 10px 20px rgba(0,0,0,.18);
  }
  .topbar--menu-open .topbar__burger span{
    background:#0f172a;
  }
  .heroSlider--prota{
    min-height:620px;
  }
  .heroSlide__content{
    padding-top:108px;
    padding-bottom:104px;
  }
  .heroSlide__title{
    font-size:56px;
  }
  .heroSlide__desc{
    font-size:16px;
  }
  .home-stats__inner{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .topbar__inner{padding:0 14px}
  .heroSlider--prota{
    min-height:560px;
  }
  .heroSlide__content{
    padding:130px 16px 126px;
    align-items:flex-end;
  }
  .heroSlide__left{
    width:100%;
    max-width:none;
  }
  .heroSlide__title{
    font-size:34px;
  }
  .heroSlide__desc{
    font-size:14px;
    margin-bottom:16px;
  }
  .heroSlide__buttons{
    width:100%;
    gap:12px;
  }
  .heroSlide__btn{
    width:100%;
    min-height:56px;
  }
  .heroSlider__bottom{
    padding:0 16px;
    bottom:20px;
  }
  .heroSlider__counter{
    font-size:14px;
  }
  .heroSlider__arrow{
    width:38px;
    height:38px;
    font-size:18px;
  }
  .home-stats{
    padding:22px 16px 28px;
  }
  .home-stats__inner{
    grid-template-columns:1fr;
    gap:12px;
  }
  .home-stats__num{
    font-size:34px;
  }
}

@media (prefers-reduced-motion: reduce){
  .topbar__logo{transition:none}
  .splash{transition:none}
  .splash.is-animating .splash__logo{transition:none}
  .heroSlide,
  .heroSlide__bg,
  .heroSlide__btn,
  .home-stats__card{
    transition:none !important;
  }
}

/* ---------------- HOME PROTA HERO ---------------- */
.home-prota-hero{
  position:relative;
  background:#f4f8fb;
  border-bottom:2px solid #eef2f5;
  padding:82px 20px 102px;
  overflow:hidden;
  font-family:var(--font-main);
}
.home-prota-hero__lightning{
  position:absolute;
  top:0;
  right:0;
  width:350px;
  height:450px;
  background-image:url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=600&q=80");
  background-size:cover;
  background-position:center;
  clip-path:polygon(40% 0, 100% 0, 100% 50%, 75% 50%, 90% 100%, 25% 45%, 55% 45%);
  z-index:1;
  opacity:.9;
}
.home-prota-hero__skyline{
  position:absolute;
  right:0;
  bottom:0;
  width:60%;
  height:200px;
  z-index:1;
  opacity:.5;
  pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200' preserveAspectRatio='none'><path fill='%23e1e8ed' d='M0,200 L1000,200 L1000,150 L950,150 L950,80 L900,80 L900,130 L850,130 L850,50 L750,50 L750,120 L700,120 L700,90 L650,90 L650,140 L600,140 L600,30 L500,30 L500,100 L450,100 L450,60 L400,60 L400,150 L350,150 L350,110 L250,110 L250,160 L200,160 L200,90 L150,90 L150,140 L50,140 L50,180 L0,180 Z'/></svg>");
  background-size:cover;
  background-position:bottom;
}
.home-prota-hero__container{
  max-width:1280px;
  margin:0 auto;
  position:relative;
  z-index:2;
}
.home-prota-hero__headline{
  text-align:center;
  max-width:900px;
  margin:0 auto 60px;
  color:#0b2b53;
  font-size:clamp(30px,4vw,46px);
  line-height:1.28;
  font-weight:700;
}
.home-prota-hero__grid{
  display:flex;
  align-items:center;
  gap:50px;
}
.home-prota-hero__visual{
  flex:1;
  text-align:center;
}
.home-prota-hero__visual img{
  width:100%;
  max-width:500px;
  height:auto;
  border-radius:16px;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,.08));
}
.home-prota-hero__content{
  flex:1.1;
}
.home-prota-hero__description{
  margin:0 0 30px;
  color:#5a6b7c;
  font-size:15px;
  line-height:1.8;
}
.home-prota-hero__description strong{
  color:#0b2b53;
}
.home-prota-hero__featuresWrap{
  display:flex;
  align-items:center;
  gap:30px;
  margin-bottom:40px;
}
.home-prota-hero__experience{
  min-width:140px;
  border-radius:12px;
  padding:25px 20px;
  text-align:center;
  color:#ffffff;
  background:linear-gradient(135deg, #f8981d 0%, #f37321 100%);
  box-shadow:0 10px 25px rgba(243,115,33,.3);
}
.home-prota-hero__experienceNumber{
  display:block;
  margin-bottom:5px;
  font-size:48px;
  line-height:1;
  font-weight:700;
}
.home-prota-hero__experienceText{
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
}
.home-prota-hero__featureList{
  margin:0;
  padding:0;
  list-style:none;
}
.home-prota-hero__featureList li{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:15px;
  color:#0b2b53;
  font-size:15px;
  font-weight:600;
}
.home-prota-hero__featureList i{
  color:#0b2b53;
  font-size:18px;
}
.home-prota-hero__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  border-radius:999px;
  padding:16px 32px;
  font-size:15px;
  font-weight:600;
  color:#ffffff;
  background:#0b2b53;
  box-shadow:0 8px 20px rgba(11,43,83,.2);
  transition:all .3s ease;
}
.home-prota-hero__btn:hover{
  background:#0f3d75;
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(11,43,83,.3);
}

@media (max-width: 992px){
  .home-prota-hero{
    padding-bottom:88px;
  }
  .home-prota-hero__grid{
    flex-direction:column;
  }
  .home-prota-hero__headline{
    margin-bottom:42px;
  }
  .home-prota-hero__lightning{
    opacity:.3;
    width:250px;
    height:350px;
  }
}

@media (max-width: 576px){
  .home-prota-hero{
    padding:62px 16px 72px;
  }
  .home-prota-hero__featuresWrap{
    flex-direction:column;
    align-items:flex-start;
  }
  .home-prota-hero__experience{
    width:100%;
  }
}

/* ---------------- HOME PDF CTA ---------------- */
.home-pdf-cta{
  padding:36px 20px 12px;
  background:#f8fafc;
}
.home-pdf-cta__inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:linear-gradient(135deg, #0263e0 0%, #004ab3 100%);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(2,99,224,.2);
}
.home-pdf-cta__text{
  padding:80px 60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.home-pdf-cta__subtitle{
  display:block;
  margin-bottom:20px;
  color:#34d399;
  font-size:1rem;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.home-pdf-cta__title{
  margin:0;
  color:#ffffff;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.2;
}
.home-pdf-cta__media{
  position:relative;
  min-height:400px;
}
.home-pdf-cta__image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.home-pdf-cta__download{
  position:absolute;
  top:0;
  right:0;
  width:220px;
  height:220px;
  padding:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  text-decoration:none;
  color:#ffffff;
  background:rgba(2,99,224,.86);
  border-bottom-left-radius:24px;
  box-shadow:-10px 10px 30px rgba(0,0,0,.18);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.home-pdf-cta__download i{
  font-size:2.4rem;
  transition:transform .25s ease;
}
.home-pdf-cta__download span{
  font-size:1.02rem;
  line-height:1.35;
  letter-spacing:.5px;
  font-weight:700;
}
.home-pdf-cta__download:hover{
  background:rgba(0,74,179,.96);
  transform:scale(1.05);
  box-shadow:-14px 14px 38px rgba(0,0,0,.26);
}
.home-pdf-cta__download:hover i{
  transform:translateY(4px);
}

@media (max-width: 992px){
  .home-pdf-cta__text{
    padding:60px 40px;
  }
  .home-pdf-cta__download{
    width:182px;
    height:182px;
  }
  .home-pdf-cta__download span{
    font-size:.9rem;
  }
}
@media (max-width: 768px){
  .home-pdf-cta{
    padding:28px 16px 8px;
  }
  .home-pdf-cta__inner{
    grid-template-columns:1fr;
  }
  .home-pdf-cta__media{
    min-height:340px;
  }
  .home-pdf-cta__download{
    top:auto;
    bottom:0;
    border-bottom-left-radius:0;
    border-top-left-radius:24px;
  }
}

/* ---------------- PREMIUM HOME STATS AREA ---------------- */
.premium-section{
  width:100%;
  padding:72px 20px 64px;
  box-sizing:border-box;
  background:
    radial-gradient(820px 420px at 10% -10%, rgba(14,165,233,.14), transparent 60%),
    radial-gradient(900px 420px at 90% -12%, rgba(37,99,235,.14), transparent 62%),
    #111827;
}
.premium-section__inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
.premium-section__title{
  margin:0 0 24px;
  text-align:center;
  color:#f3f4f6;
  font-size:clamp(30px,4vw,46px);
  line-height:1.16;
}
.map-wrapper{
  position:relative;
  width:100%;
  max-width:1000px;
  margin:0 auto 48px;
  background:#1e293b;
  border-radius:16px;
  padding:20px;
  box-sizing:border-box;
  box-shadow:0 24px 48px rgba(0,0,0,.35);
}
.world-map{
  width:100%;
  height:auto;
  display:block;
  opacity:.82;
  border-radius:12px;
}
.map-marker{
  position:absolute;
  left:var(--x);
  top:var(--y);
  width:12px;
  height:12px;
  padding:0;
  background:#0ea5e9;
  border:2px solid #ffffff;
  border-radius:999px;
  transform:translate(-50%, -50%);
  cursor:pointer;
  z-index:10;
  outline:none;
}
.map-marker::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:30px;
  height:30px;
  background:rgba(14,165,233,.4);
  border-radius:50%;
  transform:translate(-50%, -50%);
  animation:mapPulse 2s infinite;
  z-index:-1;
}
.map-tooltip{
  position:absolute;
  bottom:150%;
  left:50%;
  transform:translateX(-50%) translateY(10px);
  background:#ffffff;
  color:#0f172a;
  padding:8px 16px;
  border-radius:8px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  font-size:.9rem;
  white-space:nowrap;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
  pointer-events:none;
}
.map-tooltip::after{
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  border-width:6px;
  border-style:solid;
  border-color:#ffffff transparent transparent transparent;
}
.map-tooltip img{
  width:auto;
  height:20px;
  object-fit:contain;
}
.map-marker:hover .map-tooltip,
.map-marker:focus-visible .map-tooltip,
.map-marker.is-active .map-tooltip{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:30px;
  text-align:center;
}
.stat-card{
  padding:20px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(17,24,39,.42);
  transition:transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 26px rgba(0,0,0,.26);
}
.stat-number{
  font-size:3.5rem;
  font-weight:700;
  background:linear-gradient(135deg, #0ea5e9, #2563eb);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:10px;
  display:inline-block;
  line-height:1;
}
.stat-label{
  font-size:.85rem;
  font-weight:600;
  color:#f3f4f6;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:5px;
  display:block;
}
@keyframes mapPulse{
  0%{transform:translate(-50%, -50%) scale(.5);opacity:1}
  100%{transform:translate(-50%, -50%) scale(2);opacity:0}
}

@media (max-width: 768px){
  .premium-section{
    padding:58px 16px 50px;
  }
  .stat-number{
    font-size:2.5rem;
  }
  .stats-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
  }
  .map-wrapper{
    padding:14px;
    margin-bottom:34px;
  }
  .map-tooltip{
    padding:7px 12px;
    font-size:.78rem;
    gap:8px;
  }
  .map-tooltip img{
    height:16px;
  }
}
@media (max-width: 560px){
  .stats-grid{
    grid-template-columns:1fr;
  }
}

/* ---------------- PREMIUM FOOTER ---------------- */
.footer{
  --footer-accent:#0f5bd5;
  --footer-accent-2:#2d7ff2;
  position:relative;
  background:
    radial-gradient(880px 420px at 10% -10%, rgba(15,91,213,.15), transparent 62%),
    radial-gradient(760px 360px at 92% 8%, rgba(45,127,242,.16), transparent 64%),
    #040506;
  color:#f5f8ff;
  border-top:1px solid rgba(255,255,255,.12);
  padding:64px 0 28px;
}
.footer__inner{
  max-width:1240px;
  margin:0 auto;
  padding:0 22px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr 1fr 1fr;
  gap:28px;
}
.footer__brandCol,
.footer__linksCol,
.footer__contactCol,
.footer__touchCol{
  min-width:0;
}
.footer__brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
}
.footer__logo{
  width:auto;
  display:block;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.5));
}
.footer__brandName{
  font-size:30px;
  font-weight:700;
  letter-spacing:.3px;
}
.footer__desc{
  margin:22px 0 0;
  max-width:30ch;
  color:rgba(255,255,255,.82);
  line-height:1.7;
  font-size:16px;
}
.footer__title{
  margin:0 0 18px;
  font-size:22px;
  line-height:1.12;
  font-weight:700;
  color:#ffffff;
}
.footer__linksCol,
.footer__contactCol{
  display:grid;
  align-content:start;
  gap:12px;
}
.footer__link{
  text-decoration:none;
  color:rgba(255,255,255,.86);
  font-size:18px;
  line-height:1.28;
  transition:color .22s ease, transform .22s ease;
}
.footer__link:hover{
  color:var(--footer-accent-2);
  transform:translateX(2px);
}
.footer__contactItem{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(255,255,255,.87);
  text-decoration:none;
  font-size:18px;
  line-height:1.35;
}
.footer__contactItem i{
  margin-top:3px;
  color:var(--footer-accent-2);
}
.footer__touchText{
  margin:0 0 12px;
  color:rgba(255,255,255,.84);
  line-height:1.6;
  font-size:18px;
}
.footer__contactBox{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  text-decoration:none;
  border:1px solid rgba(45,127,242,.85);
  border-radius:12px;
  padding:11px 18px;
  color:#ffffff;
  font-size:16px;
  font-weight:600;
  background:var(--footer-accent);
  box-shadow:0 10px 22px rgba(15,91,213,.26);
  transition:transform .22s ease, box-shadow .22s ease;
}
.footer__contactBox:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(15,91,213,.32);
}
.footer__bottom{
  margin-top:36px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.17);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.footer__bottom span{
  color:rgba(255,255,255,.8);
  font-size:14px;
}
.footer__socials{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer__social{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:#ffffff;
  color:#101828;
  display:grid;
  place-items:center;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}
.footer__social:hover{
  transform:translateY(-2px);
  background:var(--footer-accent);
  color:#ffffff;
}

@media (max-width: 1180px){
  .footer__grid{
    grid-template-columns:1fr 1fr;
    row-gap:32px;
  }
}
@media (max-width: 980px){
  .footer__brandName,
  .footer__title{
    font-size:20px;
  }
  .footer__link,
  .footer__contactItem,
  .footer__touchText{
    font-size:17px;
  }
}
@media (max-width: 760px){
  .footer{
    padding:48px 0 24px;
  }
  .footer__inner{
    padding:0 16px;
  }
  .footer__grid{
    grid-template-columns:1fr;
    gap:26px;
  }
  .footer__brandName,
  .footer__title{
    font-size:19px;
  }
  .footer__desc,
  .footer__link,
  .footer__contactItem,
  .footer__touchText{
    font-size:16px;
  }
  .footer__desc{
    max-width:none;
  }
  .footer__contactBox{
    width:100%;
  }
  .footer__bottom{
    margin-top:28px;
    padding-top:18px;
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ---------------- SERVICES PAGE ---------------- */
.services-premium{
  font-family:var(--font-main);
  background:#f8fafc;
  color:#334155;
  padding:60px 20px 80px;
}
.services-premium__container{
  max-width:1280px;
  margin:0 auto;
}
.services-premium__header{
  text-align:center;
  margin-bottom:50px;
}
.services-premium__title{
  margin:0;
  display:inline-block;
  position:relative;
  font-size:clamp(32px, 4vw, 44px);
  line-height:1.2;
  font-weight:700;
  color:#0f172a;
}
.services-premium__title::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-12px;
  width:60px;
  height:4px;
  border-radius:2px;
  background:#0ea5e9;
}
.services-premium__grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
  gap:24px;
}
.service-card{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:30px 24px;
  display:flex;
  align-items:center;
  gap:20px;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(15, 23, 42, .08);
  border-color:#bae6fd;
}
.icon-box{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  background:#f0f9ff;
  color:#0284c7;
  transition:transform .25s ease, background-color .25s ease, color .25s ease;
}
.service-card:hover .icon-box{
  background:#0ea5e9;
  color:#ffffff;
  transform:scale(1.05);
}
.service-title{
  margin:0;
  font-size:1.05rem;
  font-weight:600;
  line-height:1.4;
  color:#1e293b;
}
.service-card.highlighted{
  background:linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  border:none;
}
.service-card.highlighted .service-title{
  color:#ffffff;
}
.service-card.highlighted .icon-box{
  background:rgba(255, 255, 255, .2);
  color:#ffffff;
}
.service-card.highlighted:hover{
  box-shadow:0 15px 30px rgba(2, 132, 199, .3);
}
@media (max-width: 640px){
  .services-premium{
    padding:44px 14px 56px;
  }
  .services-premium__header{
    margin-bottom:36px;
  }
  .services-premium__grid{
    gap:16px;
  }
  .service-card{
    padding:22px 18px;
    gap:14px;
  }
}

.services{
  background:var(--bg);
  color:var(--text);
}
.services-hero{
  position:relative;
  padding:56px 0 70px;
  overflow:hidden;
}
.services-hero::before{
  content:"";
  position:absolute;
  inset:-20% 0 0 0;
  background:
    radial-gradient(500px 260px at 15% 20%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(600px 260px at 85% 10%, rgba(255,255,255,.05), transparent 60%);
  pointer-events:none;
}
.services-hero__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
.services-hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  color:var(--muted);
  margin-bottom:14px;
}
.services-hero__title{
  font-size:clamp(32px, 5vw, 62px);
  margin:0 0 12px;
  font-weight:500;
}
.services-hero__lead{
  max-width:680px;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
  margin:0 0 22px;
}
.services-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.services-chip{
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
  background:var(--panel);
}
.services-hero__panel{
  max-width:1200px;
  margin:28px auto 0;
  padding:20px 20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.services-panelTitle{
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--muted);
}
.services-panelText{
  max-width:520px;
  color:var(--muted);
  line-height:1.6;
  margin:8px 0 0;
}
.services-hero__cta{
  text-decoration:none;
  border:1px solid var(--line);
  padding:10px 16px;
  border-radius:999px;
  color:var(--text);
  background:var(--panel);
  white-space:nowrap;
}
.services-section{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px 70px;
}
.services-section__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}
.services-section__head h2{
  margin:0;
  font-size:24px;
  font-weight:500;
}
.services-section__head p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.services-matrix{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:0;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:var(--panel);
}
.services-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  min-height:72px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  color:var(--text);
  font-size:13px;
  background:transparent;
  transition:background .2s ease, color .2s ease;
}
.services-item:nth-child(4n){border-right:none}
.services-item:nth-last-child(-n+4){border-bottom:none}
.services-item__title{line-height:1.4}
.services-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#0f5bd5;
  background:rgba(15,91,213,.10);
  flex:0 0 40px;
}
.services-icon svg{width:22px;height:22px}
.services-item.is-featured{
  background:#0f5bd5;
  color:#fff;
}
.services-item.is-featured .services-icon{
  background:rgba(255,255,255,.2);
  color:#fff;
}
.services-item:hover{
  background:var(--panel-2);
}
.services-section--split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.services-panel{
  border:1px solid var(--line);
  border-radius:16px;
  padding:22px;
  background:var(--panel);
}
.services-panel h3{
  margin:0 0 10px;
  font-size:18px;
}
.services-panel p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.7;
}
.services-list{
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}
.services-panel--accent{
  background:linear-gradient(140deg, rgba(175,35,35,.28), rgba(0,0,0,.4));
  border-color:rgba(175,35,35,.45);
}
.services-link{
  color:var(--text);
  text-decoration:none;
  border-bottom:1px solid var(--line);
  display:inline-block;
  padding-bottom:4px;
}
.services-section--cta{
  padding-bottom:90px;
}
.services-cta{
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  background:var(--panel);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}
.services-cta h3{
  margin:0 0 6px;
  font-size:20px;
}
.services-cta p{
  margin:0;
  color:var(--muted);
}
.services-cta__btn{
  text-decoration:none;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--text);
  white-space:nowrap;
}

@media (max-width: 980px){
  .services-matrix{grid-template-columns:repeat(2, minmax(0,1fr))}
  .services-item:nth-child(4n){border-right:1px solid var(--line)}
  .services-item:nth-child(2n){border-right:none}
  .services-item:nth-last-child(-n+4){border-bottom:1px solid var(--line)}
  .services-item:nth-last-child(-n+2){border-bottom:none}
  .services-section__head{flex-direction:column;align-items:flex-start}
  .services-hero__panel{flex-direction:column;align-items:flex-start}
  .services-section--split{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .services-hero{padding-top:44px}
  .services-matrix{grid-template-columns:1fr}
  .services-item{border-right:none}
  .services-item:nth-last-child(-n+2){border-bottom:1px solid var(--line)}
  .services-item:last-child{border-bottom:none}
  .services-cta{flex-direction:column;align-items:flex-start}
}

/* ---------------- REFERENCES PAGE ---------------- */
.references{
  position:relative;
  isolation:isolate;
  background:
    radial-gradient(900px 460px at 8% 0%, rgba(72,110,190,.18), transparent 62%),
    radial-gradient(880px 500px at 92% 4%, rgba(190,150,72,.13), transparent 64%),
    var(--bg);
  color:var(--text);
  font-family:var(--font-main);
  padding-bottom:90px;
}
.references::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02) 0%, transparent 16%),
    repeating-linear-gradient(
      90deg,
      transparent 0 58px,
      rgba(255,255,255,.018) 58px 59px
    );
  opacity:.65;
  pointer-events:none;
  z-index:-1;
}
.references-hero{
  padding:58px 0 56px;
  position:relative;
}
.references-hero::before{
  content:"";
  position:absolute;
  inset:-18% 0 0 0;
  background:
    radial-gradient(520px 290px at 15% 20%, rgba(255,255,255,.08), transparent 62%),
    radial-gradient(680px 330px at 85% 10%, rgba(255,255,255,.06), transparent 64%);
  pointer-events:none;
}
.references-hero__inner{
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}
.references-hero__eyebrowWrap{
  display:flex;
  align-items:center;
  gap:14px;
}
.references-hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:2.6px;
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
}
.references-hero__rule{
  flex:1;
  height:1px;
  background:linear-gradient(90deg, var(--line), transparent 82%);
}
.references-hero__layout{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:28px;
  margin-top:18px;
}
.references-hero__title{
  margin:0 0 14px;
  font-family:var(--font-main);
  font-size:clamp(36px, 5vw, 72px);
  line-height:1.03;
  font-weight:500;
  letter-spacing:.2px;
  max-width:12ch;
}
.references-hero__lead{
  margin:0 0 26px;
  max-width:680px;
  color:var(--muted);
  line-height:1.88;
  font-size:15px;
}
.references-hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.references-hero__btn{
  text-decoration:none;
  font-size:13px;
  letter-spacing:.3px;
  padding:12px 17px;
  border-radius:999px;
  border:1px solid var(--line);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.references-hero__btn--solid{
  color:#0e0e0e;
  border-color:rgba(215,193,137,.72);
  background:linear-gradient(135deg, #f3ebd2 0%, #ddc78f 55%, #c9ab64 100%);
  box-shadow:0 10px 28px rgba(0,0,0,.28);
}
.references-hero__btn--ghost{
  color:var(--text);
  background:var(--panel);
}
.references-hero__btn:hover{
  transform:translateY(-2px);
}
.references-hero__btn--ghost:hover{
  border-color:var(--panel-strong);
  background:var(--panel-2);
}
.references-kpis{
  align-self:stretch;
  border:1px solid var(--line);
  border-radius:20px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.075) 0%, rgba(255,255,255,.02) 46%, rgba(0,0,0,.26) 100%),
    var(--panel);
  backdrop-filter:blur(4px);
  display:grid;
  grid-template-columns:1fr;
  overflow:hidden;
}
.references-kpi{
  padding:18px 20px;
  border-bottom:1px solid var(--line);
}
.references-kpi:last-child{border-bottom:none}
.references-kpi__label{
  font-size:11px;
  letter-spacing:1.7px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}
.references-kpi__value{
  font-family:var(--font-main);
  font-size:clamp(28px, 3vw, 40px);
  line-height:1;
  letter-spacing:.5px;
}
.references-grid{
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}
.references-grid__inner{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
}
.references-empty{
  border:1px dashed var(--line);
  border-radius:20px;
  padding:26px;
  color:var(--muted);
  background:var(--panel);
}
.ref-card{
  position:relative;
  background:
    linear-gradient(160deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 45%, rgba(0,0,0,.28) 100%),
    var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  opacity:0;
  transform:translate3d(-46px, 0, 0);
  animation:refCardFlow .74s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay:calc(var(--ref-order, 0) * 90ms);
}
.ref-card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:2px;
  background:linear-gradient(90deg, rgba(82,129,255,.65), rgba(215,193,137,.66));
  opacity:.44;
}
.ref-card:hover{
  transform:translateY(-6px);
  border-color:var(--panel-strong);
  box-shadow:0 18px 44px rgba(0,0,0,.26);
}
.ref-card__media{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  margin:12px 12px 0;
  background:var(--panel-2);
  aspect-ratio:4/3;
}
.ref-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .8s cubic-bezier(.2,.65,.2,1);
}
.ref-card:hover .ref-card__media img{
  transform:scale(1.04);
}
.ref-card__media.is-empty{
  display:flex;
  align-items:center;
  justify-content:center;
}
.ref-card__index{
  position:absolute;
  left:10px;
  top:10px;
  z-index:2;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  font-size:10px;
  letter-spacing:1.3px;
  color:rgba(255,255,255,.88);
  background:rgba(0,0,0,.38);
  backdrop-filter:blur(3px);
}
.ref-card__placeholder{
  color:var(--muted);
  font-size:12px;
}
.ref-card__body{
  padding:16px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:11px;
}
.ref-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.ref-card__chip{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:11px;
  letter-spacing:.4px;
  background:var(--panel);
}
.ref-card__title{
  margin:0;
  font-family:var(--font-main);
  font-size:31px;
  font-weight:500;
  line-height:1.08;
  letter-spacing:.2px;
}
.ref-card__summary{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:13px;
}
.ref-card__link{
  margin-top:auto;
  text-decoration:none;
  color:var(--text);
  font-size:13px;
  border:1px solid var(--line);
  background:var(--panel);
  border-radius:999px;
  padding:9px 14px;
  display:inline-flex;
  align-self:flex-start;
  transition:background .22s ease, border-color .22s ease, transform .22s ease;
}
.ref-card__link::after{
  content:"\2192";
  margin-left:8px;
  font-size:12px;
  transform:translateX(0);
  transition:transform .2s ease;
}
.ref-card__link:hover{
  background:var(--panel-2);
  border-color:var(--panel-strong);
  transform:translateY(-1px);
}
.ref-card__link:hover::after{
  transform:translateX(2px);
}

.ref-card.is-lead{
  grid-column:span 2;
}
.ref-card.is-lead .ref-card__media{
  aspect-ratio:16/8.4;
}
.ref-card.is-lead .ref-card__title{
  font-size:clamp(34px, 3vw, 46px);
}
@keyframes refCardFlow{
  from{
    opacity:0;
    transform:translate3d(-46px, 0, 0);
  }
  to{
    opacity:1;
    transform:translate3d(0, 0, 0);
  }
}

@media (max-width: 980px){
  .references-hero__layout{
    grid-template-columns:1fr;
    gap:16px;
  }
  .references-kpis{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
  .references-kpi{
    border-right:1px solid var(--line);
    border-bottom:none;
  }
  .references-kpi:last-child{border-right:none}
  .references-grid__inner{grid-template-columns:repeat(2, minmax(0,1fr))}
  .ref-card.is-lead{grid-column:span 2}
}

@media (max-width: 640px){
  .references-hero{
    padding-top:44px;
    padding-bottom:44px;
  }
  .references-hero__inner,
  .references-grid{
    padding-left:16px;
    padding-right:16px;
  }
  .references-hero__title{
    max-width:none;
    font-size:44px;
  }
  .references-hero__lead{
    font-size:14px;
    line-height:1.78;
    margin-bottom:20px;
  }
  .references-hero__btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }
  .references-kpis{
    grid-template-columns:1fr;
  }
  .references-kpi{
    border-right:none;
    border-bottom:1px solid var(--line);
  }
  .references-kpi:last-child{border-bottom:none}
  .references-grid__inner{grid-template-columns:1fr}
  .ref-card.is-lead{grid-column:span 1}
  .ref-card.is-lead .ref-card__media{aspect-ratio:4/3}
  .ref-card__title{font-size:29px}
  .ref-card.is-lead .ref-card__title{font-size:33px}
}
@media (prefers-reduced-motion: reduce){
  .ref-card{
    opacity:1;
    transform:none;
    animation:none;
  }
}

/* ---------------- REFERENCES PAGE (PREMIUM CARDS) ---------------- */
.references-premium{
  font-family:var(--font-main);
  background:#f8fafc;
  padding:42px 0 66px;
  color:#1e293b;
}
.references-premium__container{
  max-width:1240px;
  margin:0 auto;
  padding:0 20px;
}
.references-premium__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:30px;
}
.references-premium__card{
  background:#ffffff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(15, 23, 42, 0.05);
  transition:transform .3s ease, box-shadow .3s ease;
  opacity:0;
  transform:translateX(-60px);
  animation:referencesCardIn 1.25s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay:calc(.2s + (var(--card-index, 0) * .24s));
}
.references-premium__card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(15, 23, 42, 0.1);
}
.references-premium__image{
  width:100%;
  height:220px;
  object-fit:cover;
  border-bottom:1px solid #f1f5f9;
  display:block;
}
.references-premium__content{
  padding:24px;
  text-align:center;
}
.references-premium__title{
  margin:0 0 12px;
  font-size:1.25rem;
  font-weight:600;
  color:#1e293b;
}
.references-premium__description{
  margin:0 0 24px;
  font-size:.95rem;
  color:#64748b;
  line-height:1.6;
  min-height:48px;
}
.references-premium__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  box-sizing:border-box;
  padding:14px 20px;
  border-radius:8px;
  border:none;
  text-decoration:none;
  cursor:pointer;
  color:#ffffff;
  font-size:1rem;
  font-weight:500;
  background:linear-gradient(135deg, #0056b3 0%, #007bff 100%);
  transition:background .3s ease, box-shadow .3s ease;
}
.references-premium__btn:hover{
  background:linear-gradient(135deg, #004494 0%, #0069d9 100%);
  box-shadow:0 4px 12px rgba(0,123,255,.3);
}
.references-premium__btn i{
  font-size:1.1rem;
}
@keyframes referencesCardIn{
  0%{
    opacity:0;
    transform:translateX(-60px);
  }
  100%{
    opacity:1;
    transform:translateX(0);
  }
}
@media (max-width: 640px){
  .references-premium{
    padding:30px 0 50px;
  }
  .references-premium__container{
    padding:0 14px;
  }
  .references-premium__grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .references-premium__content{
    padding:18px;
  }
}
@media (prefers-reduced-motion: reduce){
  .references-premium__card{
    opacity:1;
    transform:none;
    animation:none;
    transition:none;
  }
}

/* ---------------- ABOUT PAGE ---------------- */
.about-premium{
  --about-blue:#0f5bd5;
  --about-blue-soft:#e9f1ff;
  --about-text:#101828;
  --about-muted:#5a667a;
  background:#f3f6fa;
  color:var(--about-text);
  padding:56px 0 88px;
  overflow:hidden;
}
.about-premium__container{
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  gap:70px;
}
.about-premium [data-reveal]{
  opacity:0;
  transform:translate3d(-46px,0,0);
}
.about-premium [data-reveal].is-visible{
  animation:aboutReveal .78s cubic-bezier(.2,.75,.2,1) forwards;
  animation-delay:var(--reveal-delay, 0ms);
}
@keyframes aboutReveal{
  from{
    opacity:0;
    transform:translate3d(-46px,0,0);
  }
  to{
    opacity:1;
    transform:translate3d(0,0,0);
  }
}

.about-premium__top{
  display:grid;
  grid-template-columns:minmax(430px, .92fr) minmax(0, 1.08fr);
  gap:44px;
  align-items:center;
}
.about-premium__media{
  position:relative;
  min-height:640px;
}
.about-premium__mainPhoto{
  margin:0;
  width:min(480px, 100%);
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 20px 38px rgba(16,24,40,.2);
}
.about-premium__mainPhoto img{
  width:100%;
  height:640px;
  object-fit:cover;
  display:block;
}
.about-premium__sinceCard{
  position:absolute;
  right:8px;
  top:22px;
  width:156px;
  border-radius:20px;
  padding:18px 16px;
  background:#0a418f;
  color:#fff;
  display:grid;
  gap:7px;
  box-shadow:0 14px 28px rgba(15,91,213,.35);
}
.about-premium__sinceCard span{
  font-size:12px;
  letter-spacing:.8px;
  text-transform:uppercase;
  opacity:.85;
}
.about-premium__sinceCard strong{
  font-size:28px;
  line-height:1;
}
.about-premium__sinceCard small{
  font-size:12px;
  line-height:1.45;
  color:rgba(255,255,255,.86);
}
.about-premium__statsCard{
  position:absolute;
  left:50%;
  transform:translateX(-16%);
  bottom:-10px;
  width:min(300px, 92%);
  border-radius:34px;
  padding:28px 28px;
  background:#dcebff;
  border:1px solid rgba(15,91,213,.14);
  box-shadow:0 20px 36px rgba(15,91,213,.18);
}
.about-premium__statItem{
  display:grid;
  gap:8px;
}
.about-premium__statItem i{
  color:var(--about-blue);
  font-size:24px;
}
.about-premium__statItem strong{
  font-size:48px;
  line-height:1;
  letter-spacing:-1.2px;
  color:#0e2f67;
}
.about-premium__statItem span{
  color:#425270;
  font-size:16px;
}
.about-premium__statDivider{
  height:1px;
  background:rgba(15,91,213,.22);
  margin:22px 0;
}

.about-premium__content{
  display:grid;
  gap:18px;
}
.about-premium__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-size:13px;
  color:#28425f;
}
.about-premium__eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--about-blue);
}
.about-premium__title{
  margin:0;
  font-size:clamp(34px, 4.2vw, 60px);
  line-height:1.08;
  font-weight:700;
  max-width:15ch;
}
.about-premium__title span{
  color:var(--about-blue);
}
.about-premium__lead{
  margin:0;
  color:var(--about-muted);
  line-height:1.8;
  font-size:18px;
  max-width:62ch;
}
.about-premium__list{
  list-style:none;
  margin:4px 0 0;
  padding:0;
  display:grid;
  gap:11px;
}
.about-premium__list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#223246;
  font-size:17px;
}
.about-premium__list i{
  color:var(--about-blue);
  margin-top:2px;
}
.about-premium__mini{
  margin-top:2px;
  border:1px solid rgba(15,91,213,.14);
  background:#fff;
  border-radius:999px;
  padding:7px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.about-premium__miniCard{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  padding:11px 14px;
}
.about-premium__miniCard i{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:var(--about-blue-soft);
  color:var(--about-blue);
}
.about-premium__miniCard p{
  margin:0;
  color:#24344a;
  line-height:1.45;
  font-size:14px;
}
.about-premium__ctaRow{
  margin-top:6px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.about-premium__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 24px;
  border-radius:14px;
  border:1px solid rgba(15,91,213,.2);
  text-decoration:none;
  color:#fff;
  font-weight:600;
  background:linear-gradient(135deg, #0f5bd5 0%, #0a418f 100%);
  transition:transform .2s ease, box-shadow .2s ease;
}
.about-premium__btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(15,91,213,.28);
}
.about-premium__phone{
  display:inline-flex;
  align-items:center;
  gap:9px;
  text-decoration:none;
  color:#15325d;
  font-weight:600;
}
.about-premium__phone i{
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  background:#0a418f;
}

.about-premium__bottom{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(420px, .92fr);
  gap:36px;
  align-items:center;
}
.about-premium__missionCol{
  display:grid;
  gap:16px;
}
.about-premium__box{
  margin:0;
  border:1px solid rgba(15,91,213,.14);
  border-radius:26px;
  padding:28px 30px;
  background:#fff;
  box-shadow:0 8px 18px rgba(15,91,213,.07);
}
.about-premium__box h3{
  margin:0 0 12px;
  font-size:34px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#173660;
  font-family:var(--font-main);
}
.about-premium__box h3 i{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:var(--about-blue-soft);
  color:var(--about-blue);
  font-size:21px;
}
.about-premium__box p{
  margin:0;
  color:var(--about-muted);
  line-height:1.82;
  font-size:20px;
}

.about-premium__imageCol{
  position:relative;
  min-height:620px;
}
.about-premium__photo{
  margin:0;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 16px 32px rgba(16,24,40,.2);
}
.about-premium__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.about-premium__photo--top{
  width:78%;
  margin-left:auto;
  height:250px;
}
.about-premium__photo--bottom{
  position:absolute;
  left:0;
  top:195px;
  width:86%;
  height:400px;
}
.about-premium__badge{
  position:absolute;
  right:4px;
  bottom:18px;
  width:158px;
  height:158px;
  border-radius:999px;
  border:7px solid #f3f6fa;
  background:#dcebff;
  color:#13407f;
  box-shadow:0 14px 28px rgba(15,91,213,.22);
  display:grid;
  place-items:center;
  text-align:center;
  padding:16px;
}
.about-premium__badge span{
  display:block;
  font-size:13px;
  letter-spacing:.55px;
  line-height:1.4;
}

@media (max-width: 1120px){
  .about-premium__top,
  .about-premium__bottom{
    grid-template-columns:1fr;
  }
  .about-premium__media{
    min-height:700px;
  }
  .about-premium__mainPhoto{
    width:100%;
  }
  .about-premium__statsCard{
    left:auto;
    right:8px;
    transform:none;
  }
  .about-premium__imageCol{
    min-height:620px;
  }
}
@media (max-width: 760px){
  .about-premium{
    padding:40px 0 70px;
  }
  .about-premium__container{
    padding:0 16px;
    gap:52px;
  }
  .about-premium__media{
    min-height:560px;
  }
  .about-premium__mainPhoto img{
    height:460px;
  }
  .about-premium__sinceCard{
    width:138px;
    top:10px;
    right:0;
  }
  .about-premium__statsCard{
    width:86%;
    right:0;
    bottom:0;
    padding:22px;
  }
  .about-premium__statItem strong{
    font-size:38px;
  }
  .about-premium__title{
    font-size:40px;
  }
  .about-premium__lead{
    font-size:16px;
  }
  .about-premium__list li{
    font-size:15px;
  }
  .about-premium__mini{
    border-radius:22px;
    grid-template-columns:1fr;
  }
  .about-premium__miniCard{
    border-radius:14px;
  }
  .about-premium__box{
    padding:20px;
  }
  .about-premium__box h3{
    font-size:28px;
  }
  .about-premium__box p{
    font-size:18px;
  }
  .about-premium__imageCol{
    min-height:510px;
  }
  .about-premium__photo--top{
    width:82%;
    height:190px;
  }
  .about-premium__photo--bottom{
    top:150px;
    width:94%;
    height:320px;
  }
  .about-premium__badge{
    width:124px;
    height:124px;
    right:0;
    bottom:0;
  }
  .about-premium__badge span{
    font-size:11px;
  }
}

/* ---------------- SUSTAINABILITY PAGE ---------------- */
.sustainability-page{
  background:var(--bg);
  color:var(--text);
  padding-bottom:84px;
}
.sustainability-hero{
  position:relative;
  padding:142px 0 50px;
}
.sustainability-hero::before{
  content:"";
  position:absolute;
  inset:-16% 0 0 0;
  background:
    radial-gradient(560px 280px at 14% 16%, rgba(92,156,132,.2), transparent 62%),
    radial-gradient(760px 360px at 86% 8%, rgba(215,193,137,.16), transparent 64%);
  pointer-events:none;
}
.sustainability-hero__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
.sustainability-hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  color:rgba(133,214,172,.88);
  margin-bottom:10px;
}
.sustainability-hero__title{
  margin:0 0 12px;
  max-width:14ch;
  font-size:clamp(34px, 5vw, 66px);
  line-height:1.05;
  font-family:var(--font-main);
  font-weight:500;
}
.sustainability-hero__lead{
  margin:0;
  max-width:720px;
  color:var(--muted);
  line-height:1.8;
}
.sustainability-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.sustainability-card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  background:
    linear-gradient(160deg, rgba(133,214,172,.16) 0%, rgba(255,255,255,.03) 54%, rgba(0,0,0,.3) 100%),
    var(--panel);
}
.sustainability-card h2{
  margin:0 0 10px;
  font-size:21px;
  font-family:var(--font-main);
  font-weight:500;
}
.sustainability-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:14px;
}

@media (max-width: 980px){
  .about-content,
  .sustainability-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .about-hero,
  .sustainability-hero{
    padding-top:46px;
  }
  .about-hero__inner,
  .about-content,
  .sustainability-hero__inner,
  .sustainability-grid{
    padding-left:16px;
    padding-right:16px;
  }
}

/* ---------------- CONTACT PAGE ---------------- */
.contact-premium{
  background:#f4f6f8;
  color:#1e2a3a;
  padding:56px 20px 88px;
}
.contact-premium__inner{
  max-width:1280px;
  margin:0 auto;
}
.contact-premium__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.contact-premium__formCard,
.contact-premium__infoCard{
  border-radius:26px;
  background:#e9edf1;
  padding:34px 38px;
}
.contact-premium__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:13px;
  font-weight:600;
  color:#091528;
}
.contact-premium__eyebrow span{
  width:9px;
  height:9px;
  border-radius:999px;
  background:#0f5bd5;
}
.contact-premium__title{
  margin:14px 0 16px;
  line-height:1.08;
  font-size:clamp(34px, 4vw, 58px);
  font-weight:700;
  color:#0a1424;
}
.contact-premium__title em{
  color:#0f5bd5;
  font-style:normal;
}
.contact-premium__lead{
  margin:0 0 24px;
  color:#4d5b6d;
  line-height:1.7;
  font-size:15px;
}
.contact-premium__alert{
  border-radius:12px;
  padding:12px 14px;
  font-size:13px;
  margin-bottom:12px;
}
.contact-premium__alert--ok{
  border:1px solid rgba(40,148,86,.35);
  background:rgba(40,148,86,.15);
  color:#1a6e42;
}
.contact-premium__alert--error{
  border:1px solid rgba(183,57,57,.35);
  background:rgba(183,57,57,.12);
  color:#8f3030;
}
.contact-premium__form{
  display:grid;
  gap:14px;
}
.contact-premium__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.contact-premium__form input,
.contact-premium__form textarea{
  width:100%;
  border:1px solid #d3d9df;
  background:#f2f4f6;
  color:#132036;
  border-radius:14px;
  padding:14px 16px;
  font-size:15px;
  outline:none;
}
.contact-premium__form textarea{
  min-height:130px;
  resize:vertical;
}
.contact-premium__form input:focus,
.contact-premium__form textarea:focus{
  border-color:#0f5bd5;
  box-shadow:0 0 0 3px rgba(15,91,213,.12);
}
.contact-premium__submit{
  margin-top:2px;
  border:none;
  border-radius:14px;
  padding:14px 24px;
  background:#0f5bd5;
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:all .24s ease;
  width:max-content;
}
.contact-premium__submit:hover{
  background:#0c4aad;
  transform:translateY(-2px);
}

.contact-premium__mapWrap{
  border-radius:20px;
  overflow:hidden;
  border:1px solid #d2d8df;
}
.contact-premium__mapWrap iframe{
  display:block;
  width:100%;
  height:470px;
  border:0;
}
.contact-premium__infoList{
  margin-top:20px;
  display:grid;
  gap:14px;
}
.contact-premium__infoItem{
  display:flex;
  align-items:flex-start;
  gap:12px;
  text-decoration:none;
  color:#1b2a3f;
}
.contact-premium__icon{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid #cad2dc;
  background:#f5f7f9;
  display:grid;
  place-items:center;
  color:#32455f;
  transition:all .22s ease;
}
.contact-premium__infoItem strong{
  display:block;
  font-size:28px;
  line-height:1.15;
  margin-top:5px;
}
.contact-premium__infoItem small{
  display:block;
  margin-top:6px;
  color:#4f5d70;
  font-size:15px;
  line-height:1.5;
}
.contact-premium__infoItem:hover .contact-premium__icon{
  background:#0f5bd5;
  border-color:#0f5bd5;
  color:#fff;
}

@media (max-width: 1060px){
  .contact-premium__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .contact-premium{
    padding:44px 16px 72px;
  }
  .contact-premium__formCard,
  .contact-premium__infoCard{
    border-radius:18px;
    padding:22px 20px;
  }
  .contact-premium__title{
    font-size:42px;
  }
  .contact-premium__row{
    grid-template-columns:1fr;
  }
  .contact-premium__submit{
    width:100%;
  }
  .contact-premium__mapWrap iframe{
    height:320px;
  }
}

/* ---------------- SUSTAINABILITY PREMIUM PAGE ---------------- */
.sustain-premium{
  --sust-dark:#0a3d26;
  --sust-mid:#1e6f48;
  --sust-light:#4caf50;
  --sust-gold:#d4af37;
  --sust-bg:#f8fbf9;
  --sust-text:#2c3e50;
  background:#fff;
  color:var(--sust-text);
  font-family:var(--font-main);
  line-height:1.65;
  padding-bottom:56px;
}
.sustain-premium__container{
  max-width:1200px;
  margin:0 auto;
  padding:64px 20px;
}
.sustain-premium h2{
  margin:0 0 14px;
  color:var(--sust-dark);
  font-size:clamp(28px,3.5vw,40px);
  font-weight:700;
}
.sustain-premium__sectionHead p{
  margin:0;
  color:#51606f;
  font-size:15px;
}
.sustain-premium__sectionHead.is-center{
  text-align:center;
}
.sustain-premium__sectionHead h2::after{
  content:"";
  display:block;
  width:68px;
  height:4px;
  margin:10px auto 0;
  border-radius:4px;
  background:var(--sust-gold);
}

.sustain-premium__hero{
  background:
    radial-gradient(1000px 420px at 80% -20%, rgba(255,255,255,.16), transparent 60%),
    linear-gradient(135deg, var(--sust-dark) 0%, var(--sust-mid) 100%);
  color:#fff;
  border-radius:0 0 24px 24px;
}
.sustain-premium__heroInner{
  max-width:1200px;
  margin:0 auto;
  padding:138px 20px 112px;
  text-align:center;
}
.sustain-premium__hero h1{
  margin:0 0 18px;
  color:#fff;
  font-size:clamp(34px,5vw,62px);
  line-height:1.08;
}
.sustain-premium__hero p{
  margin:0 auto;
  max-width:840px;
  opacity:.92;
  font-size:18px;
}

.sustain-premium__container--nav{
  padding-top:0;
  padding-bottom:30px;
}
.sustain-premium__navButtons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:-30px;
}
.sustain-premium__navBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:var(--sust-dark);
  font-size:14px;
  font-weight:700;
  padding:14px 22px;
  border-radius:999px;
  background:#fff;
  border:2px solid transparent;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
  transition:transform .2s ease, border-color .2s ease;
}
.sustain-premium__navBtn i{
  color:var(--sust-light);
}
.sustain-premium__navBtn:hover{
  transform:translateY(-2px);
  border-color:var(--sust-light);
}

.sustain-premium__visionBox{
  border-left:5px solid var(--sust-gold);
  border-radius:0 12px 12px 0;
  background:#fff;
  box-shadow:0 14px 36px rgba(0,0,0,.08);
  padding:30px;
}
.sustain-premium__visionBox p{
  margin:0;
  font-size:18px;
  color:#2f3f4e;
}
.sustain-premium__visionBox i{
  color:var(--sust-gold);
  margin-right:8px;
}

.sustain-premium__sectionAlt{
  background:var(--sust-bg);
}
.sustain-premium__roadmap{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.sustain-premium__roadmapCard{
  padding:30px;
  border:1px solid #e8ece8;
  border-radius:14px;
  background:#fff;
  text-align:center;
}
.sustain-premium__roadmapCard.is-active{
  border:2px solid var(--sust-light);
  background:#f0fff4;
  box-shadow:0 16px 36px rgba(76,175,80,.18);
}
.sustain-premium__year{
  display:block;
  font-size:46px;
  line-height:1;
  font-weight:800;
  color:var(--sust-dark);
  margin-bottom:8px;
}
.sustain-premium__year.is-old{
  color:#c6ced5;
  text-decoration:line-through;
}
.sustain-premium__activeTag{
  margin:0 0 4px;
  color:#15803d;
  font-weight:800;
  letter-spacing:.5px;
}

.sustain-premium__tabs{
  margin-top:34px;
  border:1px solid #e8ece8;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.sustain-premium__tabButtons{
  display:flex;
  background:#f2f4f5;
  border-bottom:1px solid #e6eaec;
}
.sustain-premium__tabBtn{
  flex:1;
  border:none;
  background:transparent;
  color:#566371;
  font-size:15px;
  font-weight:700;
  padding:18px;
  cursor:pointer;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  transition:background .2s ease, color .2s ease;
}
.sustain-premium__tabBtn:hover{
  background:#e8ecef;
}
.sustain-premium__tabBtn.is-active{
  background:var(--sust-dark);
  color:#fff;
}
.sustain-premium__tabPanel{
  display:none;
  padding:34px;
  animation:sustainFade .28s ease;
}
.sustain-premium__tabPanel.is-active{
  display:block;
}
@keyframes sustainFade{
  from{opacity:0;transform:translateY(4px)}
  to{opacity:1;transform:translateY(0)}
}
.sustain-premium__tabLayout{
  display:flex;
  align-items:flex-start;
  gap:26px;
}
.sustain-premium__tabIcon{
  font-size:66px;
  color:var(--sust-light);
  opacity:.26;
  line-height:1;
}
.sustain-premium__tabPanel h3{
  margin:0 0 8px;
  color:var(--sust-dark);
  font-size:28px;
}
.sustain-premium__tabPanel p{
  margin:0 0 12px;
  color:#4f5e6d;
}
.sustain-premium__tabPanel ul{
  margin:0;
  padding-left:18px;
  color:#2f3f4e;
}
.sustain-premium__tabPanel li{
  margin-bottom:8px;
}

.sustain-premium__benefits{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.sustain-premium__benefit{
  background:#fff;
  border-top:4px solid var(--sust-gold);
  border-radius:10px;
  padding:24px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.sustain-premium__benefit i{
  font-size:30px;
  color:var(--sust-mid);
}
.sustain-premium__benefit h4{
  margin:12px 0 8px;
  color:var(--sust-dark);
  font-size:21px;
}
.sustain-premium__benefit p{
  margin:0;
  color:#4f5e6d;
}

@media (max-width: 980px){
  .sustain-premium__roadmap{
    grid-template-columns:1fr;
  }
  .sustain-premium__benefits{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 760px){
  .sustain-premium__heroInner{
    padding-top:118px;
    padding-bottom:96px;
  }
  .sustain-premium__hero p{
    font-size:16px;
  }
  .sustain-premium__tabButtons{
    flex-direction:column;
  }
  .sustain-premium__tabLayout{
    flex-direction:column;
    gap:16px;
  }
  .sustain-premium__tabIcon{
    font-size:52px;
  }
  .sustain-premium__tabPanel{
    padding:24px 20px;
  }
  .sustain-premium__benefits{
    grid-template-columns:1fr;
  }
}

/* ---------------- 404 PAGE ---------------- */
.error404{
  min-height:100vh;
  display:grid;
  place-items:center;
  background:#eff1f4;
  color:#101828;
  padding:36px 16px;
  text-align:center;
}
.error404__inner{
  width:min(760px, 100%);
}
.error404__code{
  display:inline-flex;
  align-items:flex-end;
  gap:4px;
  font-family:var(--font-main);
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
}
.error404__code span{
  font-size:88px;
  line-height:1;
  color:#111827;
}
.error404__code span:nth-child(1),
.error404__code span:nth-child(3){
  color:#e5c75a;
}
.error404__code small{
  margin-left:8px;
  font-size:28px;
  line-height:1.1;
  color:#111827;
}
.error404__art{
  margin:8px auto 18px;
  max-width:620px;
  animation:errorFloat 2.2s ease-in-out infinite;
}
.error404__art svg{
  width:100%;
  height:auto;
  display:block;
}
@keyframes errorFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}
.error404__title{
  margin:0;
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.15;
}
.error404__text{
  margin:12px auto 0;
  max-width:56ch;
  color:#4b5563;
  font-size:18px;
  line-height:1.7;
}
.error404__btn{
  margin-top:24px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  border-radius:14px;
  padding:14px 24px;
  font-weight:600;
  color:#111827;
  border:1px solid rgba(229,199,90,.8);
  background:#e5c75a;
  transition:transform .22s ease, box-shadow .22s ease;
}
.error404__btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(17,24,39,.18);
}

@media (max-width: 680px){
  .error404{
    padding:28px 12px;
  }
  .error404__code span{
    font-size:64px;
  }
  .error404__code small{
    font-size:22px;
  }
  .error404__title{
    font-size:36px;
  }
  .error404__text{
    font-size:16px;
  }
}
