:root{
  --bg: #F6F8FB;
  --surface: #FFFFFF;
  --card: #FFFFFF;
  --card2: #F3F6F9;
  --text: #0F2A3A;
  --muted: #5B6B77;
  --brand: #35c7c8;
  --brand2:#2fb7b8;
  --accent:#f6c451;
  --shadow: 0 20px 50px rgba(15,42,58,.12);
  --radius: 18px;
  --radius2: 24px;
  --max: 1120px;
  --border: rgba(15,42,58,.12);
  --header-bg: #FFFFFF;
  --navy: #0F2A3A;
  --logo-h: 112px;
  --logo-max: 520px;
  --logo-h-sm: 80px;
  --logo-max-sm: 380px;
  --footer-accent: #14B8B0;
  --header-height: calc(var(--logo-h) + 16px);
  --ice: #EEF5F9;
}

*{box-sizing:border-box}
html,body{margin:0; padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 18% -10%, rgba(53,199,200,.16), transparent 60%),
    radial-gradient(900px 520px at 98% 10%, rgba(246,196,81,.12), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.muted{color:var(--muted)}
.small{font-size:.92rem}

.skip{
  position:absolute; left:-999px; top:auto;
  background:#fff; color:#000; padding:10px 14px; border-radius:12px; z-index:9999;
}
.skip:focus{left:16px; top:16px}

.header{
  position:sticky; top:0; z-index:50;
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:6px 0;
}
.brand{
  display:flex; align-items:center;
  flex:0 1 auto;
  min-width:220px;
}
.brand__logo{
  width:auto;
  max-width:var(--logo-max);
  height:var(--logo-h);
  object-fit:contain;
  image-rendering:auto;
}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__name{font-weight:700; letter-spacing:.2px}
.brand__sub{font-size:.86rem; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:14px}
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-left:8px;
}
.lang-switch__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:20px;
  border-radius:6px;
  overflow:hidden;
  border:none;
  background:transparent;
  box-shadow: 0 6px 14px rgba(15,42,58,.18);
}
.lang-switch__link.is-active{
  box-shadow: 0 0 0 2px rgba(20,184,176,.35);
  border-color: rgba(20,184,176,.6);
}
.lang-switch__flag{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.nav__link{
  font-size:1rem;
  font-weight:600;
  color: var(--navy);
  padding:10px 10px;
  border-radius:12px;
}
.nav__link:hover{background: #14B8B0; color: var(--navy)}
.nav__link.is-active{background: rgba(15,42,58,.10); color: var(--navy)}
.nav__cta{margin-left:4px}
.header .nav__cta.btn--primary{
  background: var(--navy);
  border-color: var(--navy);
  color:#fff;
}
.header .nav__cta.btn--primary:hover{filter:none; background:#14384c}

.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border: 1px solid rgba(15,42,58,.32);
  background: rgba(15,42,58,.06);
}
.nav-toggle span{display:block; height:2px; background: var(--navy); margin:6px 10px; border-radius:2px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 18px; border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 30px rgba(15,42,58,.14);
  font-weight:600;
  white-space:nowrap;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.btn--small{padding:10px 14px; font-size:.95rem}
.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(0,0,0,.05);
  color:#03141d;
}
.btn--primary:hover{filter: brightness(1.03)}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0,0,0,.28);
}
.btn:active{
  transform: translateY(0);
  box-shadow: 0 14px 24px rgba(0,0,0,.24);
}
@media (hover: none){
  .btn{transition: transform .18s ease, box-shadow .18s ease}
  .btn:active{
    transform: scale(.98);
    box-shadow: 0 10px 20px rgba(0,0,0,.22);
  }
}
.btn--ghost{background: transparent}
.hero .btn--ghost{
  border-color: rgba(255,255,255,.45);
  color: rgba(255,255,255,.95);
}
.btn--accent{
  background: linear-gradient(135deg, var(--accent), #ffd97a);
  border-color: rgba(0,0,0,.05);
  color:#201600;
}

.section{padding:70px 0}
.section--tight{padding:44px 0}
.section--services{
  background:
    radial-gradient(420px 220px at 10% -20%, rgba(53,199,200,.22), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,255,255,.35));
  border-top: 1px solid rgba(53,199,200,.18);
  border-bottom: 1px solid rgba(53,199,200,.18);
}

