/* ===== Base ===== */
:root{
  --bg: #f6fafc;
  --card: rgba(255,255,255,.82);
  --text: #0f172a;
  --muted: rgba(15,23,42,.68);
  --line: rgba(15,23,42,.10);
  --blue: #2aa0d7;
  --blue2:#29ABE2;
  --radius: 26px;
  --shadow: 0 22px 60px rgba(2,8,23,.10);
  --shadow2: 0 12px 30px rgba(2,8,23,.08);
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(900px 500px at 15% 10%, rgba(42,160,215,.18), transparent 60%),
              radial-gradient(800px 420px at 85% 22%, rgba(11,79,116,.14), transparent 55%),
              var(--bg);
  overflow-x:hidden;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button, input, select{
  font:inherit;
}

/* ===== Layout ===== */
.container{
  width:min(1160px, calc(100% - 48px));
  margin-inline:auto;
}
.page{padding-top:78px}

.soft{padding:68px 0}
section:not(.soft){padding:68px 0}

.section-head{margin-bottom:18px}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:11px;
  font-weight:800;
  color:rgba(11,79,116,.75);
  margin-bottom:10px;
}
.h2{margin:0 0 10px; font-size:34px; letter-spacing:-.03em}
.sub{margin:0; color:var(--muted); line-height:1.6}

/* Default visible (so page never looks blank) */
.reveal{opacity:1; transform:none}
.reveal.in{opacity:1; transform:none}

/* ===== Buttons ===== */
.btn{
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.55);
  color: var(--text);
  padding:10px 14px;
  border-radius: 14px;
  cursor:pointer;
  transition:.25s var(--ease);
  box-shadow: 0 10px 20px rgba(2,8,23,.06);
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-size:13px;
}
.btn:hover{transform: translateY(-2px); box-shadow: 0 16px 34px rgba(2,8,23,.10)}
.btn:active{transform: translateY(0)}
.btn-primary{
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  color:#fff;
  border-color: rgba(255,255,255,.0);
}
.btn-ghost{
  background:#f3f6f8;
  border-color:#dbe3ea;
}
.btn-soft{
  background: rgba(42,160,215,.12);
  border-color: rgba(42,160,215,.18);
  color: var(--blue);
}

/* ===== WhatsApp Button ===== */
.btn-whatsapp{
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.btn-whatsapp{
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
  transition: all .25s ease;
}

.btn-whatsapp:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.35);
}

.btn-whatsapp:active{
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.25);
}

.icon-whatsapp{
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* ===== Header ===== */
.header{
  position:fixed;
  left:0; top:0; right:0;
  z-index:50;
  backdrop-filter: blur(16px);
  background: rgba(246,250,252,.72);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo{
  height: 34px;          /* tweak if needed */
  width: auto;
  display: block;
}
.logo{
  width:34px; height:34px;
  border-radius: 12px;
  background: radial-gradient(circle at 35% 30%, #fff, rgba(255,255,255,.0) 55%),
              linear-gradient(135deg, rgba(42,160,215,.85), rgba(11,79,116,.95));
  box-shadow: 0 14px 28px rgba(11,79,116,.18);
}
.nav{
  display:flex;
  gap:16px;
  padding:10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.5);
}
.nav a{
  font-size:13px;
  font-weight:800;
  color: rgba(15,23,42,.72);
  padding:8px 10px;
  border-radius: 12px;
  transition:.2s var(--ease);
}
.nav a:hover{background: rgba(42,160,215,.12); color: var(--blue)}
.header-cta{display:flex; gap:10px}

/* ===== Hero ===== */
.hero{padding-top:54px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.hero-card{
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:240px; height:240px;
  background: radial-gradient(circle at 40% 40%, rgba(42,160,215,.35), transparent 60%);
  filter: blur(2px);
  transform: rotate(10deg);
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(42,160,215,.12);
  border: 1px solid rgba(42,160,215,.18);
  color: var(--blue);
  font-weight:900;
  font-size:12px;
}
.hero h1{
  margin: 14px 0 12px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.04em;
}
.lead{
  margin:0 0 14px;
  color: var(--muted);
  line-height:1.65;
  font-weight:600;
}
.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.pill{
  font-size:12px;
  font-weight:900;
  color: rgba(11,79,116,.82);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.6);
}
.hero-form{
  margin-top: 10px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.hero-form-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom: 12px;
}
.hero-form-head strong{font-size:14px}
.hero-form-head span{font-size:12px; color: rgba(15,23,42,.60)}

.form{display:flex; flex-direction:column; gap:12px}
.form-row{display:flex; flex-direction:column; gap:6px}
.form-row label{
  font-size:12px;
  font-weight:900;
  color: rgba(15,23,42,.72);
}
.form-row input, .form-row select{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  outline:none;
}
.form-row input:focus, .form-row select:focus{
  border-color: rgba(42,160,215,.45);
  box-shadow: 0 0 0 4px rgba(42,160,215,.12);
}
.form-row.two{
  flex-direction:row;
  gap:10px;
}
.form-row.two > div{flex:1}

.check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:12px;
  color: rgba(15,23,42,.70);
  line-height:1.4;
}
.check input{margin-top:3px}

.form-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:2px}
.fineprint{margin-top: 28px; font-size:12px; color: rgba(15,23,42,.52)}
.hero-card .hero-form .fineprint{
  margin-top: 50px;
}
.mini-note{margin:6px 0 0; font-size:12px; color: rgba(11,79,116,.85); font-weight:800}

