
:root{
  --teal:#20aaa0;
  --navy:#204e86;
  --navy-2:#17385f;
  --bg:#ffffff;
  --bg-soft:#f7fafc;
  --bg-soft-2:#f3f7fb;
  --line:#e6edf5;
  --text:#26415f;
  --muted:#62758d;
  --shadow:0 16px 40px rgba(23,56,95,0.08);
  --shadow-soft:0 8px 24px rgba(23,56,95,0.06);
  --radius:22px;
  --radius-sm:14px;
  --container:1200px;
  --fs-hero:clamp(2.7rem,6vw,4.5rem);
  --fs-h2:clamp(2rem,4vw,3rem);
  --fs-h3:1.25rem;
  --fs-h4:1.05rem;
  --fs-body-lg:1.1rem;
  --fs-body:1rem;
  --fs-body-sm:.9rem;
  --fs-label:.8rem;
  --fs-price:2rem;
  --fs-icon:1.3rem;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(230,237,245,0.92);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; min-height:84px; position:relative; flex-wrap:nowrap;
}
.brand-logo{height:38px; width:auto}

.site-nav{
  display:flex; align-items:center; gap:26px;
  font-weight:600; color:var(--navy-2); flex-wrap:nowrap;
}
.site-nav > a, .nav-dropdown-toggle{
  position:relative;
}
.site-nav > a::after, .nav-dropdown-toggle::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px;
  background:var(--teal); transition:width .2s ease;
}
.site-nav > a:hover::after, .nav-dropdown-toggle:hover::after{width:100%}

.dropdown{position:relative}
.nav-dropdown-toggle{
  border:0; background:transparent; padding:0; font:inherit; color:inherit; cursor:pointer;
  display:flex; align-items:center; gap:8px; font-weight:600;
}
.caret{
  width:8px; height:8px; border-right:2px solid var(--navy-2); border-bottom:2px solid var(--navy-2);
  transform:rotate(45deg); margin-top:-4px;
}
.dropdown-menu{
  position:absolute; top:100%; left:0;
  min-width:260px; background:#fff; border:1px solid var(--line);
  border-radius:16px; box-shadow:var(--shadow); padding:10px; padding-top:26px; display:none;
}
.dropdown:hover .dropdown-menu{display:block}
.dropdown-menu a{
  display:block; padding:12px 14px; border-radius:12px; color:var(--navy-2);
  font-size:var(--fs-body-sm);
}
.dropdown-menu a:hover{background:var(--bg-soft)}

.nav-cta{display:flex; gap:12px; flex-shrink:0}
.menu-toggle{
  display:none; border:0; background:transparent; padding:0; cursor:pointer;
}
.menu-toggle span{
  display:block; width:24px; height:2px; background:var(--navy-2); margin:5px 0;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:13px 20px; border-radius:12px; font-weight:700;
  white-space:nowrap;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 170, 160, 0.15);
}
.btn-large{padding:16px 24px}
.btn-primary{
  background:var(--navy); color:#fff; box-shadow:0 12px 24px rgba(32,78,134,0.18);
  border: none;
}
.btn-primary:hover{background:#183f70}
.btn-secondary{
  border:1.5px solid rgba(32,78,134,.16); color:var(--navy); background:#fff;
}
.btn-secondary:hover,.btn-ghost:hover{background:var(--bg-soft)}
.btn-ghost{
  border:1.5px solid rgba(32,78,134,.14); color:var(--navy-2); background:#fff;
}
.full{width:100%}

.hero{
  padding:72px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(32,170,160,0.07), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(32,78,134,0.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fcfeff 100%);
}
.hero-grid{
  display:grid; grid-template-columns:1.02fr .98fr; gap:48px; align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background:rgba(32,170,160,.08); color:var(--teal);
  font-size:var(--fs-label); font-weight:800; text-transform:uppercase; letter-spacing:.06em; white-space:nowrap;
}
h1{
  margin:18px 0 16px; font-size:var(--fs-hero); line-height:1.02; color:var(--navy-2);
  letter-spacing:-0.045em;
}
.home-hero-title{font-size:clamp(2.35rem,4.7vw,3.65rem)}
.hero-text{font-size:var(--fs-body-lg); max-width:660px; color:var(--muted)}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 32px; align-items:center}
.hero-metrics{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.metric{
  padding:18px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow-soft);
}
.metric strong{display:block; color:var(--navy-2); font-size:var(--fs-h4); margin-bottom:4px}
.metric span{display:block; color:var(--muted); font-size:var(--fs-body-sm)}

