@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

    :root{
      --navy:#142a4a;
      --navy2:#0f223d;
      --orange:#f2762e;
      --text:#1f2b3a;
      --muted:#5c6b82;
      --line:#d8dbe2;
      --card:#ffffff;
      --shadowSoft: 0 10px 28px rgba(14, 26, 46, .08);
      --shadowLift: 0 16px 44px rgba(14, 26, 46, .12);
      --max: 1120px;
      --ctaW: 720px;
    }


.hero::before {
  background: none !important;
}

.softbg::before {
  background: none !important;
}



    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      background:#1b2e55;
      line-height:1.65;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; display:block; }
    button, input, select, textarea{ font:inherit; color:inherit; }
    ::selection{ background: rgba(242,118,46,.22); }

    .wrap{ width: min(var(--max), calc(100% - 40px)); margin-inline:auto; }

    .softbg{ position:relative; }
    .softbg:before{
      content:"";
      position:absolute;
 
      background:
        radial-gradient(circle at 22% 18%, rgba(0,0,0,.06), transparent 36%),
        radial-gradient(circle at 78% 22%, rgba(0,0,0,.05), transparent 40%),
        radial-gradient(circle at 55% 78%, rgba(0,0,0,.045), transparent 44%);
      opacity:.38;
      pointer-events:none;
    }
    .softbg > *{ position:relative; z-index:1; }



body{ padding-top:60px; }

/* TOPBAR (NOWY) */
.topbar{
  background:var(--navy2);
  color:#fff;
  font-size:12.5px;
  letter-spacing:.2px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:9999;
  border-bottom:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.topbar:after{
  content:'';
  position:absolute;
  left:0; right:0; top:0;
  height:2px;
  background:var(--orange);
}

.topbar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0 12px;
}

.topbar .left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:220px;
}

.brandlink{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  opacity:.98;
}

.brand-logo{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
  font-family:Playfair Display, serif;
  font-size:14px;
  line-height:1;
}

