:root{
  /* Light, calm, premium */
  --bg: #f7f8fb;
  --bg2:#ffffff;
  --card:#ffffff;
  --text:#0f172a;          /* slate-900 */
  --muted:#475569;         /* slate-600 */
  --muted2:#64748b;        /* slate-500 */
  --line: rgba(15,23,42,.10);
  --brand:#ff7a1a;         /* orange accent */
  --brand2:#2b7cff;        /* blue accent */
  --shadow: 0 14px 34px rgba(2,6,23,.10);
  --shadow2: 0 8px 18px rgba(2,6,23,.08);
  --radius: 18px;
  --max: 1120px;

  --focus: rgba(43,124,255,.30);
}

*{ box-sizing:border-box }
html{ scroll-behavior:smooth }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);

  /* soft, bright background with subtle brand tint */
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(43,124,255,.08), transparent 60%),
    radial-gradient(860px 520px at 92% 10%, rgba(255,122,26,.07), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2) 55%, var(--bg) 120%);
}

a{ color:inherit; text-decoration:none }
.container{ max-width:var(--max); margin:0 auto; padding:0 18px }

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:18px; width:auto; height:auto; padding:10px 12px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
  box-shadow: var(--shadow2);
}

/* Header */
header{
  position:sticky; top:0; z-index:2000;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.80);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height: 86px; /* fits larger logo */
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:auto; /* no forced width */
}
.logo-wrap{ display:flex; align-items:center; gap:10px; }

/* Bigger logo (as requested earlier) */
.logo{
  width: 64px;
  height: 64px;
  flex:0 0 auto;
  display:block;
  filter: drop-shadow(0 10px 20px rgba(2,6,23,.10));
}

.brand-text{
  display:flex; flex-direction:column; line-height:1.05;
  letter-spacing:.2px;
}
.brand-text strong{ font-size:15px }
.brand-text span{ font-size:12px; color:var(--muted2) }

nav ul{
  display:flex; align-items:center; gap:18px;
  list-style:none; padding:0; margin:0;
}
nav a{
  color:var(--muted);
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition: all .15s ease;
}
nav a:hover{
  color:var(--text);
  background: rgba(15,23,42,.05);
}

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

/* LANGUAGE SWITCHER – flat, calm, no gradients */

.lang{
  display:flex;
  gap:4px;

  padding:4px;
  border-radius:14px;

  background:#ffffff;
  border:1px solid var(--line);

  box-shadow: var(--shadow2);
}

/* language buttons */
.lang button{
  border:0;
  background:transparent;

  padding:7px 10px;
  border-radius:10px;

  font-size:13px;
  font-weight:500;

  color:var(--muted);
  cursor:pointer;

  transition: all .12s ease;
}

/* hover – very subtle */
.lang button:hover{
  background:#f1f5f9;   /* slate-100 */
  color:var(--text);
}

/* active language */
.lang button[aria-pressed="true"]{
  background:#0f172a;   /* slate-900 */
  color:#ffffff;

  box-shadow: 0 4px 10px rgba(2,6,23,.25);
}

/* BUTTONS – clean, flat, no gradients */

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:10px 16px;
  border-radius:14px;

  font-size:14px;
  font-weight:500;

  color:var(--text);
  background:#ffffff;              /* flat white */
  border:1px solid var(--line);

  cursor:pointer;
  transition: all .15s ease;
  box-shadow: var(--shadow2);
}

/* subtle hover – no drama */
.cta:hover{
  background:#f8fafc;              /* very light gray */
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(2,6,23,.12);
}

.cta.primary{
  background: var(--brand2);     /* blue */
  border-color: var(--brand2);
  box-shadow: 0 10px 24px rgba(43,124,255,.30);
}
.cta.primary:hover{
  background:#1f6ae1;
}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.burger span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin: 5px auto;
  border-radius:2px;
}

/* Mobile menu overlay */
.overlay{
  position:fixed; inset:0; z-index:3000;
  background: rgba(2,6,23,.40);
  display:none;
}
.overlay[aria-hidden="false"]{ display:block }
.drawer{
  position:absolute; right:0; top:0; height:100%;
  width:min(390px, 92vw);
  background: rgba(255,255,255,.96);
  border-left:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:18px;
  transform: translateX(100%);
  transition: transform .18s ease;
}
.overlay[aria-hidden="false"] .drawer{ transform: translateX(0) }
.drawer-top{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.close{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.90);
  cursor:pointer;
  color:var(--text);
  font-size:20px;
  box-shadow: var(--shadow2);
}
.drawer nav ul{
  display:flex; flex-direction:column; align-items:stretch;
  gap:8px; padding:14px 0 0;
}
.drawer nav a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
}
.drawer nav a:hover{ background: rgba(15,23,42,.05) }
.drawer .drawer-cta{ margin-top:16px; display:grid; gap:10px }

/* Hero */
.hero{ padding: 62px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:stretch;
}
.hero-card{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  overflow:hidden;
  position:relative;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color: var(--muted2);
  font-size:13px;
  letter-spacing:.25px;
  margin:0 0 12px;
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(255,122,26,.18);
}
h1{
  margin:0 0 12px;
  font-size: 44px;
  line-height:1.05;
  letter-spacing: -0.6px;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 62ch;
}
.hero-actions{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 12px;
}