.hero-visual{position:relative; overflow:visible; min-width:0}
.app-card, .panel, .feature-card, .step-card, .example-card, .price-card, .detail-card{
  background:#fff; border:1px solid var(--line); box-shadow:var(--shadow);
}
.app-card-main{border-radius:26px; padding:20px 20px 20px 20px; min-width:0; overflow:hidden}
.card-header, .panel-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:14px;
}
.mini-label{
  margin:0 0 6px; font-size:var(--fs-label); font-weight:800; letter-spacing:.05em;
  text-transform:uppercase; color:var(--teal); white-space:nowrap;
}
.card-header h3, .panel-head h3{margin:0; color:var(--navy-2); font-size:var(--fs-h3)}
.status-pill{
  display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px;
  background:rgba(32,170,160,.1); color:var(--teal); font-size:var(--fs-label); font-weight:800; white-space:nowrap;
}
.builder-grid{display:grid; grid-template-columns:260px 1fr; gap:14px; min-width:0}
.trip-brief{
  border:1px solid var(--line); border-radius:18px; padding:14px 16px; background:#fff;
}
.itinerary-panel{
  border:1px solid var(--line); border-radius:18px; padding:14px 16px; background:#fff;
}
.trip-brief h4, .itinerary-panel h4{margin:0 0 10px; color:var(--navy-2); font-size:var(--fs-h4)}
.brief-row{
  display:flex; justify-content:space-between; gap:12px; padding:8px 0; border-bottom:1px solid #eef3f7;
  font-size:var(--fs-body-sm);
}
.brief-row span{color:var(--muted)}
.mini-btn{
  margin-top:10px; width:100%; border:0; background:var(--teal); color:#fff;
  border-radius:12px; font-weight:700; padding:10px 14px; cursor:pointer;
}
.day-item{
  display:flex; gap:12px; padding:8px 0; border-bottom:1px solid #eef3f7;
}
.day-item strong{display:block; color:var(--navy-2); white-space:nowrap; font-size:var(--fs-body-sm)}
.day-item p{margin:2px 0 0; color:var(--muted); font-size:var(--fs-body-sm)}
.day-dot{
  width:10px; height:10px; border-radius:999px; margin-top:5px;
  background:var(--teal); box-shadow:0 0 0 3px rgba(32,170,160,.12);
}
.inline-link{display:inline-flex; margin-top:8px; color:var(--teal); font-weight:700; font-size:var(--fs-body-sm)}
.partners-strip{
  display:block; margin-top:14px;
  padding:14px 16px; border:1px solid var(--line); border-radius:14px; background:var(--bg-soft);
}
.partners-strip .mini-label{margin:0 0 10px 0}
.partners-row{display:grid; grid-template-columns:repeat(3,1fr); gap:10px}
.partner-inline{
  position:relative; padding:10px 14px; border-radius:12px; background:#fff; border:1px solid var(--line);
}
.partner-inline > div{padding-right:28px}
.partner-inline strong{display:block; font-size:var(--fs-body-sm); color:var(--navy-2); font-weight:600}
.partner-inline span{display:block; font-size:var(--fs-label); color:var(--muted)}
.partner-avatar-sm{
  position:absolute; top:8px; right:8px;
  width:26px; height:26px; border-radius:50%;
  background:linear-gradient(135deg, rgba(32,170,160,.14), rgba(32,78,134,.12));
  color:var(--navy-2);
}
.partner-avatar-sm::after{
  content:attr(data-code);
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:.65rem; font-weight:800; line-height:1;
}

.trust-strip{
  padding:18px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff;
}
.trust-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px; text-align:center;
  color:var(--muted); font-weight:600; font-size:var(--fs-body-sm);
}

