:root{
  --bg:#07111f;
  --bg-2:#0b1728;
  --panel:rgba(255,255,255,.06);
  --panel-2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.12);
  --text:#eef4ff;
  --muted:#b9c6da;
  --white:#ffffff;

  --red:#e32020;
  --red-dark:#c91414;
  --red-2:#ff3b30;

  --green:#48b432;
  --green-2:#6ddc3d;

  --shadow:0 20px 60px rgba(0,0,0,.35);
  --shadow-soft:0 10px 30px rgba(0,0,0,.22);

  --radius:30px;
  --radius-md:24px;
  --radius-sm:18px;

  --max:1240px;
  --max-doc:1080px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(227,32,32,.18), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(72,180,50,.18), transparent 30%),
    linear-gradient(180deg,#07111f 0%,#0a1221 45%,#0b1728 100%);
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.container-doc{
  width:min(var(--max-doc), calc(100% - 32px));
  margin:0 auto;
}

/* header */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(18px);
  background:rgba(7,17,31,.68);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:86px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  padding:6px;
  box-shadow:var(--shadow-soft);
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand-title{
  font-family:'Poppins',sans-serif;
  font-size:28px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand-title .s-red{color:var(--red-2)}
.brand-title .s-green{color:var(--green-2)}

.brand-sub{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  margin-top:3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  color:#dbe7f8;
  font-weight:600;
  font-size:15px;
}

.nav-links a{
  opacity:.92;
  transition:.2s ease;
}

.nav-links a:hover{
  opacity:1;
  color:#fff;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.mobile-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* buttons */

.btn{
  border:none;
  outline:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 22px;
  border-radius:14px;
  font-weight:800;
  font-size:15px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-ghost{
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, var(--red-dark) 0%, var(--red-2) 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 16px 35px rgba(227,32,32,.38);
}

.btn-primary:hover{
  box-shadow:0 22px 45px rgba(227,32,32,.48);
}

/* shared utility */

.section{
  padding:36px 0 32px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px;
}

.section-title{
  margin:0;
  font-family:'Poppins',sans-serif;
  font-size:clamp(28px, 3.2vw, 48px);
  line-height:1.05;
  letter-spacing:-.7px;
}

.section-lead,
.lead{
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  font-size:13px;
  letter-spacing:.3px;
  text-transform:uppercase;
}

.eyebrow-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--red-2),var(--green-2));
  box-shadow:0 0 18px rgba(255,80,80,.7);
}

/* login dropdown */
.login-dropdown{
  position:relative;
}

.login-trigger{
  position:relative;
}

.login-trigger-arrow{
  transition:transform .2s ease;
}

.login-trigger.is-open .login-trigger-arrow{
  transform:rotate(180deg);
}

.login-menu{
  position:absolute;
  top:calc(100% + 14px);
  right:0;
  z-index:1200;
  display:block;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(10px) scale(.98);
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;
}

.login-menu.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0) scale(1);
}

.login-card-menu{
  width:min(760px, calc(100vw - 32px));
  padding:18px;
  border-radius:26px;
  background:
    radial-gradient(circle at top right, rgba(227,32,32,.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(72,180,50,.14), transparent 28%),
    linear-gradient(180deg, rgba(17,28,47,.98), rgba(10,20,36,.98));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 70px rgba(0,0,0,.45);
  backdrop-filter:blur(16px);
}

.login-card-arrow{
  position:absolute;
  top:-8px;
  right:34px;
  width:16px;
  height:16px;
  background:linear-gradient(180deg, rgba(17,28,47,.98), rgba(10,20,36,.98));
  border-top:1px solid rgba(255,255,255,.10);
  border-left:1px solid rgba(255,255,255,.10);
  transform:rotate(45deg);
}

.login-card-header{
  margin-bottom:16px;
  padding:4px 6px 10px;
}

.login-card-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.login-card-header strong{
  display:block;
  color:#fff;
  font-size:22px;
  line-height:1.2;
  margin-bottom:6px;
}

.login-card-header span{
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  max-width:560px;
}

.login-card-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.login-card-item{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  min-height:220px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.login-card-item::before{
  content:"";
  position:absolute;
  inset:auto -20% -35% auto;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  filter:blur(10px);
  pointer-events:none;
}

.login-card-item:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.085);
  border-color:rgba(255,255,255,.15);
  box-shadow:0 20px 36px rgba(0,0,0,.24);
}