.brand-name{
  font-size:13.5px;
  color:#fff;
  opacity:.96;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.navlink{
  display:inline-flex;
  align-items:center;
  height:32px;
  padding:0 12px;
  border-radius:2px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  font-size:12.5px;
  opacity:.95;
  transition:transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
}

.navlink:hover{
  filter:brightness(1.04);
  border-color:rgba(242,118,46,.35);
  background:rgba(242,118,46,.10);
  transform:translateY(-1px);
}
.navlink:active{ transform:translateY(0); }

.navlink.active{
  border-color:rgba(242,118,46,.55);
  background:rgba(242,118,46,.14);
}

/* RESPONSYWNOŚĆ BEZ HAMBURGERA */
@media (max-width:820px){
  .topbar .wrap.topbar-row{ gap:12px; }
  .topbar .left{ min-width:auto; }
  .nav{ gap:8px; }
  .navlink{ padding:0 10px; height:30px; }
}

@media (max-width:520px){
  .topbar .wrap.topbar-row{
    align-items:stretch;
    padding:10px 0 12px;
  }
  .topbar .left{ justify-content:center; }
  .nav{ justify-content:center; }
  .navlink{
    flex:1 1 auto;
    justify-content:center;
  }
}
    .hero{
      background:#1b2e55;
      color:#fff;
      position:relative;
      padding:54px 0 0;
      overflow:hidden;
    }
.hero:before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.10), transparent 56%),
    radial-gradient(circle at 85% 22%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(circle at 70% 90%, rgba(255,255,255,.06), transparent 58%);
  opacity: .95;
  pointer-events: none;
}

    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:44px;
      align-items:start;
      padding-bottom:80px;
    }

    .brand{
      display:flex;
      align-items:flex-start;
      gap:16px;
      margin-bottom:18px;
    }
    .brand .logo{
      width:58px;
      height:58px;
      border-radius:16px;

      display:grid;
      place-items:center;

    }
    .brand .logo span{
      font-family: Playfair Display, serif;
      font-size:20px;
      color:#fff;
    }
    .brand .text{ line-height:1.2; margin-top:2px; }
    .brand .text .name{ font-size:15px; opacity:.96; }
    .brand .text .sub{ font-size:12px; opacity:.76; margin-top:6px; }
    .brand .text .accent{ color:var(--orange); margin-top:6px; font-size:13px; opacity:.98; }

    h1,h2,h3,h4{ margin:0; letter-spacing:.2px; }
    .hero h1{
      font-family: Playfair Display, serif;
      font-size:44px;
      line-height:1.18;
      margin-top:10px;
    }
    .hero .h-accent{ color:var(--orange); }
    .hero .lead{
      margin-top:18px;
      max-width:560px;
      color:rgba(255,255,255,.86);
      font-size:14px;
    }

    .cta-row{
      margin-top:22px;
      display:flex;
      gap:16px;
      align-items:center;
      flex-wrap:wrap;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 18px;
      border-radius:2px;
      border:1px solid transparent;
      cursor:pointer;
      user-select:none;
      transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
      font-size:13px;
      letter-spacing:.2px;
    }
    .btn:active{ transform: translateY(1px); }
    .btn.orange{
      background:var(--orange);
      color:#fff;

      position:relative;
      overflow:hidden;
    }
    .btn.orange:before{
      content:"";
      position:absolute;
      top:0; left:-40%;
      width:40%; height:100%;
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
      transform:skewX(-20deg);
      opacity:.9;
      transition:left .65s ease;
    }
    .btn.orange:hover{
      filter: brightness(1.02);

      transform: translateY(-1px);
    }
    .btn.orange:hover:before{ left:115%; }

    .trust{
      margin-top:26px;
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      opacity:.98;
    }
    .trust .label{ font-size:12px; color:rgba(255,255,255,.80); margin-right:6px; }
    .trust .badge{
      width:54px; height:40px;
      border-radius:10px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.16);
      display:grid;
      place-items:center;
      font-size:11px;
      color:rgba(255,255,255,.92);
      line-height:1.05;
    }
    .trust .media{
      height:20px;
      display:inline-flex;
      align-items:center;
      padding:0 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.14);
      font-size:12px;
      color:rgba(255,255,255,.88);
    }

    .form-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.16);
      border-radius:2px;
      padding:28px 28px 22px;
      box-shadow:0 26px 60px rgba(0,0,0,.22);
      backdrop-filter: blur(7px);
    }
    .form-card h3{ font-family: Playfair Display, serif; font-size:26px; margin-bottom:4px; }
    .form-card .sub{ color:var(--orange); font-size:16px; margin-bottom:10px; }
    .mini{ font-size:12px; color:rgba(255,255,255,.82); margin-bottom:14px; }
    .underline{ width:110px; height:2px; background:var(--orange); margin:10px 0 18px; }

    .field{ display:flex; flex-direction:column; gap:10px; margin-bottom:12px; }
    .input, .select{
      background:#fff;
      border:1px solid rgba(15,34,61,.18);
      border-radius:2px;
      padding:10px 12px;
      height:38px;
      outline:none;
      font-size:13px;
      color:#1f2b3a;
      transition: box-shadow .18s ease, border-color .18s ease;
    }
    .input::placeholder{ color:#9aa4b3; }
    .input:focus, .select:focus{
      border-color: rgba(242,118,46,.55);
      box-shadow:0 0 0 3px rgba(242,118,46,.18);
    }

    /* ALERTY POD PRZYCISKIEM */
    .form-alert{
      margin-top:12px;
      border-radius:2px;
      padding:12px 12px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.06);
      color:rgba(255,255,255,.90);
      font-size:12.8px;
      line-height:1.6;
    }
    .form-alert.success{
      border-color: rgba(60, 220, 140, .35);
      background: rgba(60, 220, 140, .10);
    }
    .form-alert.error{
      border-color: rgba(255, 120, 120, .35);
      background: rgba(255, 120, 120, .10);
    }
    .form-alert a{
      color:#fff;
      text-decoration:underline;
      word-break:break-all;
    }
    .form-actions{
      display:flex;
      gap:10px;
      margin-top:10px;
      flex-wrap:wrap;
    }
    .miniBtn{
      height:34px;
      padding:0 12px;
      border-radius:2px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.08);
      color:#fff;
      cursor:pointer;
      font-size:12px;
      transition: transform .18s ease, filter .18s ease;
    }
    .miniBtn:hover{ filter: brightness(1.04); }
    .miniBtn:active{ transform: translateY(1px); }

    .g-recaptcha{ transform-origin:left top; }

    .floating-panel{
      position:relative;
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      transform: translateY(-40px) !important;
      z-index:2;
background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
    }
    .triple{
 background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
      box-shadow: var(--shadowSoft);

      display:grid;
      grid-template-columns: repeat(3, 1fr);
      overflow:hidden;
    }
    .triple .cell{
      padding:18px 18px 16px;
      text-align:center;
      font-size:16px;
      color:rgba(255,255,255,.82);
      position:relative;
    }
    .triple .cell .t{
      color:#f2762e;
      font-size:20px;
      margin-bottom:8px;
      font-family: Playfair Display, serif;
    }
    .triple .cell:not(:last-child){ border-right:2px solid rgba(255,255,255,.20); }

    .section{ padding:92px 0; position:relative; }
    .section.soft{ background:#1b2e55; }

    .head, .mini-head{
      text-align:left;
      max-width:var(--max);
      margin:0 auto 26px;
      width: min(var(--max), calc(100% - 40px));
    }

#faq .head{
  text-align:center;
}
#faq .head .bar{
  margin:12px auto 0;
}
#faq .head .subline{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