.wa-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background: #1fbf61;
  color:#fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 30px rgba(15,42,58,.18);
  font-weight:600;
  text-decoration:none;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15,42,58,.24);
  filter: brightness(1.03);
}
.wa-float__icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.wa-float__icon svg{
  width:20px;
  height:20px;
  display:block;
}
@media (max-width: 640px){
  .wa-float{
    padding:12px;
  }
  .wa-float__text{display:none}
}

.cookies-table-wrap{
  overflow-x:auto;
  margin-top:12px;
}
.cookies-table{
  width:100%;
  border-collapse: collapse;
  font-size:.95rem;
}
.cookies-table th,
.cookies-table td{
  text-align:left;
  padding:10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cookies-table th{
  color: var(--text);
  font-weight:600;
}
.cookies-table td{
  color: var(--muted);
}

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1000;
  background: rgba(7,27,38,.92);
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  transform: translateY(10px);
  opacity:0;
  pointer-events:none;
  transition: opacity .3s ease, transform .3s ease;
  backdrop-filter: blur(8px);
}
.cookie-banner.is-visible{
  opacity:1;
  transform:none;
  pointer-events:auto;
}
.cookie-banner__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 20px;
}
.cookie-banner__content{
  display:flex;
  align-items:center;
  gap:12px;
  max-width:760px;
}
.cookie-banner__icon{
  width:26px;
  height:26px;
  border-radius:50%;
  background: rgba(20,184,176,.18);
  color:#14B8B0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:.9rem;
  flex:0 0 auto;
}
.cookie-banner__text p{
  margin:0;
  font-size:.92rem;
  color: rgba(255,255,255,.84);
}
.cookie-banner__text p + p{margin-top:2px}
.cookie-banner__text a{
  color:#9fe8e6;
  text-decoration:underline;
}
.cookie-banner__actions{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}
.cookie-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:12px;
  border:1px solid rgba(15,42,58,.14);
  font-weight:600;
  font-size:.9rem;
  background:#fff;
  color:#0F2A3A;
  cursor:pointer;
}
.cookie-btn--primary{
  background:#0F2A3A;
  color:#fff;
  border-color:#0F2A3A;
}
.cookie-btn--ghost{background:transparent}
.cookie-btn--icon{
  width:30px;
  height:30px;
  padding:0;
  border-radius:999px;
}
.cookie-banner .cookie-btn{
  background: transparent;
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.24);
}
.cookie-banner .cookie-btn--primary{
  background:#14B8B0;
  color:#0B2330;
  border-color:#14B8B0;
}
.cookie-banner .cookie-btn--ghost{
  background: transparent;
}

