
:root{
  --blue-950:#0b2c59;
  --blue-900:#0d4a87;
  --blue-700:#1f6bb5;
  --green-600:#63b32e;
  --green-700:#4e9720;
  --bg:#f3f6fa;
  --surface:#ffffff;
  --surface-2:#f8fbff;
  --text:#1f2937;
  --muted:#64748b;
  --border:#dbe3ee;
  --shadow:0 18px 44px rgba(15,23,42,.10);
  --shadow-soft:0 12px 28px rgba(15,23,42,.08);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --container:min(1200px, calc(100% - 32px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
.container{width:var(--container);margin:0 auto}
.page-shell{min-height:100vh;display:flex;flex-direction:column}
main{flex:1}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(10px);
}
.site-header__inner{
  display:flex;
  align-items:center;
  gap:24px;
  padding:12px 0;
}
.brand{
  flex:0 0 auto;
  display:flex;
  align-items:center;
}
.brand img{
  height:68px;
  width:auto;
}
.nav{
  display:flex;
  flex:1 1 auto;
  align-items:center;
  justify-content:space-between;
  gap:0;
  min-width:0;
}
.nav a{
  padding:10px 12px;
  font-size:15px;
  font-weight:700;
  color:#334155;
  white-space:nowrap;
  text-align:center;
  border-bottom:2px solid transparent;
  transition:.2s ease;
}
.nav a:hover,
.nav a.active{
  color:var(--blue-900);
  border-color:var(--green-600);
}
.page-hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--blue-950),var(--blue-900) 55%,var(--blue-700));
  color:#fff;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.12), transparent 24%);
  pointer-events:none;
}
.page-hero__grid{
  position:relative;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:40px;
  align-items:center;
  padding:72px 0 92px;
}
.page-hero__copy{
  max-width:680px;
}
.kicker{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#eef5ff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  margin-bottom:18px;
}
.kicker--plain{
  padding:0;
  border:none;
  background:none;
  color:#cfddf3;
  letter-spacing:.18em;
}
.page-hero h1{
  margin:0;
  font-size:clamp(42px, 6vw, 66px);
  line-height:1.03;
  letter-spacing:-1.5px;
}
.page-hero h1 span{
  display:block;
  color:#b8f17a;
  margin-top:10px;
}
.page-hero p{
  margin:22px 0 0;
  color:#e6effa;
  font-size:19px;
  max-width:720px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:12px 22px;
  border-radius:16px;
  font-weight:800;
  transition:.2s ease;
}
.btn--primary{
  background:var(--green-600);
  color:#fff;
  box-shadow:0 12px 26px rgba(99,179,46,.28);
}
.btn--primary:hover{background:var(--green-700)}
.btn--ghost{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}
.btn--ghost:hover{background:rgba(255,255,255,.16)}
.btn--light{
  background:#fff;
  color:var(--blue-950);
}
.inline-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:52px;
  padding:12px 20px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  font-weight:800;
  color:#fff;
  white-space:nowrap;
}
.hero-figure{
  position:relative;
  padding-top:4px;
}
.hero-photo{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.08);
}
.hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,44,89,.04), rgba(11,44,89,.28));
  pointer-events:none;
}
.hero-photo img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}
.hero-note{
  position:relative;
  margin:-54px 0 0 28px;
  width:min(78%, 420px);
  padding:26px 28px;
  border-radius:28px;
  background:rgba(255,255,255,.96);
  color:var(--text);
  box-shadow:var(--shadow);
  z-index:2;
}
.hero-note h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.15;
}
.hero-note p{
  margin:0;
  font-size:16px;
  color:#475569;
}
.section{
  padding:84px 0;
}
.section--white{
  background:#fff;
}
.section--compact{
  padding:64px 0;
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:34px;
}
.section-head__copy{
  max-width:760px;
}
.section-head h2{
  margin:10px 0 0;
  font-size:clamp(30px,4vw,46px);
  line-height:1.06;
  letter-spacing:-1px;
}
.section-head p{
  margin:14px 0 0;
  font-size:18px;
  color:var(--muted);
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.card{
  height:100%;
  padding:28px;
  border-radius:var(--radius-lg);
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.card h3,
.card h4{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-.4px;
}
.card p{
  margin:0;
  color:#475569;
  font-size:17px;
}
.card ul{
  margin:0;
  padding-left:18px;
  color:#475569;
}
.card li + li{margin-top:8px}
.card--blue{
  background:linear-gradient(180deg, rgba(13,74,135,.08), rgba(31,107,181,.03)), #fff;
}
.card--soft{
  background:var(--surface-2);
}
.icon-badge{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:16px;
  background:rgba(99,179,46,.12);
  color:var(--green-700);
  font-weight:900;
  font-size:24px;
}
.process{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}
.process-step{
  position:relative;
  padding:28px 24px 26px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.process-step__num{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--blue-950);
  color:#fff;
  font-weight:900;
  margin-bottom:16px;
}
.process-step h3{
  margin:0 0 10px;
  font-size:21px;
  line-height:1.15;
}
.process-step p{
  margin:0;
  color:#475569;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:start;
}
.panel{
  padding:30px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.panel h3{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.1;
}
.panel p{
  margin:0;
  color:#475569;
  font-size:17px;
}
.checklist{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.checklist__item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(13,74,135,.04);
}
.checklist__tick{
  flex:0 0 auto;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:var(--green-600);
  color:#fff;
  font-size:16px;
  font-weight:900;
  line-height:1;
}
.checklist__item strong{
  display:block;
  line-height:1.3;
}
.checklist__item span{
  display:block;
  color:#475569;
}
.audience-card{
  padding:30px 28px;
}
.audience-card h3{font-size:24px}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.gallery-card{
  overflow:hidden;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.gallery-card__media{
  aspect-ratio:16/11;
  overflow:hidden;
  background:#dce7f3;
}
.gallery-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-card:hover .gallery-card__media img{
  transform:scale(1.03);
}
.gallery-card__body{
  padding:24px;
}
.gallery-card__body h3{
  margin:0 0 10px;
  font-size:21px;
  line-height:1.18;
  letter-spacing:-.3px;
}
.gallery-card__body p{
  margin:0;
  color:#475569;
}
.stack-list{
  display:grid;
  gap:12px;
  margin-top:20px;
}
.stack-pill{
  display:block;
  padding:14px 18px;
  border-radius:16px;
  background:linear-gradient(90deg, rgba(13,74,135,.08), rgba(99,179,46,.08));
  border:1px solid rgba(99,179,46,.18);
  color:var(--blue-950);
  font-weight:800;
}
.contact-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:26px;
  align-items:start;
}
.info-card{
  padding:30px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.info-card h3{
  margin:0 0 10px;
  font-size:28px;
}
.info-card p{
  margin:0;
  color:#475569;
}
.contact-list{
  display:grid;
  gap:14px;
  margin-top:22px;
}
.contact-list a,
.contact-list div{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(13,74,135,.04);
  font-weight:700;
}
.contact-list strong{
  min-width:90px;
  color:var(--blue-950);
}
.form-card{
  padding:32px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.form-card h3{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.1;
}
.form-card p{
  margin:0;
  color:#475569;
}
.alert{
  display:none;
  margin:18px 0 0;
  padding:16px 18px;
  border-radius:16px;
  font-weight:700;
}
.alert.is-visible{display:block}
.alert--success{
  background:rgba(99,179,46,.12);
  color:#2f5f13;
  border:1px solid rgba(99,179,46,.24);
}
.alert--error{
  background:rgba(220,38,38,.10);
  color:#991b1b;
  border:1px solid rgba(220,38,38,.18);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:24px;
}
.field{
  display:grid;
  gap:8px;
}
.field--full{
  grid-column:1 / -1;
}
.field label{
  font-weight:800;
  color:var(--blue-950);
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:rgba(99,179,46,.65);
  box-shadow:0 0 0 4px rgba(99,179,46,.12);
}
.field textarea{
  min-height:150px;
  resize:vertical;
}
.consent{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-top:6px;
}
.consent input{
  margin-top:4px;
}
.submit-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
}
.submit-row small{
  color:#64748b;
}
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}
.link-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}
.link-row a{
  font-weight:800;
  color:var(--blue-900);
}
.cta-band{
  padding:0 0 84px;
}
.cta-band__box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  padding:34px 36px;
  border-radius:30px;
  background:linear-gradient(135deg,var(--blue-950),var(--blue-900) 55%,var(--blue-700));
  color:#fff;
  box-shadow:var(--shadow);
}
.cta-band__box h2{
  margin:0 0 10px;
  font-size:clamp(30px,4vw,44px);
  line-height:1.04;
  letter-spacing:-1px;
}
.cta-band__box p{
  margin:0;
  color:#e6effa;
  max-width:760px;
  font-size:18px;
}
.cta-side{
  display:grid;
  gap:12px;
  min-width:260px;
}
.cta-side a{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:54px;
  padding:12px 20px;
  border-radius:16px;
  font-weight:800;
}
.cta-side .cta-side__phone{
  background:#fff;
  color:var(--blue-950);
}
.cta-side .cta-side__mail{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
}
.footer{
  background:#04162f;
  color:#fff;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:34px;
  padding:56px 0;
}
.footer__brand img{
  width:min(100%,300px);
  height:auto;
  margin-bottom:18px;
}
.footer__brand p{
  margin:0;
  max-width:520px;
  color:#d4e2f3;
  font-size:17px;
}
.footer h3{
  margin:0 0 16px;
  font-size:28px;
  line-height:1.1;
}
.footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.footer li,
.footer a,
.footer address{
  color:#e8f0fb;
  font-style:normal;
}
.footer a:hover{color:#b8f17a}
.footer__meta{
  border-top:1px solid rgba(255,255,255,.10);
  padding:18px 0 30px;
  color:#bfd0e5;
  font-size:14px;
}
.teaser-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.teaser-card{
  padding:28px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.teaser-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.16;
}
.teaser-card p{
  margin:0;
  color:#475569;
}
.teaser-card a{
  display:inline-flex;
  margin-top:18px;
  font-weight:800;
  color:var(--blue-900);
}
.small-note{
  margin-top:8px;
  font-size:14px;
  color:#64748b;
}

.page-hero--simple .page-hero__grid{
  grid-template-columns:1fr;
  padding:64px 0 72px;
}
.page-hero--simple .page-hero__copy{
  max-width:920px;
}
.page-hero--simple h1{
  font-size:clamp(38px,5vw,58px);
}
.legal-layout{
  display:grid;
  grid-template-columns:.74fr 1.26fr;
  gap:26px;
  align-items:start;
}
.legal-aside{
  position:sticky;
  top:108px;
}
.legal-note,
.legal-card{
  border-radius:30px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.legal-note{
  padding:24px 26px;
  background:linear-gradient(180deg, rgba(13,74,135,.06), rgba(99,179,46,.08));
  border-color:rgba(99,179,46,.20);
}
.legal-note h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.12;
}
.legal-note p{
  margin:0;
  color:#334155;
}
.legal-meta{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.legal-meta div{
  padding:16px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--border);
  color:#334155;
  box-shadow:var(--shadow-soft);
}
.legal-card{
  padding:34px;
}
.legal-card h2{
  margin:0 0 18px;
  font-size:clamp(30px,4vw,42px);
  line-height:1.06;
  letter-spacing:-1px;
}
.legal-card h3{
  margin:30px 0 10px;
  font-size:24px;
  line-height:1.14;
  color:var(--blue-950);
}
.legal-card p{
  margin:0 0 14px;
  color:#475569;
  font-size:17px;
}
.legal-card ul{
  margin:0 0 18px;
  padding-left:20px;
  color:#475569;
}
.legal-card li + li{
  margin-top:8px;
}
.consent a,
.footer__meta a,
.legal-card a,
.legal-meta a{
  color:var(--blue-900);
  text-decoration:underline;
}
.footer__meta a{
  color:#e8f0fb;
}
.footer__meta a:hover{
  color:#b8f17a;
}

@media (max-width:1180px){
  .nav{justify-content:space-between}
  .process{grid-template-columns:repeat(3,minmax(0,1fr))}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .teaser-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:980px){
  .site-header__inner{
    flex-wrap:wrap;
    justify-content:center;
  }
  .nav{
    width:100%;
    order:3;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px 16px;
  }
  .page-hero__grid,
  .split,
  .contact-layout,
  .cta-band__box,
  .footer__grid,
  .legal-layout{
    grid-template-columns:1fr;
  }
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .process{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cta-side{
    min-width:0;
    width:100%;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .legal-aside{position:static;}
}
@media (max-width:740px){
  .brand img{height:56px}
  .footer__brand img{width:min(100%,260px)}
  .page-hero__grid{padding:58px 0 78px}
  .page-hero p{font-size:17px}
  .hero-photo img{min-height:280px}
  .hero-note{
    width:min(88%, 420px);
    margin:-32px 0 0 14px;
    padding:20px 22px;
  }
  .section{padding:64px 0}
  .section-head{margin-bottom:24px}
  .grid-2,
  .grid-3,
  .gallery-grid,
  .teaser-grid,
  .process,
  .grid-4,
  .form-grid,
  .cta-side{
    grid-template-columns:1fr;
  }
  .card,
  .panel,
  .info-card,
  .form-card,
  .teaser-card,
  .process-step{
    padding:22px;
  }
  .cta-band__box{
    padding:28px 24px;
  }
  .footer__grid{padding:44px 0}
  .nav a{font-size:14px}
}