.login-card-item:hover .login-card-icon{
  transform:translateY(-1px) scale(1.04);
}

.login-card-icon{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.login-card-company:hover{
  box-shadow:0 20px 40px rgba(227,32,32,.18);
}

.login-card-client:hover{
  box-shadow:0 20px 40px rgba(255,255,255,.12);
}

.login-card-worker:hover{
  box-shadow:0 20px 40px rgba(72,180,50,.18);
}

.login-card-icon-wrap{
  margin-bottom:14px;
}

.login-card-icon{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:20px;
  font-size:30px;
  background:linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
  color:#fff;
}

.login-card-icon-svg svg{
  width:32px;
  height:32px;
  display:block;
}

.login-card-icon-company{
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.16), transparent 45%),
    linear-gradient(135deg, rgba(255,59,48,.28), rgba(255,59,48,.08));
  color:#ffd9d6;
  border-color:rgba(255,59,48,.22);
}

.login-card-icon-client{
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.16), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  color:#eef4ff;
  border-color:rgba(255,255,255,.16);
}

.login-card-icon-worker{
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.16), transparent 45%),
    linear-gradient(135deg, rgba(109,220,61,.24), rgba(109,220,61,.08));
  color:#e5ffd9;
  border-color:rgba(109,220,61,.22);
}

.login-card-title-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.login-card-title{
  color:#fff;
  font-size:20px;
  font-weight:800;
  line-height:1.2;
}

.login-card-chip{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 9px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#dfe8f6;
  font-size:11px;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:uppercase;
}

.login-card-text{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

@media (max-width: 860px){
  .login-dropdown{
    width:100%;
  }

  .login-dropdown .btn-primary{
    width:100%;
  }

  .login-menu{
    right:auto;
    left:0;
  }

  .login-card-menu{
    width:min(560px, calc(100vw - 24px));
  }

  .login-card-arrow{
    left:34px;
    right:auto;
  }

  .login-card-grid{
    grid-template-columns:1fr;
  }

  .login-card-item{
    min-height:auto;
  }
}

/* hero homepage */

.hero{
  position:relative;
  padding:48px 0 32px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:stretch;
}

.hero-left{
  padding:38px 0 18px;
}

.hero h1{
  margin:18px 0 16px;
  font-family:'Poppins',sans-serif;
  font-size:clamp(40px, 5vw, 72px);
  line-height:.98;
  letter-spacing:-1.4px;
}

.hero h1 .accent{
  display:block;
  background:linear-gradient(90deg,#ffffff 0%, #ffe1e1 40%, #def8d8 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero p{
  font-size:18px;
  line-height:1.72;
  color:var(--muted);
  max-width:760px;
  margin:0 0 24px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.hero-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.mini-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px 16px;
}

.mini-card strong{
  display:block;
  font-size:28px;
  line-height:1;
  margin-bottom:8px;
  color:#fff;
}

.mini-card span{
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
  display:block;
}

.hero-right{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:stretch;
}

.hero-stage{
  position:relative;
  width:100%;
  border-radius:32px;
  overflow:hidden;
  background:
    radial-gradient(circle at 25% 15%, rgba(255,60,60,.18), transparent 28%),
    radial-gradient(circle at 75% 18%, rgba(90,220,70,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hero-stage-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}

.floating-badge{
  background:rgba(7,17,31,.6);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:12px 14px;
  font-weight:700;
  font-size:13px;
  color:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}

.hero-logo-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:1;
  min-height:340px;
  margin:14px 0 10px;
}

.hero-logo-wrap::before{
  content:"";
  position:absolute;
  inset:10% 8%;
  border-radius:28px;
  background:radial-gradient(circle, rgba(255,255,255,.12), transparent 65%);
  filter:blur(18px);
  pointer-events:none;
}

.hero-logo{
  position:relative;
  z-index:1;
  width:min(100%, 560px);
  object-fit:contain;
  filter:drop-shadow(0 24px 38px rgba(0,0,0,.35));
}

.stage-bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.stage-card{
  background:rgba(7,17,31,.52);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:18px;
}

.stage-card strong{
  display:block;
  font-size:16px;
  margin-bottom:8px;
  color:#fff;
}

.stage-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

/* cards and bento */

.bento{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:18px;
  margin-top:20px;
}

.bento-card{
  position:relative;
  overflow:hidden;
  min-height:240px;
  border-radius:28px;
  padding:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.11);
  box-shadow:var(--shadow);
}

.bento-card.large{
  grid-row:span 2;
  min-height:500px;
  background:
    radial-gradient(circle at 90% 10%, rgba(227,32,32,.18), transparent 25%),
    radial-gradient(circle at 20% 90%, rgba(72,180,50,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}

.bento-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.15;
}

.bento-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
  max-width:520px;
}

.card-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.12);
  font-size:24px;
}

