:root{
  --white:#ffffff;
  --blue:#215e99;
  --blue-dark:#18476f;
  --blue-soft:#eaf3fb;
  --text:#0b1220;
  --muted:#5b667a;
  --border:rgba(11,18,32,.12);
  --shadow:0 10px 30px rgba(11,18,32,.10);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.55;
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

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

.muted{
  color:var(--muted);
}

/* ===== Global Layout ===== */

.section{
  padding:92px 0;
}

.section-sm{
  min-height:500px;
  padding:0;
  display:flex;
  align-items:center;
}

.section-sm .container{
  width:min(1120px, calc(100% - 40px));
}

.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:34px;
}

.grid{
  display:grid;
  gap:28px;
}

.grid-2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.grid-3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px){
  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }

  .section{
    padding:72px 0;
  }

  .section-sm{
    min-height:auto;
    padding:72px 0;
  }
}

/* Header */

.site-header{
  position:fixed;
  top:0;
  z-index:50;
  width:100%;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-logo{
  width:44px;
  height:44px;
  object-fit:contain;
}

.brand-name{
  font-weight:800;
  letter-spacing:.2px;
}

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

.nav-link{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
}

.nav-link.active,
.nav-link:hover{
  background:var(--blue-soft);
  color:var(--blue);
}

.header-cta{
  margin-left:10px;
}

.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  padding:10px;
  border-radius:12px;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px 0;
  border-radius:2px;
}

@media (max-width: 860px){
  .nav{
    display:none;
  }

  .header-cta{
    display:none;
  }

  .nav-toggle{
    display:block;
  }

  body.menu-open .nav{
    display:flex;
    position:absolute;
    left:0;
    right:0;
    top:68px;
    background:var(--white);
    border-bottom:1px solid var(--border);
    padding:14px 20px;
    flex-direction:column;
    align-items:flex-start;
  }

  body.menu-open .header-cta{
    display:inline-flex;
    margin:10px 0 0 0;
  }

  body.menu-open .header-inner{
    position:relative;
  }
}

/* Buttons */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 24px;
  border-radius:14px;
  border:1px solid transparent;
  font:inherit;
  font-size:15px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  text-align:center;
  white-space:nowrap;
  box-sizing:border-box;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

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

.btn-primary{
  background:var(--blue);
  border-color:var(--blue);
  color:var(--white);
  box-shadow:0 12px 28px rgba(33,94,153,.22);
}

.btn-primary:hover{
  background:var(--blue-dark);
  border-color:var(--blue-dark);
  color:var(--white);
  box-shadow:0 16px 34px rgba(33,94,153,.28);
}

.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.42);
  color:var(--white);
}

.btn-outline:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.62);
  color:var(--white);
}

.btn-outline-dark{
  background:#fff;
  border-color:rgba(33,94,153,.24);
  color:var(--blue);
}

.btn-outline-dark:hover{
  background:var(--blue-soft);
  border-color:rgba(33,94,153,.35);
  color:var(--blue-dark);
}

.btn-block{
  width:100%;
}

.btn-row{
  margin-top:32px;
  margin-bottom:46px;
}

.btn-row .btn-primary{
  margin-right:10px;
}

.cta .btn-row,
.partner-content .btn-row{
  margin-bottom:0;
}

/* Hero */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}

.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  z-index:0;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      90deg,
      rgba(11,18,32,.72) 0%,
      rgba(11,18,32,.42) 42%,
      rgba(11,18,32,.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(11,18,32,.15) 0%,
      rgba(11,18,32,.18) 45%,
      rgba(11,18,32,.42) 100%
    );
}

.hero-content{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  padding:0 0 100px 100px;
}

.hero-content .container{
  width:min(1120px, calc(100% - 40px));
}

.hero-box{
  max-width:430px;
  color:var(--white);
}

/* Homepage title: each word below each other */
.hero-title-stacked span{
  display:block;
}

/* Other pages: keep titles like "Über uns" on one line */
.hero-box:not(.hero-box-home) h1{
  max-width:none;
  white-space:nowrap;
}

.hero-subtitle{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:18px;
  backdrop-filter:blur(8px);
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-weight:700;
}