.hero-media{display:flex; flex-direction:column; gap:16px}
.media-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  box-shadow: var(--shadow);
}
.media-card img{
  width: 100%;
  height: clamp(460px, 58vh, 760px);
  object-fit: cover;
  object-position: center;
}
.media-card{
  height: 100%;
}

.hero-media{
  position: sticky;
  top: 110px; /* adjust if header overlaps */
}
.media-card figcaption{
  padding: 14px 16px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.media-card strong{font-weight:1000; font-size:13px}
.media-card span{color: var(--muted); font-size:12px; line-height:1.5}



.hero-form-wpforms .wpforms-container { margin: 0 !important; }
.hero-form-wpforms form.wpforms-form { width: 100%; }

.hero-form-wpforms .wpforms-field { margin-bottom: 14px; }
.hero-form-wpforms .wpforms-field-label { font-weight: 600; margin-bottom: 6px; }

.hero-form-wpforms input[type="text"],
.hero-form-wpforms input[type="email"],
.hero-form-wpforms input[type="tel"],
.hero-form-wpforms select {
  width: 100%;
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid #e6edf4;
  background: #fff;
}

.hero-form-wpforms .wpforms-submit {
  border-radius: 999px;
  padding: 12px 16px;
}

/* Allow dropdowns to escape the hero card */
.hero-card,
.hero-form,
.hero-form .wpforms-container,
.hero-form .wpforms-form {
  overflow: visible !important;
}

/* Make sure dropdown sits above everything */
.wpforms-container .choices,
.wpforms-container .choices__list--dropdown,
.wpforms-container .choices__list[aria-expanded="true"] {
  z-index: 99999 !important;
}

/* ===== Cards ===== */
.cards{
  display:grid;
  gap:14px;
}
.cards.three{grid-template-columns: repeat(3, 1fr)}
.card{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.76);
  padding: 18px;
  box-shadow: var(--shadow2);
  transition:.25s var(--ease);
}
.card:hover{transform: translateY(-4px); box-shadow: 0 18px 44px rgba(2,8,23,.10)}
.card h3{margin:0 0 8px; font-size:16px; letter-spacing:-.02em}
.card p{margin:0; color:var(--muted); line-height:1.6; font-size:13px}

/* ===== Profiles ===== */
.profiles{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.profile{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.76);
  padding: 18px;
  box-shadow: var(--shadow2);
  cursor:pointer;
  transition:.25s var(--ease);
  position:relative;
  overflow:hidden;
}
.profile:before{
  content:"";
  position:absolute;
  inset:auto -60px -60px auto;
  width:140px; height:140px;
  background: radial-gradient(circle at 30% 30%, rgba(42,160,215,.30), transparent 60%);
  transform: rotate(12deg);
}
.profile:hover{transform: translateY(-4px)}
.profile.active{
  border-color: rgba(42,160,215,.35);
  box-shadow: 0 18px 46px rgba(2,8,23,.12);
}
.profile h3{margin:0 0 6px; font-size:16px}
.profile p{margin:0 0 12px; color: var(--muted); line-height:1.55; font-size:13px}
.tag{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.65);
  font-size:12px;
  font-weight:900;
  color: rgba(11,79,116,.85);
}

/* ===== Models ===== */
.models-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 18px;
}
.model{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: var(--shadow2);
  transition:.25s var(--ease);
}
.model:hover{transform: translateY(-4px); box-shadow: 0 18px 44px rgba(2,8,23,.10)}
.model img{height:160px; width:100%; object-fit:cover}
.model-body{padding:14px}
.model-top{display:flex; align-items:flex-start; justify-content:space-between; gap:2px}
.model h3{margin:0; font-size:15px}
.model small{
  font-weight:900;
  color: rgba(15,23,42,.60);
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
  padding: 6px 10px;
  border-radius: 999px;
  font-size:11px;
}
.model p{margin:8px 0 12px; color: var(--muted); font-size:13px; line-height:1.55}
.model-actions{display:flex; gap:10px; flex-wrap:wrap}