.cookie-modal{
  position:fixed;
  inset:0;
  z-index:1001;
  display:none;
}
.cookie-modal.is-open{display:block}
.cookie-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
}
.cookie-panel{
  position:relative;
  max-width:520px;
  margin:10vh auto 0;
  background:#fff;
  color:#0F2A3A;
  border-radius:18px;
  border:1px solid rgba(15,42,58,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  padding:18px;
}
.cookie-panel__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.cookie-close{
  border:none;
  background:transparent;
  font-size:20px;
  cursor:pointer;
  color:#0F2A3A;
}
.cookie-option{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  border-top:1px solid rgba(15,42,58,.08);
}
.cookie-option:first-of-type{border-top:none}
.cookie-option__text p{margin:4px 0 0; font-size:.9rem; color: rgba(15,42,58,.75)}
.cookie-toggle{
  accent-color:#0F2A3A;
  width:18px;
  height:18px;
}
.cookie-panel__actions{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.cookie-manage{
  cursor:pointer;
  color: rgba(255,255,255,.78);
  text-decoration:underline;
  background:none;
  border:none;
  padding:0;
  font: inherit;
}
.cookie-manage:hover{color: rgba(255,255,255,.95)}
.reveal{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

.hero{
  position:relative;
  padding:72px 0 52px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(7,27,38,.92), rgba(7,27,38,.55)),
    url("hero-bg.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.hero--home::before{
  background:
    linear-gradient(90deg, rgba(7,27,38,.92), rgba(7,27,38,.55)),
    url("malagaportada.jpg") center/cover no-repeat;
}
.hero--home{min-height: 520px}
.hero--home::after{
  content:"";
  position:absolute;
  inset:-10% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(380px 220px at 20% 20%, rgba(53,199,200,.28), transparent 70%),
    radial-gradient(320px 200px at 80% 10%, rgba(246,196,81,.22), transparent 70%);
  opacity:.7;
  pointer-events:none;
  animation: heroGlow 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero--particulares::before{
  background:
    linear-gradient(90deg, rgba(7,27,38,.92), rgba(7,27,38,.55)),
    url("hero-particulares.png") center/cover no-repeat;
}
.hero__inner{position:relative; display:grid; grid-template-columns: 1.2fr .8fr; gap:34px; align-items:center}
.hero{color:#fff}
.hero .h1{color:#fff}
.hero__content{max-width:56ch}
.page-home .hero__content > *{
  animation: heroFade 1.2s ease both;
}
.page-home .hero__content > *:nth-child(1){animation-delay:.15s}
.page-home .hero__content > *:nth-child(2){animation-delay:.3s}
.page-home .hero__content > *:nth-child(3){animation-delay:.45s}
.page-home .hero__content > *:nth-child(4){animation-delay:.6s}
.page-home .hero__content > *:nth-child(5){animation-delay:.75s}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border-radius:999px;
  background: rgba(53,199,200,.14);
  border: 1px solid rgba(53,199,200,.25);
  color: rgba(255,255,255,.92);
  font-size:.9rem;
}
.kicker--premium{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}
.kicker__dot{width:8px; height:8px; border-radius:999px; background: var(--brand)}
.h1{font-size: clamp(2.1rem, 3.1vw, 3.2rem); line-height:1.05; margin:14px 0 14px; letter-spacing:-.6px}
.hero-accent{color: var(--accent)}
.lead{font-size:1.06rem; color: var(--text); max-width:60ch}
.hero .lead{color: rgba(255,255,255,.88)}
.hero__micro{margin:10px 0 0; color: rgba(255,255,255,.82); font-size:.98rem}
.hero__cred{margin:6px 0 0; color: rgba(255,255,255,.7); font-size:.86rem}
.hero__cred--premium{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}
.hero__cred--premium::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(246,196,81,.2);
}

@keyframes heroFade{
  from{opacity:0; transform: translateY(10px)}
  to{opacity:1; transform: translateY(0)}
}
@keyframes heroGlow{
  from{transform: translate3d(-4%, -3%, 0)}
  to{transform: translate3d(4%, 2%, 0)}
}
@media (prefers-reduced-motion: reduce){
  .page-home .hero__content > *{animation:none}
  .hero--home::after{animation:none}
}
.hero__actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.hero__card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.page-home .hero__card{
  animation: heroFade 1.2s ease both;
  animation-delay: .9s;
}
.hero__card:hover{
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(0,0,0,.45);
  border-color: rgba(255,255,255,.3);
}
.hero__card h3{margin:0 0 10px; font-size:1.05rem}
.hero__card ul{margin:0; padding:0 0 0 18px; color: rgba(255,255,255,.84)}
.hero__card li{margin:6px 0}

.grid{
  display:grid;
  gap:16px;
}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr))}

.carousel{
  position:relative;
}
.carousel__track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:4px 2px 8px;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
}
.carousel__track::-webkit-scrollbar{display:none}
.carousel__track{scrollbar-width:none}
.carousel__slide{
  flex:0 0 320px;
  scroll-snap-align:start;
}
.carousel--compact .carousel__slide{
  flex-basis: 260px;
}
.carousel--compact .card{
  padding:14px;
}
.carousel--compact .card h3{
  font-size:1rem;
}
.carousel--compact .card p{
  font-size:.95rem;
}
.carousel__nav{
  display:flex;
  gap:8px;
  justify-content:flex-end;
  margin-top:12px;
}
.carousel__btn{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid var(--border);
  background: #fff;
  color: var(--navy);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.carousel__btn:disabled{
  opacity:.45;
  cursor:default;
}
.carousel__btn svg{width:18px; height:18px}
.blog-teaser .blog-teaser__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.blog-teaser .badge{
  font-size:.82rem;
  padding:6px 10px;
}
.blog-teaser .small{
  margin:8px 0 14px;
  max-width:68ch;
}
.blog-teaser .carousel__nav{
  margin-top:8px;
}
.blog-teaser .carousel__btn{
  width:34px;
  height:34px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 18px 40px rgba(15,42,58,.10);
}
.card h3{margin:0 0 8px; font-size:1.05rem}
.card p{margin:0; color: var(--muted)}
.card--icon{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:22px;
}
.card--icon .card__icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(53,199,200,.18), rgba(246,196,81,.18));
  border: 1px solid rgba(15,42,58,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(15,42,58,.12);
}
.card--icon .card__icon svg{
  width:36px;
  height:36px;
  display:block;
}
.card--icon h3{font-size:1.08rem}
.card--icon p{font-size:.98rem}
.page-home .card--home{
  background: var(--header-bg);
  border-color: rgba(15,42,58,.18);
  color: var(--navy);
}
.page-home .card--home p{
  color: var(--navy);
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  background: rgba(246,196,81,.18);
  border: 1px solid rgba(246,196,81,.35);
  padding:7px 10px; border-radius:999px;
  font-size:.88rem;
}

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:center
}
.photo{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.photo img{width:100%; height:100%; object-fit:cover}

.h2{font-size: clamp(1.55rem, 2.2vw, 2.15rem); margin:0 0 10px; letter-spacing:-.3px}
.h3{font-size: 1.15rem; margin:0 0 10px}
.section__top{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px}
.section__top p{margin:0; color: var(--muted); max-width:68ch}

.list-check{margin:0; padding:0; list-style:none}
.list-check li{
  display:flex; gap:10px;
  padding:10px 0;
  border-bottom: 1px solid rgba(15,42,58,.08);
  color: var(--text);
}
.list-check li:last-child{border-bottom:none}
.check{
  width:22px; height:22px; border-radius:999px;
  background: rgba(53,199,200,.18);
  border: 1px solid rgba(53,199,200,.25);
  display:inline-flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.check svg{width:14px; height:14px}

.timeline{
  border-left: 2px solid rgba(15,42,58,.14);
  padding-left:16px;
}
.step{position:relative; padding:14px 0 14px 0}
.step::before{
  content:""; position:absolute; left:-23px; top:18px;
  width:12px; height:12px; border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(53,199,200,.14);
}
.step h3{margin:0 0 6px}
.step p{margin:0; color: var(--muted)}

.callout{
  background: linear-gradient(135deg, rgba(53,199,200,.14), rgba(246,196,81,.12));
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding:20px;
  box-shadow: var(--shadow);
}
.callout__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.callout__actions{display:flex; gap:12px; flex-wrap:wrap}
.callout h3{margin:0 0 6px}
.callout p{margin:0; color: var(--muted)}
.non-eu{
  background:
    radial-gradient(420px 220px at 10% -20%, rgba(53,199,200,.22), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,255,255,.35));
  border: 1px solid rgba(53,199,200,.22);
}
.non-eu__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.non-eu__content{max-width:68ch}
.non-eu h3{margin:8px 0 8px}
.non-eu__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:6px 0 10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(53,199,200,.32);
  background: rgba(53,199,200,.12);
  font-size:.82rem;
  color: var(--navy);
}
.non-eu__note{
  margin-top:8px;
}
.non-eu__cta{margin-top:12px}
.non-eu--stack .non-eu__inner{
  align-items:flex-start;
}
.non-eu--stack .non-eu__content{
  max-width:none;
}
.non-eu--compact .non-eu__cta{
  margin-left:auto;
}
.non-eu--compact .non-eu__cta .btn{
  margin-left:auto;
}
.non-eu--compact .non-eu__content p{
  margin-top:6px;
}
.non-eu--compact .chip{font-size:.78rem}
.non-eu__cta{flex:0 0 auto}