.feature-list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.feature-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#eef4ff;
  font-weight:600;
  line-height:1.5;
}

.feature-list li::before{
  content:"✓";
  flex:0 0 auto;
  color:var(--green-2);
  font-weight:900;
  margin-top:1px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:20px;
}

.why-card{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.why-card h3{
  margin:0 0 12px;
  font-size:20px;
}

.why-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}

/* workflow */

.workflow{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:22px;
}

.step{
  position:relative;
  border-radius:28px;
  padding:30px 24px 24px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--shadow);
}

.step-no{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:24px;
  font-weight:900;
  background:linear-gradient(135deg, #be1717, #ff3737);
  box-shadow:0 12px 28px rgba(227,32,32,.35);
  margin-bottom:18px;
}

.step:nth-child(2) .step-no{
  background:linear-gradient(135deg, #24951d, #6ddc3d);
  box-shadow:0 12px 28px rgba(72,180,50,.35);
}

.step:nth-child(3) .step-no{
  background:linear-gradient(135deg, #be1717, #24951d);
  box-shadow:0 12px 28px rgba(0,0,0,.28);
}

.step h3{
  margin:0 0 10px;
  font-size:22px;
}

.step p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}

/* cta band */

.cta-band{
  margin-top:20px;
  border-radius:32px;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(227,32,32,.3), transparent 26%),
    radial-gradient(circle at 85% 50%, rgba(72,180,50,.26), transparent 24%),
    linear-gradient(135deg, #101b30 0%, #13203a 100%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.cta-band-inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:center;
  padding:34px;
}

.cta-band h2{
  margin:0 0 12px;
  font-family:'Poppins',sans-serif;
  font-size:clamp(28px, 3vw, 46px);
  line-height:1.04;
}

.cta-band p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
  max-width:720px;
}

.cta-band-actions{
  display:flex;
  gap:14px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

/* pricing */

.page-hero{
  padding:68px 0 26px;
}

.page-hero h1{
  margin:18px 0 12px;
  font-family:'Poppins',sans-serif;
  font-size:clamp(34px,4.8vw,64px);
  line-height:1.02;
  letter-spacing:-1.2px;
}

.page-hero .lead{
  max-width:820px;
  margin:0;
  font-size:18px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:22px;
}

.pricing-card{
  position:relative;
  border-radius:30px;
  padding:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.pricing-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;
  background:linear-gradient(90deg, var(--red-2), var(--green-2));
}

.pricing-card.highlight{
  background:
    radial-gradient(circle at top right, rgba(227,32,32,.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(72,180,50,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  transform:translateY(-8px);
}

.pricing-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.3px;
  margin-bottom:16px;
}

.pricing-card h3{
  margin:0;
  font-size:30px;
  font-family:'Poppins',sans-serif;
}

.pricing-sub{
  color:var(--muted);
  line-height:1.75;
  margin:12px 0 18px;
  font-size:15px;
}

.price{
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin-bottom:16px;
}

.price strong{
  font-size:58px;
  line-height:1;
  font-family:'Poppins',sans-serif;
  letter-spacing:-1.8px;
}

.price span{
  color:var(--muted);
  font-weight:700;
  margin-bottom:8px;
}

.pricing-list{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  gap:12px;
}

.pricing-list li{
  display:flex;
  gap:12px;
  color:#eef4ff;
  line-height:1.55;
  font-weight:600;
}

.pricing-list li::before{
  content:"✓";
  color:var(--green-2);
  font-weight:900;
  flex:0 0 auto;
}

.notice{
  margin:26px 0 70px;
  border-radius:28px;
  padding:28px;
  background:
    radial-gradient(circle at 15% 50%, rgba(227,32,32,.25), transparent 24%),
    radial-gradient(circle at 85% 50%, rgba(72,180,50,.22), transparent 22%),
    linear-gradient(135deg, #101b30 0%, #13203a 100%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.notice h2{
  margin:0 0 10px;
  font-family:'Poppins',sans-serif;
  font-size:32px;
}

.notice p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
  max-width:800px;
}

/* legal docs */

.doc-card{
  margin:28px 0 60px;
  border-radius:30px;
  padding:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.doc-card h2{
  margin:0 0 12px;
  font-size:24px;
  font-family:'Poppins',sans-serif;
}

.doc-card p,
.doc-card li{
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
}

.doc-card p{
  margin:0 0 14px;
}

.doc-card ul{
  margin:0 0 18px 20px;
  padding:0;
}

.doc-card section{
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.doc-card section:last-child{
  border-bottom:none;
  padding-bottom:0;
}

/* contact */

.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  margin-top:22px;
}

.contact-panel,
.contact-form-wrap{
  border-radius:28px;
  padding:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.contact-panel h3,
.contact-form-wrap h3{
  margin:0 0 12px;
  font-size:26px;
}

.contact-panel p,
.contact-form-wrap p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
}

.contact-points{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.contact-point{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-weight:700;
  color:#fff;
}

.form-grid{
  display:grid;
  gap:14px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  font-weight:700;
  color:#fff;
  font-size:14px;
}

.form-group input,
.form-group textarea{
  width:100%;
  border:none;
  outline:none;
  border-radius:16px;
  padding:15px 16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  font:inherit;
}

.form-group textarea{
  min-height:150px;
  resize:vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:#99a8bf;
}

/* footer */

footer{
  padding:36px 0 46px;
  color:#9fb0c8;
}

.footer-box{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:16px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.09);
  font-size:14px;
  line-height:1.7;
}

.footer-box a{
  color:#dfe8f6;
}

/* responsive */

@media (max-width: 1120px){
  .hero-grid,
  .cta-band-inner,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-right{
    min-height:auto;
  }

  .hero-stage{
    min-height:unset;
  }

  .cta-band-actions{
    justify-content:flex-start;
  }

  .bento{
    grid-template-columns:1fr 1fr;
  }

  .bento-card.large{
    grid-column:1 / -1;
    grid-row:auto;
    min-height:unset;
  }

  .why-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 860px){
  .mobile-toggle{
    display:grid;
    place-items:center;
  }

  .nav-links{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:86px;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:10px;
    border-radius:20px;
    background:#101a2d;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
  }

  .nav-links.show{
    display:flex;
  }

  .nav-links a{
    width:100%;
    padding:13px 12px;
    border-radius:12px;
  }

  .nav-actions .btn-ghost{
    display:none;
  }

  .hero-mini-grid,
  .workflow,
  .pricing-grid,
  .stage-bottom,
  .why-grid,
  .contact-grid,
  .bento{
    grid-template-columns:1fr;
  }

  .hero-left{
    padding-top:18px;
  }

  .hero-stage{
    padding:18px;
  }

  .hero-logo{
    width:min(100%, 480px);
  }

  .section{
    padding:28px 0;
  }

  .price strong{
    font-size:46px;
  }

  .pricing-card.highlight{
    transform:none;
  }
}

@media (max-width: 640px){
  .doc-card{
    padding:22px;
  }
}

@media (max-width: 560px){
  .brand-title{
    font-size:24px;
  }

  .hero h1{
    font-size:clamp(34px, 10vw, 52px);
  }

  .hero p,
  .page-hero .lead{
    font-size:16px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .cta-band-inner,
  .pricing-card,
  .contact-panel,
  .contact-form-wrap,
  .bento-card,
  .why-card,
  .step,
  .notice{
    padding:22px;
  }

  .nav-actions{
    width:100%;
    flex-direction:column;
  }
}

/* mobile polish 2026 */
html, body{
  max-width:100%;
}

body.login-menu-open,
body.nav-open{
  overflow:hidden;
}

@media (max-width: 1120px){
  .hero{
    padding-top:34px;
  }

  .hero-left,
  .hero-right{
    min-width:0;
  }

  .hero-left{
    padding-bottom:0;
  }

  .hero p,
  .section-lead,
  .lead,
  .cta-band p{
    max-width:none;
  }
}

@media (max-width: 860px){
  html{
    scroll-padding-top:84px;
  }

  .container,
  .container-doc{
    width:min(var(--max), calc(100% - 24px));
  }

  .site-header{
    background:rgba(7,17,31,.88);
  }

  .nav{
    position:relative;
    min-height:78px;
    gap:10px;
  }

  .brand{
    flex:1 1 auto;
    min-width:0;
    gap:10px;
  }

  .brand-logo{
    width:48px;
    height:48px;
    border-radius:12px;
  }

  .brand-title{
    font-size:24px;
  }

  .brand-sub{
    font-size:11px;
    margin-top:2px;
  }

  .nav-actions{
    flex:0 0 auto;
    width:auto;
    flex-direction:row;
    gap:8px;
  }

  .nav-actions .login-dropdown,
  .nav-actions .login-trigger{
    min-width:0;
  }

  .nav-actions .btn-primary,
  .nav-actions .mobile-toggle{
    min-height:46px;
  }

  .nav-actions .btn-primary{
    padding:0 14px;
    font-size:14px;
    border-radius:12px;
  }

  .mobile-toggle{
    width:46px;
    height:46px;
    border-radius:12px;
    flex:0 0 46px;
  }

  .nav-links{
    position:fixed;
    left:12px;
    right:12px;
    top:86px;
    max-height:calc(100dvh - 98px);
    overflow:auto;
    padding:12px;
    border-radius:22px;
    background:rgba(10,20,36,.98);
    backdrop-filter:blur(18px);
  }

  .nav-links a{
    padding:15px 14px;
    font-size:15px;
  }

  .login-menu{
    position:fixed;
    left:12px;
    right:12px;
    top:88px;
    width:auto;
    max-height:calc(100dvh - 100px);
    overflow:auto;
    z-index:1300;
  }

  .login-card-menu{
    width:auto;
    padding:16px;
    border-radius:24px;
  }

  .login-card-arrow{
    display:none;
  }

  .login-card-header{
    padding:2px 2px 8px;
    margin-bottom:12px;
  }

  .login-card-header strong{
    font-size:20px;
  }

  .login-card-header span{
    font-size:13px;
  }

  .login-card-grid{
    gap:10px;
  }

  .login-card-item{
    padding:16px;
    border-radius:18px;
  }

  .login-card-icon-wrap{
    margin-bottom:10px;
  }

  .login-card-icon{
    width:56px;
    height:56px;
    border-radius:16px;
  }

  .login-card-title{
    font-size:18px;
  }

  .login-card-text{
    font-size:13px;
    line-height:1.55;
  }

  .hero{
    padding:22px 0 18px;
  }

  .hero-grid{
    gap:16px;
  }

  .hero-left{
    padding:10px 0 0;
  }

  .eyebrow{
    width:100%;
    justify-content:center;
    text-align:center;
    padding:10px 12px;
    font-size:12px;
    line-height:1.4;
  }

  .hero h1{
    margin:14px 0 12px;
    font-size:clamp(34px, 11vw, 54px);
    line-height:1.02;
    letter-spacing:-1px;
  }

  .hero p{
    font-size:16px;
    line-height:1.65;
    margin-bottom:18px;
  }

  .hero-actions{
    margin-bottom:18px;
  }

  .hero-actions .btn,
  .cta-band-actions .btn,
  .pricing-card .btn,
  .contact-form-wrap .btn{
    width:100%;
  }

  .hero-mini-grid{
    gap:10px;
  }

  .mini-card{
    padding:16px 14px;
  }

  .mini-card strong{
    font-size:24px;
  }

  .hero-right,
  .hero-stage,
  .hero-logo-wrap{
    min-height:auto;
  }

  .hero-stage-top{
    flex-direction:column;
    align-items:stretch;
  }

  .floating-badge{
    padding:10px 12px;
    border-radius:14px;
    font-size:12px;
  }

  .hero-logo-wrap{
    margin:8px 0;
    min-height:220px;
  }

  .hero-logo{
    width:min(100%, 360px);
  }

  .stage-card,
  .bento-card,
  .why-card,
  .step,
  .pricing-card,
  .contact-panel,
  .contact-form-wrap,
  .doc-card,
  .cta-band-inner{
    border-radius:22px;
  }

  .section{
    padding:24px 0;
  }

  .section-head{
    margin-bottom:16px;
  }

  .section-title{
    font-size:clamp(26px, 8vw, 38px);
    line-height:1.08;
  }

  .section-lead,
  .lead,
  .cta-band p,
  .doc-card p,
  .doc-card li{
    font-size:15px;
    line-height:1.7;
  }

  .bento-card{
    min-height:auto;
    padding:22px;
  }

  .bento-card.large{
    min-height:auto;
  }

  .bento-card h3,
  .pricing-card h3,
  .contact-panel h3,
  .contact-form-wrap h3{
    font-size:24px;
  }

  .why-card h3,
  .step h3{
    font-size:20px;
  }

  .feature-list,
  .pricing-list,
  .contact-points{
    gap:10px;
  }

  .workflow{
    gap:14px;
  }

  .step{
    padding:24px 20px 20px;
  }

  .step-no{
    width:50px;
    height:50px;
    border-radius:16px;
    margin-bottom:14px;
    font-size:22px;
  }

  .cta-band{
    border-radius:24px;
  }

  .cta-band-inner{
    gap:18px;
    padding:24px 20px;
  }

  .cta-band h2{
    font-size:clamp(26px, 8vw, 38px);
  }

  .pricing-grid{
    gap:16px;
  }

  .pricing-card{
    padding:24px 20px;
  }

  .price{
    align-items:baseline;
  }

  .price strong{
    font-size:44px;
  }

  .notice{
    margin:20px 0 44px;
    padding:24px 20px;
    border-radius:24px;
  }

  .doc-card{
    margin:18px 0 34px;
    padding:24px 20px;
  }

  .contact-grid{
    gap:16px;
  }

  .contact-panel,
  .contact-form-wrap{
    padding:24px 20px;
  }

  .form-group input,
  .form-group textarea{
    padding:14px 14px;
    border-radius:14px;
    font-size:16px;
  }

  footer{
    padding:24px 0 34px;
  }

  .footer-box{
    flex-direction:column;
    gap:10px;
    font-size:13px;
  }
}

@media (max-width: 560px){
  .container,
  .container-doc{
    width:calc(100% - 20px);
  }

  .nav{
    min-height:72px;
  }

  .brand-logo{
    width:42px;
    height:42px;
    padding:5px;
  }

  .brand-title{
    font-size:22px;
  }

  .brand-sub{
    display:none;
  }

  .nav-actions .btn-primary{
    padding:0 12px;
    font-size:13px;
  }

  .login-trigger-arrow{
    display:none;
  }

  .nav-links{
    top:80px;
  }

  .login-menu{
    left:10px;
    right:10px;
    top:80px;
    max-height:calc(100dvh - 90px);
  }

  .hero h1{
    font-size:clamp(31px, 11vw, 44px);
  }

  .hero p,
  .page-hero .lead{
    font-size:15px;
  }

  .eyebrow{
    font-size:11px;
    padding:9px 10px;
  }

  .mini-card strong{
    font-size:22px;
  }

  .btn{
    min-height:48px;
    border-radius:12px;
    font-size:14px;
  }

  .cta-band-inner,
  .pricing-card,
  .contact-panel,
  .contact-form-wrap,
  .bento-card,
  .why-card,
  .step,
  .notice,
  .doc-card,
  .stage-card{
    padding:20px 16px;
  }

  .section-title,
  .cta-band h2{
    font-size:clamp(24px, 8.5vw, 34px);
  }

  .step,
  .why-card,
  .bento-card,
  .pricing-card,
  .contact-panel,
  .contact-form-wrap,
  .doc-card,
  .stage-card{
    border-radius:18px;
  }

  .price strong{
    font-size:38px;
  }
}