/* ===== NEW Models code ===== */

.model-media img {
  width: 100%;
  height: auto;
  display: block;
}

.model-title .kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 6px;
}

.model-specs{
  display:flex;
  flex-direction: column;
  /*gap:28px;*/
  margin-bottom:10px;
}

.model-spec{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.model-spec .label{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#8c96a0;
  font-weight:600;
}

.model-spec .value{
  font-size:14px;
  font-weight:600;
  color:#1a1f26;
}

.model-desc {
  margin-top: 10px;
}

/* ===== Split Section ===== */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
  margin-top: 34px;
}
.split-media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: var(--shadow);
}
.split-media img{height:340px; width:100%; object-fit:cover}
.split-content{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.76);
  padding: 22px;
  box-shadow: var(--shadow2);
}
.bullets{display:flex; flex-direction:column; gap:12px; margin-top:14px}
.bullet{display:flex; gap:10px; align-items:flex-start}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  margin-top:6px;
  flex:0 0 auto;
}
.bullet strong{display:block; font-size:14px}
.bullet p{margin:2px 0 0; font-size:13px; color: var(--muted); line-height:1.55}
.split-actions{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}

/* ===== Spec Snapshot ===== */
.specs{
  margin-top: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  box-shadow: 0 12px 28px rgba(2,8,23,.06);
  padding: 22px;
}
.specs-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
}
.specs-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.specs-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.spec-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(2,8,23,.05);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.spec-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2,8,23,.10);
  border-color: rgba(42,160,215,.22);
}
.spec-kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0b4f74;
  opacity: .9;
  margin-bottom: 10px;
}
.spec-card h3{
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -.2px;
}
.spec-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.spec-list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(15,23,42,.02);
  border: 1px solid rgba(15,23,42,.08);
}
.spec-list strong{
  display:block;
  font-size: 14px;
  margin-bottom: 2px;
}
.spec-list span{
  display:block;
  font-size: 13px;
  color: var(--muted);
}
.specs-note{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(42,160,215,.18);
  background: rgba(42,160,215,.08);
}
.specs-note p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq{
  margin-top:28px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:0 12px 26px rgba(2,8,23,.05);
  padding:0;
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer;
  padding:16px 18px;
  font-weight:800;
  font-size:15px;
  list-style:none;
  position:relative;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
  color:#0b4f74;
  transition:.25s;
}
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{
  margin:0;
  padding:0 18px 18px;
  color:var(--muted);
  font-size:14px;
}

/* ===== Footer ===== */
.footer{
  padding: 38px 0;
  border-top: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.55);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.footer-inner span{display:block; color: rgba(15,23,42,.60); font-size:12px; margin-top:2px}
.footer-links{display:flex; gap:14px}
.footer-links a{font-weight:900; font-size:13px; color: rgba(11,79,116,.85)}

/* ===== Floating CTA ===== */
.floating-cta{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display:flex;
  gap:10px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(2,8,23,.14);
}

/* ===== Responsive ===== */
@media (max-width: 1060px){
  .nav{display:none}
  .hero-grid{grid-template-columns: 1fr}
  .media-card img{height:320px}
  
  .cards.three{grid-template-columns: 1fr}
  .profiles{grid-template-columns: 1fr}
  .models-grid{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .split-media img{height:280px}
  .footer-inner{flex-direction:column; align-items:flex-start}
  .specs-head{align-items:flex-start; flex-direction:column;}
  .specs-grid{grid-template-columns: 1fr;}
}

/* Hide WP/Divi page title on Seawind landing */
.page-id-2759 h1.main_title,
.page-id-2759 .entry-title {
  display: none !important;
}

/* Remove template padding on landing page */
.page-id-2759 .page {
  padding-top: 0 !important;
}

/* ✅ Remove Divi's default container top padding ONLY on the Seawind landing page */
body.page-id-2759:not(.et-tb) #main-content .container,
body.page-id-2759:not(.et-tb-has-header) #main-content .container{
  padding-top: 0 !important;
}

/* ✅ Consistent spacing for main sections */
.page .container section{
  padding-top: 68px;
  padding-bottom: 68px;
}

/* If some sections are inside "soft" already, you can keep them aligned */
.page .container section.soft{
  padding-top: 68px;
  padding-bottom: 68px;
}

/* ✅ Force consistent spacing on specific sections */
#modelGrid, #why, #specs{
  margin-top: 68px;
  margin-bottom: 136px;
}

.media-figure { margin: 0; }
.media-caption {
  margin-top: 10px;
  margin-left: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

#chaty-widget-0 .chaty-i-trigger .chaty-channel{
  display: none;
}