.hero h1,
.hero-content h1{
  margin:0;
  max-width:430px;
  color:var(--white);
  font-size:clamp(58px, 6.4vw, 96px);
  line-height:.88;
  letter-spacing:-.065em;
  font-weight:900;
}

.hero p,
.hero-content p{
  margin:24px 0 0;
  max-width:560px;
  font-size:17px;
  line-height:1.65;
  color:rgba(255,255,255,.92);
}

.hero-actions{
  margin-top: 30px;
  margin-bottom: 0;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}

.hero-actions .btn{
  width:180px;
  min-width:180px;
  max-width:180px;
  height:58px;
  min-height:58px;
  padding:0 18px;
}

.hero-actions .btn-primary{
  margin-right:0;
}

@media (max-width: 860px){
  .hero{
    min-height:88vh;
  }

  .hero-content{
    min-height:88vh;
    padding:0 0 70px 40px;
  }

  .hero-box{
    max-width:100%;
  }

  .hero h1,
  .hero-content h1{
    max-width:340px;
    font-size:clamp(46px, 13vw, 68px);
    line-height:.9;
  }

  .hero-box:not(.hero-box-home) h1{
    max-width:none;
    white-space:nowrap;
  }

  .hero p,
  .hero-content p{
    font-size:15px;
    max-width:100%;
  }
}

@media (max-width: 640px){
  .hero-content{
    padding:0 24px 54px;
  }

  .hero h1,
  .hero-content h1{
    max-width:290px;
    font-size:clamp(42px, 14vw, 58px);
  }

  .hero-box:not(.hero-box-home) h1{
    max-width:none;
    white-space:nowrap;
    font-size:clamp(42px, 13vw, 58px);
  }

  .hero-actions{
    width:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;
  }

  .hero-actions .btn{
    flex:1 1 0;
    width:auto;
    min-width:0;
    max-width:none;
    height:56px;
    min-height:56px;
    padding:0 10px;
    font-size:14px;
  }
}

/* Section Headings */

.section-title{
  font-size:28px;
  margin:0 0 42px;
}

.section-title h2{
  margin-bottom:18px;
}

.section-title p,
.section-lead{
  max-width:620px;
  line-height:1.75;
}

.section-lead{
  margin:0 0 36px;
  color:var(--muted);
}

/* Features */

.features-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  position:relative;
  z-index:10;
  margin-top:0;
  margin-bottom:0;
}

.feature{
  background:rgba(255,255,255,.94);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  text-align:center;
  box-shadow:var(--shadow);
  min-height:210px;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.feature:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 42px rgba(11,18,32,.13);
}

.feature-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  background:var(--blue-soft);
  color:var(--blue);
  font-size:1.35rem;
  font-weight:800;
}

.feature p{
  max-width:92%;
  margin:10px auto 0;
  color:var(--muted);
}

@media (max-width: 1100px){
  .features-grid{
    grid-template-columns:1fr;
    margin-top:0;
  }
}

/* Premium About Section */

.about-premium{
  background:#fff;
}

.about-premium-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:stretch;
}

.about-visual{
  min-height:560px;
  border-radius:32px;
  overflow:hidden;
  position:relative;
  background:
    linear-gradient(180deg, rgba(7,21,40,.12), rgba(7,21,40,.74)),
    url("assets/images/mastercraft-nxt20.jpg") center/cover no-repeat;
  box-shadow:var(--shadow);
}

.about-visual::after{
  content:"";
  position:absolute;
  inset:22px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:24px;
  pointer-events:none;
}

.about-visual-content{
  position:absolute;
  left:34px;
  right:34px;
  bottom:34px;
  color:#fff;
}

.about-visual-content span{
  display:inline-flex;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  font-weight:800;
}

.about-visual-content h2{
  max-width:460px;
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(34px, 3.5vw, 52px);
  line-height:1;
  letter-spacing:-.04em;
}

.about-visual-content p{
  max-width:420px;
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:16px;
  line-height:1.65;
}