#kontakt .mini-head{
  text-align:center;
}

#kontakt .mini-head .bar{
  margin:12px auto 0;
}


#sprawdz .mini-head{
  text-align:center;
}

#sprawdz .mini-head .bar{
  margin:12px auto 0;
}

#sprawdz .mini-head .subline{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.mini-head.center{
  text-align:center;
}
.mini-head.center .bar{
  margin:12px auto 0;
}

    .head h2, .mini-head h2{
      font-family: Playfair Display, serif;
      font-size:34px;
      color:#fff;
      line-height:1.2;
    }
    .accent{ color:var(--orange); }
    .subline{ margin-top:10px; font-size:13px; color:rgba(255,255,255,.82); }
    .bar{height:2px; background:var(--orange); margin-top:12px; }

    .center-head{ text-align:center; margin-bottom:34px; }
    .center-head .bar{ margin:12px auto 0; }

    .two{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:32px;
      align-items:start;
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .image-card{
      padding:0;
      overflow:hidden;
      box-shadow: var(--shadowSoft);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.20);
    }


.image-card .img16x9{
  min-height:430px;
  background-position:center;
  background-size:contain;
  background-repeat:no-repeat;
}
    .p{
      margin:0 0 14px;
      color:rgba(255,255,255,.82);
      font-size:13px;
      line-height:1.7;
    }

    .cta-bar{
      width: min(var(--ctaW), calc(100% - 40px));
      margin:28px auto 0;
      background:var(--orange);
      height:32px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:12px;
      letter-spacing:.2px;
      box-shadow:0 16px 30px rgba(242,118,46,.18);
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
      position:relative;
      overflow:hidden;
    }
    .cta-bar:before{
      content:"";
      position:absolute;

      background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
      transform: translateX(-120%);
      transition: transform .85s ease;
    }
    .cta-bar:hover{
      transform: translateY(-1px);
      box-shadow:0 20px 38px rgba(242,118,46,.22);
      filter: brightness(1.02);
    }
    .cta-bar:hover:before{ transform: translateX(120%); }

    .boxRow{
      width: min(var(--max), calc(100% - 40px));
      margin:26px auto 0;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
    }
    .infoBox{
background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
      box-shadow: var(--shadowSoft);
      padding:16px 18px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      min-height:92px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .infoBox:hover{ transform: translateY(-2px); box-shadow: var(--shadowLift); }
    .iconBox{
      width:44px; height:44px;
      border:1px solid rgba(242,118,46,.35);
      background:rgba(242,118,46,.08);
      display:grid;
      place-items:center;
      color:var(--orange);
      font-size:18px;
      flex:0 0 auto;
    }
    .infoBox .t{
      font-family: Playfair Display, serif;
      font-size:20px;
      color:#fff;
      margin-bottom:6px;
      line-height:1.2;
    }
    .infoBox .d{ color:rgba(255,255,255,.82); font-size:12.5px; line-height:1.65; }

    .dark{
      background:#1b2e55;
      color:#fff;
      padding:96px 0;
      position:relative;
      overflow:hidden;
    }
    .dark:before{
      content:"";
      position:absolute;
     
      background:
        radial-gradient(circle at 18% 70%, rgba(255,255,255,.06), transparent 55%),
        radial-gradient(circle at 78% 60%, rgba(255,255,255,.05), transparent 58%);
      opacity:.9;
      pointer-events:none;
    }
    .dark .wrap{ position:relative; z-index:1; }
    .dark .center-head h2{ color:#fff; }
    .dark .subline{ color:rgba(255,255,255,.78); }
    .dark .bar{ margin:14px auto 0; }

    .steps{
      width: min(var(--max), calc(100% - 40px));
      margin: 34px auto 0;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:18px;
    }
    .step{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.20);
      padding:22px 22px 20px;
      min-height:240px;
      box-shadow:0 20px 52px rgba(0,0,0,.18);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }

    .step:hover{ transform: translateY(-3px); border-color: rgba(242,118,46,.35); box-shadow:0 28px 70px rgba(0,0,0,.22); }
    .step .ico{
      width:54px; height:54px;
      border:1px solid rgba(242,118,46,.40);
      background:rgba(242,118,46,.10);
      display:grid;
      place-items:center;
      color:var(--orange);
      font-size:22px;
      margin-bottom:12px;
      position:relative;
      z-index:1;
    }
    .step h3{
      font-family: Playfair Display, serif;
      font-size:20px;
      margin-bottom:10px;
      position:relative;
      z-index:1;
    }
    .step .line{ height:1px; background:rgba(255,255,255,.22); margin:10px 0 12px; position:relative; z-index:1; }
    .step p{ margin:0; font-size:12.5px; color:rgba(255,255,255,.82); position:relative; z-index:1; line-height:1.7; }

    .text-row{
      width: min(var(--max), calc(100% - 40px));
      margin:24px auto 0;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:28px;
      align-items:start;
    }
    .thinhr{ height:1px; background:rgba(15,34,61,.14); margin:18px 0 14px; }

    .sideBox{
background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
      box-shadow: var(--shadowSoft);
      padding:18px 18px 16px;
    }
    .sideBox .t{
      font-family: Playfair Display, serif;
      font-size:20px;
      color:#fff;
      margin-bottom:12px;
    }

    .list{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; }
    .list li{ display:flex; gap:10px; align-items:flex-start; color:rgba(255,255,255,.82); font-size:12.8px; line-height:1.7; }
    .tri{
      width:0; height:0;
      border-left:6px solid var(--orange);
      border-top:6px solid transparent;
      border-bottom:6px solid transparent;
      margin-top:6px;
      flex:0 0 auto;
    }

    .stories{
      width: min(var(--max), calc(100% - 40px));
      margin:34px auto 0;
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:26px;
    }
    .story{
background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
      box-shadow: var(--shadowSoft);
      padding:22px 22px 18px;
      min-height:260px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .story:hover{ transform: translateY(-2px); box-shadow: var(--shadowLift); }
    .story h3{ font-family: Playfair Display, serif; font-size:20px; color:#fff; margin-bottom:10px; }
    .story .hr{ height:1px; background:rgba(15,34,61,.14); margin:10px 0 12px; }
    .story p{ margin:0 0 12px; color:rgba(255,255,255,.82); font-size:12.8px; line-height:1.7; }

    .about-dark{
      background:#1b2e55;
      color:#fff;
      padding:96px 0;
      position:relative;
      overflow:hidden;
    }
    .about-dark:before{
      content:"";
      position:absolute;
    
      background:
        radial-gradient(circle at 20% 70%, rgba(255,255,255,.06), transparent 56%),
        radial-gradient(circle at 78% 66%, rgba(255,255,255,.05), transparent 58%);
      opacity:.9;
      pointer-events:none;
    }
    .about-dark .wrap{ position:relative; z-index:1; }
    .about-dark .center-head h2{ color:#fff; }
    .about-dark .subline{ color:rgba(255,255,255,.78); }
    .about-dark .bar{ margin:14px auto 0; }

    .about-grid{
      width: min(var(--max), calc(100% - 40px));
      margin:34px auto 0;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .about-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.20);
      padding:22px 22px 18px;
      box-shadow:0 22px 56px rgba(0,0,0,.18);
    }
    .about-card h3{ font-family: Playfair Display, serif; font-size:20px; margin-bottom:10px; }
    .about-card p{ margin:0 0 12px; font-size:12.8px; color:rgba(255,255,255,.82); line-height:1.75; }
    .about-card .foot{ margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,.18); color:rgba(255,255,255,.82); font-size:12px; }
    .about-card .name{ color:var(--orange); margin-top:4px; font-size:16px; }

    .portrait{
      overflow:hidden;
      border:1px solid rgba(255,255,255,.20);
      background:rgba(255,255,255,.06);
      box-shadow:0 22px 56px rgba(0,0,0,.18);
      display:flex;
      flex-direction:column;
    }
    .portrait .img{
      flex:1;
      background:url("https://otnij.pl/img/otnij.pl.webp") center/contain no-repeat;
      min-height:430px;
    }
    .portrait .cta{
      background:var(--orange);
      height:32px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:12px;
      letter-spacing:.2px;
    }
    .contact-grid{
      width: min(var(--max), calc(100% - 40px));
      margin:34px auto 0;
      display:grid;

      gap:26px;
      align-items:start;
    }
    .contact-box, .contact-form{
background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
      box-shadow: var(--shadowSoft);
      padding:20px;
    }
    .contact-box h3{
      font-family: Playfair Display, serif;
      font-size:20px;
      color:#fff;
      margin-bottom:12px;
    }
    .contact-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
    .contact-item{ display:flex; align-items:flex-start; gap:12px; color:rgba(255,255,255,.82); font-size:12.8px; line-height:1.7; }
    .contact-item .ico{
      width:30px; height:30px;
      border:1px solid rgba(242,118,46,.35);
      background:rgba(242,118,46,.08);
      display:grid;
      place-items:center;
      color:var(--orange);
      font-size:14px;
      flex:0 0 auto;
      margin-top:1px;
    }
    .contact-box .divider{ height:1px; background:rgba(15,34,61,.14); margin:18px 0 14px; }
    .contact-box p{ margin:0; color:rgba(255,255,255,.82); font-size:12.5px; line-height:1.7; }

    .contact-form h3{ font-family: Playfair Display, serif; font-size:20px; margin-bottom:4px; color:#fff; }
    .contact-form .sub{ color:var(--orange); margin-bottom:10px; }
    .contact-form .underline{ margin:10px 0 18px; width:110px; height:2px; }
    .contact-form .input, .contact-form .select{ border:1px solid rgba(15,34,61,.18); border-radius:2px; height:38px; }
    .contact-form .btn{ border-radius:2px; height:38px; }

    .faq{
      width:min(var(--max), calc(100% - 40px));
      margin:34px auto 0;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .faq-item{
background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
      box-shadow: 0 10px 26px rgba(14,26,46,.05);
      overflow:hidden;
      transition: box-shadow .18s ease, transform .18s ease;
    }
    .faq-item:hover{ transform: translateY(-1px); box-shadow: 0 14px 34px rgba(14,26,46,.07); }
    .faq-q{
      width:100%;
      text-align:left;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 16px;
background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
      cursor:pointer;
      font-size:13px;
      color:#fff;
    }
    .faq-q .sign{
      width:22px;
      height:22px;
      display:grid;
      place-items:center;
      color:var(--orange);
      flex:0 0 auto;
      font-size:16px;
      line-height:1;
    }
    .faq-q .sign::before{ content:"+"; }
.faq-a{
  height:0;
  overflow:hidden;
  transition:height .32s ease;
  background:rgba(60, 60, 60, 0.06);
  border-left:1px solid rgba(255,255,255,.20);
  border-right:1px solid rgba(255,255,255,.20);
  border-bottom:1px solid rgba(255,255,255,.20);
}

.faq-a .pad{
  padding:12px 16px 14px;
  color:rgba(255,255,255,.82);
  font-size:12.8px;
  line-height:1.7;
}

.faq-item.open .faq-q .sign::before{
  content:"–";
}

/* FOOTER */
.footerbar{
  background:var(--navy2);
  color:#fff;
  position:relative;
}

.footerbar:before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:2px;
  background:var(--orange);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:26px;
  padding:22px 0 26px;
  font-size:12.5px;
  color:rgba(255,255,255,.88);
  align-items:center;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-left{
  align-items:flex-start;
}

.footer-left-line{
  font-size:13px;
  letter-spacing:.2px;
  opacity:.92;
}

.footer-left-sub{
  font-size:12.2px;
  opacity:.72;
  line-height:1.6;
  max-width:320px;
}

.footer-center{
  align-items:center;
  text-align:center;
}

.footer-copy-text{
  line-height:1.6;
  opacity:.90;
}

.footer-right{
  align-items:flex-end;
}

.footer-title{
  font-size:13px;
  letter-spacing:.3px;
  line-height:1.2;
  margin-bottom:6px;
  text-align:right;
  width:100%;
  opacity:.92;
}


.social-footer-icons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.social-footer-icons a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:15px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.social-footer-icons a:hover{
  background:rgba(242,118,46,.18);
  border-color:rgba(242,118,46,.55);
  transform:translateY(-1px);
}

/* TABLET */
@media (max-width:900px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:18px;
    padding:20px 0 22px;
  }

  .footer-left,
  .footer-right{
    align-items:center;
    text-align:center;
  }

  .social-footer-icons{
    justify-content:center;
  }

  .footer-left-sub{
    max-width:520px;
  }
}

/* MOBILE */
@media (max-width:520px){
  .footer-grid{
    gap:14px;
    padding:16px 0 18px;
  }

  .footer-left{
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,.10);
  }

  .footer-center{
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,.10);
  }

  .social-footer-icons{
    gap:12px;
  }

  .social-footer-icons a{
    width:42px;
    height:42px;
    font-size:16px;
  }
}

/* FIX: footer title na mobile/tabla */
@media (max-width:900px){
  .footer-title{
    text-align:center;
    width:auto;
    margin-bottom:6px;
  }
}
    .reveal{
      opacity:0;
      transform: translateY(14px);
      transition: opacity .55s ease, transform .55s ease;
      will-change: opacity, transform;
    }
    .reveal.in{ opacity:1; transform: translateY(0); }

    .inlineAccent{ color:var(--orange); }

    @media (prefers-reduced-motion: reduce){
      *{ transition:none !important; animation:none !important; scroll-behavior:auto !important; }
      .reveal{ opacity:1 !important; transform:none !important; }
    }

    @media (max-width: 1020px){
      .topbar .center{ display:none; }
      .hero-grid{ grid-template-columns: 1fr; gap:22px; }
      .form-card{ max-width:520px; }
      .floating-panel{ transform: translateY(-26px); }
      .triple{ grid-template-columns: 1fr; }
      .triple .cell:not(:last-child){ border-right:0; border-bottom:2px solid rgba(255,255,255,.20); }
      .two{ grid-template-columns: 1fr; }
      .boxRow{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr; }
      .text-row{ grid-template-columns: 1fr; }
      .stories{ grid-template-columns: 1fr; }
      .about-grid{ grid-template-columns: 1fr; }
      .portrait .img{ min-height:360px; }
      .contact-grid{ grid-template-columns: 1fr; }
    }

    @media (max-width: 520px){
      .wrap{ width: min(var(--max), calc(100% - 28px)); }
      .hero{ padding-top:38px; }
      .hero h1{ font-size:34px; }
      .btn{ width:100%; }
      .form-card{ padding:22px 18px 18px; }
      .cta-bar{ height:auto; padding:10px 12px; text-align:center; }
      .head h2, .mini-head h2{ font-size:30px; }
    }

#scrollgora {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  padding: 0;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: none;
  cursor: pointer;
  z-index: 1000;
  background-color: var(--orange);
  color : #fff;
}