.mini{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow2);
}
.mini h3{ margin:0 0 8px; font-size:16px; }
.mini p{ margin:0 0 14px; color:var(--muted); font-size:14px; line-height:1.65; }

.pills{ display:flex; flex-wrap:wrap; gap:8px; }
.pill{
  font-size:12px;
  color: var(--muted);
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  white-space:nowrap;
}

/* Sections */
section{ padding: 52px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom: 16px;
}
.section-head h2{
  margin:0;
  font-size: 26px;
  letter-spacing:-.2px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  max-width: 64ch;
  line-height:1.65;
}
.grid-3{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card{
  background: rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color:var(--muted); font-size:14px; line-height:1.65; }

.list{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  display:grid; gap:8px;
}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  color: var(--muted);
  font-size:14px;
  line-height:1.6;
}
.check{
  width:18px; height:18px; border-radius:6px;
  background: rgba(43,124,255,.14);
  border:1px solid rgba(43,124,255,.22);
  display:inline-flex; align-items:center; justify-content:center;
  flex:0 0 auto;
  margin-top:2px;
}
.check::before{
  content:"✓";
  color: var(--text);
  font-size:12px;
  line-height:1;
  opacity:.85;
}

/* Packages */
.price{
  display:flex; align-items:baseline; gap:10px; flex-wrap:wrap;
  margin: 10px 0 8px;
}
.price strong{ font-size:18px; }
.price span{ color:var(--muted2); font-size:13px; }

/* Contact */
.contact-grid{
  display:grid; gap:14px;
  grid-template-columns: 1.1fr .9fr;
  align-items:stretch;
}
form{ display:grid; gap:10px; }
label{ font-size:13px; color:var(--muted2); }

input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.92);
  color:var(--text);
  font-size:14px;
  outline:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
textarea{ min-height:130px; resize:vertical; }

input:focus, textarea:focus{
  border-color: rgba(43,124,255,.45);
  box-shadow: 0 0 0 4px var(--focus);
}

.hp{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

.form-row{
  display:grid; gap:10px;
  grid-template-columns: 1fr 1fr;
}
.note{
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
  margin:0;
}

.contact-lines{ display:grid; gap:10px; }
.contact-lines a{
  color:var(--text);
  border:1px solid var(--line);
  background: rgba(255,255,255,.86);
  padding:12px 12px;
  border-radius: var(--radius);
  display:flex; justify-content:space-between; gap:12px;
  box-shadow: var(--shadow2);
}
.contact-lines a:hover{
  box-shadow: 0 16px 34px rgba(2,6,23,.12);
  transform: translateY(-1px);
}
.contact-lines a span{ color:var(--muted2); font-size:13px; }

/* Footer / legal */
footer{
  padding: 30px 0 60px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.65);
}
.footer-grid{
  display:grid; gap:14px;
  grid-template-columns: 1.2fr .8fr;
  align-items:start;
}
.small{ color:var(--muted); font-size:13px; line-height:1.65; margin:0; }

.legal{
  margin-top: 12px;
  padding-top: 12px;
  border-top:1px solid var(--line);
}
.legal h3{ margin:0 0 8px; font-size:14px; }
.legal dl{ margin:0; display:grid; gap:10px; }
.legal dt{ color:var(--muted2); font-size:12px; }
.legal dd{ margin:0; font-size:13px; }

/* Cookie banner */
.cookie{
  position:fixed; left:18px; right:18px; bottom:18px;
  z-index:5000;
  display:none;
}
.cookie.show{ display:block; }
.cookie .box{
  max-width: var(--max);
  margin:0 auto;
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.cookie p{ margin:0; color:var(--muted); font-size:13px; line-height:1.6; }
.cookie .actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Accessibility focus */
button:focus, a:focus, input:focus, textarea:focus{
  outline:none;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  h1{ font-size:38px; }
}
@media (max-width: 860px){
  nav ul{ display:none; }
  .burger{ display:inline-block; }
  .brand-text span{ display:none; }
}
@media (max-width: 520px){
  h1{ font-size:32px; }
  .hero-card{ padding:20px; }
  .mini{ padding:16px; }
  .form-row{ grid-template-columns:1fr; }
  .nav{ height:80px; }
  .logo{ width:56px; height:56px; }
}



/* Overlay */
.modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.6);

  /* NEW: center reliably on mobile */
  align-items:center;
  justify-content:center;

  /* NEW: safe padding so it never touches edges */
  padding: 16px;
  padding-top: calc(16px + env(safe-area-inset-top));
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

/* When open, use flex (not block) */
.modal.is-open{
  display:flex;
}

/* Modal box */
.modal-content{
  background:#fff;
  width: min(700px, 92vw);     /* NEW: fit phone width */
  max-height: 85vh;            /* NEW: never go off-screen */
  overflow:auto;               /* NEW: scroll inside modal */
  -webkit-overflow-scrolling: touch;

  padding: 20px;
  border-radius: 12px;
  position: relative;
}

/* Close button always visible */
.modal-close{
  position: sticky;            /* NEW: stays visible when scrolling */
  top: 0;
  float: right;
  font-size: 28px;
  cursor: pointer;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
}

.modal h2 {
  margin-top: 0;
}

.modal-subtitle {
  color: #666;
  margin-bottom: 1.5rem;
}

.modal ul {
  padding-left: 1.2rem;
}

.price {
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