.form{
  display:grid; gap:12px
}
.input, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline:none;
}
.textarea{min-height:140px; resize:vertical}
.label{font-size:.92rem; color: var(--muted)}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form-row--contact{
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "email phone"
    "confirm confirm";
}
.form-row--contact .form-field--email{grid-area: email}
.form-row--contact .form-field--phone{grid-area: phone}
.form-row--contact .form-field--email-confirm{grid-area: confirm}
.note{font-size:.9rem; color: var(--muted)}
.form-status{
  display:none;
  margin-top:12px;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card2);
  font-size:.95rem;
}
.form-status--ok{
  display:block;
  border-color: rgba(53,199,200,.45);
  background: rgba(53,199,200,.16);
  color: var(--text);
}
.form-status--error{
  display:block;
  border-color: rgba(255,120,120,.5);
  background: rgba(255,120,120,.12);
  color: var(--text);
}
.form-status__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:10px;
  padding:6px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration:none;
  font-size:.9rem;
  background: #fff;
}
.form-status__btn:hover{
  background: var(--card2);
  text-decoration:none;
}
.packs-grid{display:grid; gap:20px; grid-template-columns: repeat(2, 1fr)}
.pack-card{padding:18px; border:1px solid var(--border); border-radius: var(--radius2); background: var(--card); box-shadow: var(--shadow)}
.pack-card h3{margin:0 0 6px}
.pack-card p{margin:0; color: var(--muted)}