#scrollgora.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

#scrollgora:hover {
    background-color: var(--orange);
}

.partners-panel{
  position:relative;
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto 60px;
  transform:translateY(-40px);
  z-index:2;
}

.partners-box{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:var(--shadowSoft);
  padding:22px;
}

.partners-head{
  text-align:center;
  margin-bottom:18px;
}

.partners-head h2{
  font-family:Playfair Display, serif;
  font-size:30px;
  line-height:1.2;
  color:#fff;
  margin:0 0 10px;
}

.partners-head p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.7;
}

.partners-actions{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}

.partners-list-wrap{
  height:0;
  overflow:hidden;
  transition:height .38s ease;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.partner-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.20);
  padding:18px;
  text-align:center;
  box-shadow:0 10px 26px rgba(14,26,46,.05);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.partner-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadowLift);
  border-color:rgba(242,118,46,.35);
}

.partner-logo{
  width:100%;
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:14px;
}

.partner-logo img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

.partner-name{
  color:#fff;
  font-family:Playfair Display, serif;
  font-size:20px;
  line-height:1.2;
  margin-bottom:12px;
}

.partner-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  height:38px;
  padding:0 16px;
  border:1px solid rgba(242,118,46,.35);
  background:rgba(242,118,46,.10);
  color:#fff;
  transition:transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
}