.about-content{
  background:#f7fbff;
  border:1px solid rgba(11,18,32,.08);
  border-radius:32px;
  padding:54px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about-label{
  display:inline-flex;
  width:fit-content;
  margin-bottom:18px;
  padding:7px 12px;
  border-radius:999px;
  background:var(--blue-soft);
  color:var(--blue);
  font-size:13px;
  font-weight:900;
}

.about-content h2{
  max-width:600px;
  margin:0 0 18px;
  font-size:clamp(32px, 3vw, 48px);
  line-height:1.04;
  letter-spacing:-.04em;
}

.about-content > p{
  max-width:540px;
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}

.about-points{
  display:grid;
  gap:16px;
  margin-top:36px;
}

.about-point{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(11,18,32,.08);
}

.about-point-icon{
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--blue-soft);
  color:var(--blue);
  font-weight:900;
}

.about-point strong{
  display:block;
  margin-bottom:4px;
  color:var(--text);
  font-size:16px;
}

.about-point span{
  display:block;
  color:var(--muted);
  line-height:1.55;
}

.about-actions{
  margin-top:38px;
  margin-bottom:0;
}

@media (max-width: 1000px){
  .about-premium-grid{
    grid-template-columns:1fr;
  }

  .about-visual{
    min-height:420px;
  }

  .about-content{
    padding:38px;
  }
}

@media (max-width: 640px){
  .about-visual{
    min-height:360px;
    border-radius:24px;
  }

  .about-content{
    padding:28px;
    border-radius:24px;
  }

  .about-point{
    padding:16px;
  }
}

/* Old About Section Support */

.wc-about .wc-about-card p{
  margin:0;
}

.wc-about-heading{
  margin:0 0 12px;
  font-weight:900;
  color:var(--text);
}

.wc-about-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  display:grid;
  gap:10px;
}

.wc-about-list strong{
  color:var(--text);
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:stretch;
}

.about-copy,
.about-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.about-copy{
  padding:42px;
}

.about-copy p + p{
  margin-top:16px;
}

.about-copy .btn-row{
  margin-bottom:44px;
}

.about-highlights{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:46px;
}

.about-highlight{
  padding:18px;
  border-radius:18px;
  background:#f7fbff;
  border:1px solid rgba(11,18,32,.08);
}

.about-highlight strong{
  display:block;
  margin-bottom:6px;
  color:var(--text);
}

.about-highlight span{
  color:var(--muted);
}

.about-side-card{
  padding:0;
  overflow:hidden;
  position:relative;
}

.about-side-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg, var(--blue), #5ea2e8);
}

.about-side-body{
  padding:42px;
}

.about-side-list{
  display:grid;
  gap:16px;
  margin-top:24px;
}

.about-side-list div{
  color:var(--muted);
  line-height:1.65;
  padding-left:20px;
  position:relative;
}

.about-side-list div::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--blue);
  position:absolute;
  left:0;
  top:.65em;
  box-shadow:0 0 0 6px rgba(33,94,153,.08);
}

@media (max-width: 1100px){
  .about-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .about-highlights{
    grid-template-columns:1fr;
  }
}

/* Benefits */

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  margin-top:46px;
}

.benefit-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.benefit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 42px rgba(11,18,32,.13);
}

.benefit-number{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:var(--blue-soft);
  color:var(--blue);
  font-weight:800;
  margin-bottom:22px;
}

.benefit-card h3{
  margin-bottom:12px;
}

.benefit-card p{
  max-width:92%;
  margin-top:0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.65;
}

@media (max-width: 1100px){
  .benefits-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .benefits-grid{
    grid-template-columns:1fr;
  }
}

/* Boats */

.boat-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
  margin-bottom:14px;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:var(--blue-soft);
  color:var(--blue);
  font-weight:800;
  font-size:12px;
}

/* ===== Our Boats Alternating Layout ===== */

.wc-boats{
  padding:96px 0;
  background:#eef5fb;
}

.wc-boats-title{
  font-size:28px;
  font-weight:900;
  margin:0 0 10px;
}

.wc-boats-subtitle{
  color:var(--muted);
  margin:0 0 46px;
  max-width:720px;
  line-height:1.75;
}

.wc-boats-list{
  display:flex;
  flex-direction:column;
  gap:72px;
}

.wc-boat-row{
  display:flex;
  align-items:center;
  gap:56px;
}

.wc-boat-row-reverse{
  flex-direction:row-reverse;
}