.section{padding:96px 0}
.section-heading{max-width:820px; margin-bottom:40px}
.section-heading.center{text-align:center; margin-inline:auto; margin-bottom:42px}
.section-heading h2{
  margin:16px 0 12px; color:var(--navy-2); font-size:var(--fs-h2); line-height:1.08; letter-spacing:-0.03em;
}
.section-heading p, .lead{color:var(--muted); font-size:var(--fs-body-lg)}
.feature-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px}
.feature-card, .detail-card{border-radius:20px; padding:26px; display:flex; flex-direction:column}
.feature-card h3, .detail-card h3{margin:18px 0 10px; color:var(--navy-2); font-size:var(--fs-h3)}
.feature-card p, .detail-card p{margin:0; color:var(--muted); font-size:var(--fs-body-sm); flex:1 1 auto}
.icon-chip{
  width:56px; height:56px; border-radius:16px; display:grid; place-items:center;
  font-size:var(--fs-icon); font-weight:800;
}
.icon-chip svg{
  width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:1.8;
  stroke-linecap:round; stroke-linejoin:round;
}
.icon-chip.teal{background:rgba(32,170,160,.12); color:var(--teal)}
.icon-chip.navy{background:rgba(32,78,134,.10); color:var(--navy)}
.icon-chip.neutral{background:rgba(23,56,95,.08); color:var(--navy-2)}