.partner-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
  border-color:rgba(242,118,46,.55);
  background:rgba(242,118,46,.18);
}

.partners-cta{
  margin-top:22px;
}

.partners-cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 20px;
  border:1px solid rgba(242,118,46,.35);
  background:linear-gradient(135deg, rgba(242,118,46,.14), rgba(255,255,255,.05));
  box-shadow:0 12px 30px rgba(14,26,46,.08);
}

.partners-cta-text{
  color:#fff;
  font-family:Playfair Display, serif;
  font-size:22px;
  line-height:1.3;
}

.partners-cta-text span{
  display:block;
  margin-top:6px;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:13px;
  color:rgba(255,255,255,.84);
  line-height:1.7;
}

.partners-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  height:44px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.18);
  background:var(--orange);
  color:#fff;
  cursor:pointer;
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.partners-cta-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
  box-shadow:0 14px 28px rgba(242,118,46,.22);
}

@media (max-width:1020px){
  .partners-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .partners-cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .partners-cta-btn{
    width:100%;
  }
}

@media (max-width:640px){
  .partners-panel{
    width:min(var(--max), calc(100% - 28px));
    transform:translateY(-26px);
  }

  .partners-box{
    padding:18px;
  }

  .partners-head h2{
    font-size:26px;
  }

  .partners-grid{
    grid-template-columns:1fr;
  }

  .partner-logo{
    height:100px;
  }

  .partners-cta-text{
    font-size:20px;
  }
}