.wc-boat-media{
  flex:1 1 50%;
  height:320px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.wc-boat-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.wc-boat-content{
  flex:1 1 50%;
  background:#fff;
  border-radius:20px;
  border:1px solid var(--border);
  padding:38px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.wc-boat-badge{
  font-size:12px;
  font-weight:800;
  padding:6px 12px;
  border-radius:999px;
  background:var(--blue-soft);
  color:var(--blue);
  width:fit-content;
  margin-bottom:16px;
}

.wc-boat-badge-alt{
  background:rgba(33,94,153,.12);
  color:var(--blue-dark);
}

.wc-boat-name{
  font-size:22px;
  font-weight:900;
  margin:0 0 14px;
}

.wc-boat-desc{
  font-size:15px;
  line-height:1.75;
  color:var(--muted);
  margin-bottom:26px;
}

.wc-boat-link{
  margin-top:28px;
  align-self:flex-start;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid rgba(33,94,153,.25);
  background:#fff;
  color:var(--blue);
  font-weight:800;
}

.wc-boat-link:hover{
  background:var(--blue-soft);
}

@media (max-width: 900px){
  .wc-boats{
    padding:82px 0;
  }

  .wc-boat-row,
  .wc-boat-row-reverse{
    flex-direction:column;
    gap:26px;
  }

  .wc-boat-media{
    width:100%;
    height:240px;
  }

  .wc-boat-content{
    width:100%;
    padding:28px;
  }
}

/* Experiences */

.experiences-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  margin-top:46px;
}

.experience-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
  min-height:220px;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.experience-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 42px rgba(11,18,32,.13);
}

.experience-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--blue-soft);
  color:var(--blue);
  font-weight:800;
  margin-bottom:18px;
}

.experience-card h3{
  margin-bottom:12px;
}

.experience-card p{
  max-width:92%;
  margin-top:0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.65;
}

@media (max-width: 1100px){
  .experiences-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .experiences-grid{
    grid-template-columns:1fr;
  }
}

/* Reviews */

.review{
  border-left:4px solid var(--blue);
  padding-left:14px;
}

.stars{
  letter-spacing:1px;
}

.wc-reviews{
  margin-bottom:50px;
}

/* Reviews FLEX Layout */

.wc-reviews-grid{
  --gap:26px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:stretch;
  gap:var(--gap);
  width:100%;
  margin:0 auto;
}

.wc-review-card{
  flex:0 1 calc((100% - (var(--gap) * 2)) / 3);
  min-width:300px;
  min-height:250px;
  height:250px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:24px;
  display:flex;
  flex-direction:column;
  position:relative;
}

.wc-review-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.wc-review-user{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.wc-review-meta{
  min-width:0;
}

.wc-review-avatar{
  width:44px;
  height:44px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid var(--border);
  background:#fff;
  flex:0 0 auto;
}

.wc-review-avatar-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background:var(--blue);
}

.wc-review-name{
  font-weight:800;
  color:var(--text);
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:210px;
}

.wc-review-time{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}

.wc-review-stars{
  font-size:16px;
  letter-spacing:2px;
  color:#f5a623;
  white-space:nowrap;
  margin-top:2px;
  flex:0 0 auto;
}

.wc-review-text{
  color:var(--muted);
  font-size:14.5px;
  line-height:1.65;
  display:-webkit-box;
  -webkit-line-clamp:6;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.wc-review-card::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:14px;
  height:24px;
  pointer-events:none;
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  border-radius:12px;
}

.wc-reviews-bottom{
  text-align:right;
  margin-top:32px;
}

@media (max-width: 980px){
  .wc-review-card{
    flex-basis:calc((100% - var(--gap)) / 2);
    height:250px;
  }
}

@media (max-width: 640px){
  .wc-review-card{
    flex-basis:100%;
    height:auto;
  }

  .wc-review-card::after{
    display:none;
  }

  .wc-review-text{
    -webkit-line-clamp:10;
  }
}

/* Partner Section */