.split-section.alt{background:linear-gradient(180deg, #fff 0%, #f9fbfd 100%)}
.split-grid{display:grid; grid-template-columns:1fr 1fr; gap:42px; align-items:center}
.split-grid.reverse > :first-child{order:2}
.split-grid.reverse > :last-child{order:1}
.bullet-list{display:grid; gap:18px; margin:26px 0 28px}
.bullet-item{
  padding:18px 20px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow-soft);
}
.bullet-item h4{margin:0 0 6px; color:var(--navy-2); font-size:var(--fs-h4)}
.bullet-item p{margin:0; color:var(--muted); font-size:var(--fs-body-sm)}
.panel{border-radius:22px; padding:26px}
.stats-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
.stat-box{border:1px solid var(--line); border-radius:16px; padding:18px; background:var(--bg-soft)}
.stat-box strong{display:block; color:var(--navy-2); margin-bottom:4px; white-space:nowrap}
.stat-box span{color:var(--muted); font-size:var(--fs-body-sm)}
.solution-carousel{padding:16px; overflow:hidden}
.carousel-viewport{
  position:relative; aspect-ratio:16 / 10; border-radius:18px; overflow:hidden;
  background:var(--bg-soft); border:1px solid var(--line);
}
.carousel-slide{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transform:translateX(100%); transition:transform .45s ease, opacity .45s ease;
  cursor:pointer; pointer-events:none;
}
.carousel-slide.active{opacity:1; transform:translateX(0); pointer-events:auto}
.carousel-slide.previous{transform:translateX(-100%)}
.carousel-slide.next{transform:translateX(100%)}
.carousel-slide.slide-left{opacity:0; transform:translateX(-100%)}
.carousel-slide.slide-right{opacity:0; transform:translateX(100%)}
.carousel-controls{
  display:flex; align-items:center; justify-content:center; gap:14px; margin-top:14px;
}
.carousel-btn{
  width:38px; height:38px; border-radius:999px; border:1px solid var(--line);
  background:#fff; color:var(--navy-2); box-shadow:var(--shadow-soft);
  font-size:1.6rem; line-height:1; cursor:pointer; display:grid; place-items:center;
  transition:transform .2s ease, border-color .2s ease, color .2s ease;
}
.carousel-btn:hover{transform:translateY(-1px); border-color:rgba(32,170,160,.45); color:var(--teal)}
.carousel-dots{display:flex; align-items:center; gap:8px}
.carousel-dot{
  width:8px; height:8px; border-radius:999px; background:#d7e4ef; transition:width .2s ease, background .2s ease;
}
.carousel-dot.active{width:22px; background:var(--teal)}
.image-lightbox{
  position:fixed; inset:0; z-index:300; display:none; align-items:center; justify-content:center;
  padding:32px; background:rgba(10,27,48,.72); backdrop-filter:blur(10px);
}
.image-lightbox.active{display:flex}
.image-lightbox img{
  max-width:min(1100px, 94vw); max-height:86vh; border-radius:22px;
  box-shadow:0 30px 90px rgba(0,0,0,.32); background:#fff;
}
.lightbox-close{
  position:absolute; top:22px; right:24px; width:44px; height:44px; border:1px solid rgba(255,255,255,.35);
  border-radius:999px; background:rgba(255,255,255,.92); color:var(--navy-2); font-size:1.8rem;
  line-height:1; cursor:pointer; box-shadow:var(--shadow-soft);
}
.partner-benefits{display:grid; gap:16px}
.benefit-line{
  display:flex; justify-content:space-between; gap:20px; padding:14px 0; border-bottom:1px solid #edf2f6;
}
.benefit-line strong{color:var(--navy-2); white-space:nowrap; font-size:var(--fs-body-sm)}
.benefit-line span{color:var(--muted); text-align:right; font-size:var(--fs-body-sm)}

.steps-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.step-card{border-radius:20px; padding:28px; display:flex; flex-direction:column}
.step-no{
  width:54px; height:54px; border-radius:14px; display:grid; place-items:center;
  background:rgba(32,170,160,.12); color:var(--teal); font-weight:800; margin-bottom:20px;
}
.step-card h3{margin:0 0 8px; color:var(--navy-2); font-size:var(--fs-h3)}
.step-card p{margin:0; color:var(--muted); font-size:var(--fs-body-sm); flex:1 1 auto}

.examples-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.example-card{
  border-radius:20px; padding:26px; min-height:240px; display:flex; flex-direction:column; justify-content:space-between;
}
.example-card-image{
  width:100%; aspect-ratio:16 / 9; object-fit:cover; border-radius:16px; margin-bottom:18px;
  box-shadow:var(--shadow-soft);
}
.example-tag{
  display:inline-flex; padding:8px 12px; border-radius:999px;
  background:#f3f8ff; color:var(--navy-2); font-weight:700; font-size:var(--fs-label);
  white-space:nowrap;
}
.example-card h3{margin:16px 0 10px; color:var(--navy-2); font-size:var(--fs-h3)}
.example-card p{margin:0; color:var(--muted); font-size:var(--fs-body-sm)}

.pricing-section{background:linear-gradient(180deg, #fbfdff 0%, #fff 100%)}
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.price-card{border-radius:22px; padding:28px; position:relative; display:flex; flex-direction:column}
.price-card.featured{
  border-color:rgba(32,170,160,.22);
  box-shadow:0 20px 48px rgba(32,170,160,.10);
}
.price-tier{
  margin:0 0 12px; font-size:var(--fs-label); font-weight:800; text-transform:uppercase; color:var(--teal);
  white-space:nowrap;
}
.price-card h3{margin:0 0 12px; color:var(--navy-2); font-size:var(--fs-h3); min-height:58px; display:flex; align-items:flex-end}
.price-value{margin-bottom:18px; font-size:var(--fs-price); line-height:1; font-weight:800; color:var(--navy-2)}
.price-value span{display:block; margin-top:6px; font-size:var(--fs-body-sm); font-weight:600; color:var(--muted)}
.price-card ul{padding-left:18px; margin:0 0 22px; color:var(--muted); flex:1 1 auto}
.price-card li{margin:10px 0; font-size:var(--fs-body-sm)}

.demo-section{background:linear-gradient(180deg, #fff 0%, #f9fcfc 100%)}
.demo-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:28px; align-items:start}
.demo-form{
  border:1px solid var(--line); border-radius:22px; background:#fff; padding:24px; box-shadow:var(--shadow);
  display:flex; flex-direction:column;
}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px}
input, select, textarea{
  width:100%; border:1px solid #dbe5ee; border-radius:12px; padding:14px 16px;
  font:inherit; color:var(--text); background:#fff;
}
textarea{resize:vertical; margin-bottom:14px}
input:focus, select:focus, textarea:focus{
  outline:none; border-color:rgba(32,170,160,.55); box-shadow:0 0 0 4px rgba(32,170,160,.08);
}
.form-note{margin:12px 0 0; font-size:var(--fs-body-sm); color:var(--muted)}

.page-hero{
  padding:72px 0 36px; text-align:left;
  background:
    radial-gradient(circle at top left, rgba(32,170,160,0.07), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fcfeff 100%);
}
.page-hero .hero-copy{text-align:left}
.breadcrumbs{
  display:flex; gap:8px; color:var(--muted); font-size:var(--fs-body-sm); margin-bottom:18px;
}
.detail-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.cta-band{
  padding:34px; border-radius:22px; border:1px solid var(--line); background:linear-gradient(180deg,#fff,#fbfdfd);
  display:flex; align-items:center; justify-content:space-between; gap:24px; box-shadow:var(--shadow);
  flex-wrap:wrap;
}
.cta-band h3{margin:0 0 8px; color:var(--navy-2); font-size:var(--fs-h3)}
.cta-band p{margin:0; color:var(--muted); font-size:var(--fs-body-sm)}

.legal{
  padding:72px 0 96px;
}
.legal-card{
  max-width:900px; margin:0 auto; padding:36px; background:#fff; border:1px solid var(--line); border-radius:22px; box-shadow:var(--shadow);
}
.legal-card h1{font-size:var(--fs-hero); margin-top:0}
.legal-card h1.legal-title-single-line{
  font-size:clamp(2rem,4.7vw,3.7rem);
  white-space:nowrap;
  letter-spacing:-0.04em;
}
.legal-card h2{margin:32px 0 10px; color:var(--navy-2); font-size:var(--fs-h3)}
.legal-card h3{margin:24px 0 8px; color:var(--navy-2); font-size:var(--fs-body)}
.legal-card p, .legal-card li{color:var(--muted); font-size:var(--fs-body-sm)}
.legal-card ul{padding-left:20px}
.legal-document-cover{
  max-width:420px;
  margin:34px auto 28px;
  text-align:center;
}
.legal-document-cover h2{
  margin:18px 0;
}
.legal-document-cover p{
  margin:14px 0;
}
.legal-document-cover-left{
  max-width:none;
  width:100%;
  margin:34px 0 28px;
  text-align:center;
}
.legal-document-cover-left h2:last-of-type{
  padding-bottom:20px;
  border-bottom:1px solid var(--line);
}
.legal-table-wrap{overflow:auto; margin:18px 0}
.legal-table{width:100%; border-collapse:collapse; font-size:var(--fs-body-sm)}
.legal-table th, .legal-table td{padding:12px 14px; border:1px solid var(--line); vertical-align:top; text-align:left}
.legal-table th{background:var(--bg-soft); color:var(--navy-2)}
.legal-card ul li{margin-bottom:6px}
.legal-subtitle{font-size:var(--fs-body); color:var(--navy-2); font-weight:600; margin:4px 0}
.legal-date{font-size:var(--fs-body-sm); color:var(--muted); font-style:italic; margin-bottom:24px}
.legal-footer{margin-top:48px; padding-top:24px; border-top:1px solid var(--line); text-align:center}
.legal-footer p{color:var(--navy-2); font-size:var(--fs-body-sm)}
.legal-card a{color:var(--primary); text-decoration:underline}

.site-footer{
  padding:34px 0 48px; border-top:1px solid var(--line); background:#fff;
}
.footer-grid{display:flex; justify-content:space-between; align-items:flex-start}
.footer-logo{height:48px; width:auto; margin-bottom:10px}
.footer-text{margin:0; max-width:360px; color:var(--muted); font-size:var(--fs-body-sm)}
.footer-links{display:grid; gap:10px; color:var(--navy-2); font-weight:600; font-size:var(--fs-body-sm)}

/* About page */
.map-switcher{
  display:inline-flex; gap:8px; padding:6px; border:1px solid var(--line);
  border-radius:999px; background:#fff; box-shadow:var(--shadow-soft); margin:0 0 22px;
}
.map-provider-btn{
  border:0; border-radius:999px; background:transparent; color:var(--muted);
  padding:9px 14px; font:inherit; font-size:var(--fs-body-sm); font-weight:800; cursor:pointer;
}
.map-provider-btn.active{background:rgba(32,170,160,.1); color:var(--teal)}
.about-offices{display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start}
.office-map{border-radius:var(--radius); overflow:hidden}
.office-cards{display:grid; gap:18px}
.office-card{
  width:100%; text-align:left; padding:24px; border:1px solid var(--line); border-radius:18px;
  background:#fff; box-shadow:var(--shadow-soft); cursor:pointer; transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.office-card:hover, .office-card.active{border-color:rgba(32,170,160,.45); transform:translateY(-1px)}
.office-card.active{box-shadow:0 16px 34px rgba(32,170,160,.12)}
.office-city{
  font-size:var(--fs-h4); font-weight:700; color:var(--navy-2); margin-bottom:8px;
}
.office-address{margin:0; color:var(--muted); font-size:var(--fs-body-sm); line-height:1.6}
.about-text p{margin:0 0 18px; color:var(--muted); font-size:var(--fs-body); line-height:1.75}
.about-text p:last-child{margin-bottom:0}

/* Auth Action Section */
.auth-action-section {
  padding: 32px 0;
  background: linear-gradient(135deg, rgba(32, 170, 160, 0.05) 0%, rgba(32, 78, 134, 0.05) 100%);
  border-bottom: 1px solid var(--line);
}
.auth-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.auth-action-content {
  flex: 1;
}
.auth-action-title {
  margin: 0 0 8px;
  font-size: var(--fs-h2);
  color: var(--navy-2);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.auth-action-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
}
.auth-action-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  outline: none;
  border: none;
}
.auth-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 170, 160, 0.2);
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 56, 95, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-container {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(23, 56, 95, 0.2);
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-soft);
  border-radius: 50%;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: var(--bg-soft-2);
  color: var(--navy-2);
}
.modal-header {
  text-align: center;
  margin-bottom: 32px;
}
.modal-logo {
  margin-bottom: 20px;
}
.modal-logo img {
  height: 48px;
  width: auto;
  margin: 0 auto;
}
.modal-header h2 {
  margin: 0 0 8px;
  font-size: var(--fs-h2);
  color: var(--navy-2);
  font-weight: 800;
}
.modal-header p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body);
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-form .form-group {
  margin: 0;
}
.modal-form label {
  display: block;
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--navy-2);
  margin-bottom: 8px;
}
.modal-form input {
  width: 100%;
  border: 1.5px solid #dbe5ee;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: var(--fs-body);
  color: var(--text);
  background: #fff;
  transition: all 0.2s ease;
}
.modal-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(32, 170, 160, 0.1);
}
.modal-form input::placeholder {
  color: #a0aec0;
}
.checkbox-group {
  margin: 8px 0;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: var(--fs-body-sm);
  color: var(--muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--teal);
}
.checkbox-text {
  flex: 1;
}
.checkbox-text a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
}
.checkbox-text a:hover {
  color: var(--navy);
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.modal-footer {
  text-align: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.modal-footer p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body-sm);
}
.modal-footer a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.modal-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1120px){
  .hero-grid, .split-grid, .demo-grid{grid-template-columns:1fr}
  .feature-grid, .detail-grid{grid-template-columns:repeat(2,1fr)}
  .examples-grid, .pricing-grid, .steps-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .builder-grid{grid-template-columns:1fr}
  .auth-action-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 28px 32px;
  }
  .auth-action-buttons {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 960px){
  .site-nav{gap:16px}
  .nav-cta .btn{padding:10px 16px; font-size:var(--fs-body-sm)}
}
@media (max-width: 860px){
  .menu-toggle{display:block}
  .site-nav{
    display:none; position:absolute; left:20px; right:20px; top:84px;
    background:#fff; border:1px solid var(--line); border-radius:18px; padding:18px;
    box-shadow:var(--shadow); flex-direction:column; align-items:flex-start;
  }
  .site-nav.open{display:flex}
  .dropdown:hover .dropdown-menu{display:none}
  .dropdown-menu{
    position:static; display:none; box-shadow:none; border:0; padding:8px 0 0; min-width:auto;
  }
  .dropdown.open .dropdown-menu{display:block}
  .nav-cta{display:none}
  .hero-metrics, .feature-grid, .stats-grid, .trust-grid, .field-row, .footer-grid, .detail-grid, .about-offices{
    grid-template-columns:1fr;
  }
  .section{padding:76px 0}
  .brand-logo{height:46px}
  .cta-band{flex-direction:column; align-items:flex-start}
  .auth-action-section {
    padding: 24px 0;
  }
  .auth-action-card {
    padding: 24px;
  }
  .auth-action-buttons {
    flex-direction: column;
    width: 100%;
  }
  .auth-btn {
    width: 100%;
    justify-content: center;
  }
  .modal-container {
    padding: 32px 24px;
    margin: 10px;
  }
}