.site-footer{
  background: radial-gradient(1200px 500px at 20% 0%, rgba(0,200,220,0.10), transparent 55%),
              linear-gradient(180deg, #06202C, #041820);
  color: rgba(255,255,255,0.86);
  margin-top: 80px;
  overflow:hidden;
}
.site-footer *{box-sizing:border-box}
.footer-cta{
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.footer-cta__sub{
  margin-top:6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.footer-cta__btn{
  background: #16D3DE;
  color:#0B2330;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}
.footer-cta__btn:hover{filter: brightness(0.95)}
.footer-main{
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 20px 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.footer-brand__logoWrap{
  flex: 0 0 auto;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--header-bg);
  border: 1px solid rgba(234,246,255,0.18);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}
.footer-brand__logo{
  display:block;
  height: 74px;
  width:auto;
  filter: none;
}
.footer-brand__title{
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  margin-bottom: 8px;
}
.footer-brand__text p{
  margin:0;
  color: rgba(255,255,255,0.75);
  line-height:1.5;
}
.footer-col__title{
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}
.site-footer a{
  color: rgba(255,255,255,0.78);
  text-decoration:none;
  overflow-wrap:anywhere;
}
.site-footer a:hover{
  color: rgba(255,255,255,0.95);
  text-decoration:underline;
}
.site-footer a:focus-visible{
  outline:2px solid rgba(22,211,222,0.6);
  outline-offset:2px;
  border-radius:6px;
}
.footer-social{
  display:flex;
  gap:12px;
  margin-top:12px;
}
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  text-decoration:none;
}
.footer-social a:hover{
  color: rgba(255,255,255,0.98);
  text-decoration:none;
  background: rgba(255,255,255,0.12);
}
.footer-social svg{
  width:18px;
  height:18px;
  display:block;
}
.footer-bottom{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  color: rgba(255,255,255,0.60);
  font-size: 0.92rem;
}

@media (max-width: 980px){
  .cookie-banner__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .cookie-banner__actions{width:100%}
  .cookie-banner__actions .cookie-btn{flex:1 1 auto}
  .cookie-banner__actions .cookie-btn--icon{flex:0 0 auto}
  .cookie-panel{margin:12vh 12px 0}
  .hero--home{min-height: 460px}
  .hero{padding:64px 0 44px}
  .hero__inner{grid-template-columns:1fr; gap:18px}
  .split{grid-template-columns:1fr}
  .grid--3{grid-template-columns: 1fr}
  .grid--2{grid-template-columns: 1fr}
  .carousel__slide{flex-basis: 86%}
  .carousel--compact .carousel__slide{flex-basis: 78%}
  .packs-grid{grid-template-columns: 1fr}
  .footer-social{justify-content:center}
  .non-eu__inner{align-items:stretch}
  .non-eu__cta{width:100%}
  .non-eu__cta .btn{width:100%}
  .non-eu--compact .non-eu__cta{margin-left:0}
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
  .cookie-banner{
    transition:none;
    transform:none;
  }
  .carousel__track{scroll-behavior:auto}
}


@media (min-width: 821px){
  body{padding-top: var(--header-height)}
  .header{
    position:fixed;
    left:0; right:0;
    transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .header__inner{transition: padding .25s ease}
  .brand__logo{transition: height .25s ease}
  .header .nav{transform: translateX(10px)}
  .header--scrolled{
    background-color: rgba(207,239,246,.86);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(15,42,58,.14);
  }
  .header--scrolled .header__inner{padding:4px 0}
  .header--scrolled .brand__logo{height: calc(var(--logo-h) * 0.85)}
}

@media (max-width: 820px){
  .header{
    transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .header__inner{position:relative; justify-content:center; padding:10px 0; transition: padding .25s ease}
  .brand__logo{transition: height .25s ease}
  .header--scrolled{
    background-color: rgba(207,239,246,.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(15,42,58,.14);
  }
  .header--scrolled .header__inner{padding:2px 0}
  .nav-toggle{display:inline-block; position:absolute; right:0}
  .brand{min-width:160px; margin:0 auto}
  .brand__logo{
    height:calc(var(--logo-h-sm) * 1.2);
    max-width:var(--logo-max-sm);
  }
  .nav{
    position:absolute;
    right:16px; top:66px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px;
    background: var(--header-bg);
    border: 1px solid rgba(15,42,55,0.10);
    border-radius: 18px;
    min-width: 240px;
    box-shadow: 0 18px 40px rgba(15,42,55,0.22);
    backdrop-filter: none;
    opacity: 1;
  }
  .nav.is-open{display:flex}
  .nav__link{
    padding:12px 12px;
    color: var(--navy);
    text-decoration: none;
  }
  .nav__link:hover{background: rgba(0, 140, 160, 0.10)}
  .nav__link.is-active{
    background: rgba(0, 140, 160, 0.16);
    font-weight: 600;
    border-radius: 12px;
  }
  .nav__cta{margin-left:0}
  .nav__cta.btn--primary{
    background: var(--navy);
    color:#fff;
    border: 1px solid rgba(0, 140, 160, 0.35);
  }
  .nav__cta.btn--primary:hover{background: #153545}
  .section__top{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .section__top p{max-width:100%}
  .form-row{grid-template-columns:1fr}
  .form-row--contact{
    grid-template-columns:1fr;
    grid-template-areas:
      "email"
      "confirm"
      "phone";
  }
  .footer-cta__inner{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
  }
  .footer-cta__btn{width:100%; text-align:center}
  .footer-grid{
    grid-template-columns: 1fr;
    justify-items:center;
  }
  .footer-brand{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .footer-brand__logo{height: 58px}
  .footer-col{text-align:center}
  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}