.partner-section{
  background:linear-gradient(180deg, #f1f6fc 0%, #eaf2fb 100%);
  position:relative;
}

.partner-section .section-title{
  margin-bottom:50px;
}

.partner-card{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:0;
  overflow:hidden;
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.partner-logo-wrap{
  min-height:320px;
  background:linear-gradient(135deg, #ffffff 0%, #edf4fb 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:42px;
  border-right:1px solid rgba(14,35,67,.06);
}

.partner-logo-wrap img{
  max-width:260px;
  max-height:130px;
  object-fit:contain;
}

.partner-content{
  padding:46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.partner-content .btn-row{
  margin-top:34px;
  margin-bottom:0;
}

.partner-content h3{
  font-size:1.65rem;
  color:var(--blue-dark);
  margin-bottom:14px;
}

.partner-meta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(33,94,153,.08);
  color:var(--blue);
  font-size:.82rem;
  font-weight:700;
  margin-bottom:18px;
}

.partner-description{
  margin-bottom:0;
  max-width:560px;
  line-height:1.75;
  color:var(--muted);
}

.partner-note{
  color:var(--text) !important;
  font-weight:600;
  margin-bottom:14px;
}

@media (max-width: 1100px){
  .partner-card{
    grid-template-columns:1fr;
  }

  .partner-logo-wrap{
    border-right:0;
    border-bottom:1px solid rgba(14,35,67,.06);
  }
}

@media (max-width: 860px){
  .partner-content{
    padding:30px;
  }

  .partner-logo-wrap{
    min-height:220px;
    padding:30px;
  }
}

/* CTA */

.cta{
  padding:112px 0;
  background:linear-gradient(135deg, #14589c 0%, #2d6db3 100%);
  color:var(--white);
  position:relative;
  overflow:hidden;
}

.cta::before{
  content:'';
  position:absolute;
  inset:auto auto -140px -80px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.cta::after{
  content:'';
  position:absolute;
  inset:-120px -60px auto auto;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
}

.cta-box{
  text-align:center;
  max-width:820px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

.cta-box p{
  color:rgba(255,255,255,.88);
  font-size:1.08rem;
  margin-top:18px;
  line-height:1.75;
}

.cta .btn-row{
  margin-top:42px;
  margin-bottom:0;
  justify-content:center;
}

/* Forms */

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

.field label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}

.field input,
.field textarea,
.field select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  outline:none;
  font:inherit;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:rgba(33,94,153,.55);
  box-shadow:0 0 0 4px rgba(33,94,153,.12);
}

.field textarea{
  min-height:140px;
  resize:vertical;
}

.note{
  background:var(--blue-soft);
  border:1px solid rgba(33,94,153,.25);
  border-radius:var(--radius);
  padding:14px;
}

/* FAQ */

.faq details{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  background:var(--white);
}

.faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--blue-dark);
}

/* Footer */

.site-footer{
  background:#071528;
  color:rgba(255,255,255,.92);
  padding:64px 0 26px;
  margin-top:0;
}

.footer-inner{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:34px;
  align-items:start;
}

.footer-brand{
  font-weight:900;
  font-size:18px;
}

.footer-title{
  font-weight:900;
  margin-bottom:14px;
}

.footer-link{
  display:block;
  padding:7px 0;
  color:rgba(255,255,255,.82);
}

.footer-link:hover{
  color:var(--white);
}

.footer-bottom{
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.12);
}

@media (max-width: 900px){
  .footer-inner{
    grid-template-columns:1fr;
  }
}

/* Responsive Spacing */

@media (max-width: 860px){
  .card,
  .feature,
  .benefit-card,
  .experience-card,
  .wc-review-card,
  .about-copy,
  .about-side-body,
  .partner-content{
    padding:28px;
  }

  .features-grid{
    margin-top:0;
  }

  .btn-row{
    margin-top:30px;
    margin-bottom:34px;
  }

  .about-highlights,
  .benefits-grid,
  .experiences-grid{
    margin-top:36px;
  }

  .cta{
    padding:92px 0;
  }
}

@media (max-width: 640px){
  .container{
    width:min(1120px, calc(100% - 24px));
  }

  .btn-row{
    flex-direction:column;
    align-items:stretch;
  }

  .btn-row .btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:row;
    align-items:center;
  }

  .hero-actions .btn{
    width:auto;
  }

  .section-title{
    margin-bottom:34px;
  }
}