@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap');

:root {
  --blue:        #1557b0;
  --blue-mid:    #1e6fd4;
  --blue-light:  #3a8fe8;
  --blue-dark:   #0a3d7a;
  --accent:      #e8f1fc;
  --text:        #0d1b2e;
  --text2:       #3d5575;
  --text3:       #7a92aa;
  --bg:          #f7f9fc;
  --white:       #ffffff;
  --border:      rgba(21,87,176,0.11);
  --shadow-sm:   0 2px 12px rgba(21,87,176,0.08);
  --shadow-md:   0 6px 28px rgba(21,87,176,0.12);
  --shadow-lg:   0 12px 48px rgba(21,87,176,0.16);
  --radius:      12px;
  --radius-lg:   18px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'Inter',sans-serif; background:var(--bg); color:var(--text); overflow-x:hidden; line-height:1.6; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }

.container { max-width:1100px; margin:0 auto; padding:0 2rem; }

/* ── TOPBAR ── */
.topbar {
  background: var(--blue-dark);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
.topbar-inner {
  max-width:1100px; margin:0 auto; padding:0 2rem;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:6px;
}
.topbar a { color:rgba(255,255,255,0.75); transition:color .15s; }
.topbar a:hover { color:#fff; }
.topbar-left, .topbar-right { display:flex; gap:1.5rem; align-items:center; }
.topbar-right a { display:flex; align-items:center; gap:5px; }

/* ── NAV ── */
nav {
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid rgba(13,27,46,0.08);
  position:sticky; top:0; z-index:200;
  box-shadow:0 8px 28px rgba(13,27,46,0.08);
  backdrop-filter:blur(16px);
}
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 2rem;
  display:flex; align-items:center; justify-content:space-between;
  height:80px;
  gap:1.25rem;
}
.nav-logo { display:flex; align-items:center; }
.nav-logo img {
  height:50px;
  width:auto;
  max-width:220px;
  object-fit:contain;
}
.nav-links { display:flex; gap:0.15rem; align-items:center; flex-wrap:nowrap; }
.nav-links a {
  color:var(--text2); font-size:14px; font-weight:500;
  padding:8px 12px; border-radius:7px;
  transition:all .18s; letter-spacing:0.1px;
  white-space:nowrap;
}
.nav-links a:hover { color:var(--blue); background:var(--accent); }
.nav-links a.active { color:var(--blue); font-weight:600; background:rgba(21,87,176,0.08); }
.nav-actions { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.btn-nav-call {
  display:flex; align-items:center; gap:7px;
  color:var(--text2); font-size:13px; font-weight:500;
  padding:8px 14px; border-radius:7px; border:1.5px solid var(--border);
  background:#fff; cursor:pointer; font-family:'Inter',sans-serif;
  transition:all .18s;
}
.btn-nav-call:hover { border-color:var(--blue); color:var(--blue); }
.btn-nav-whatsapp {
  color:#0d6b3f;
  border-color:rgba(37,211,102,0.28);
  background:#f2fff7;
  font-weight:700;
}
.btn-nav-whatsapp:hover {
  color:#075f37;
  border-color:#25d366;
  background:#eafff2;
}
.wa-icon {
  width:18px;
  height:18px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
  line-height:1;
}
.btn-nav-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color:#fff; border:none; padding:10px 22px; border-radius:8px;
  font-size:14px; font-weight:600; cursor:pointer;
  font-family:'Inter',sans-serif; transition:all .2s;
  box-shadow:0 3px 14px rgba(21,87,176,0.28); letter-spacing:0.2px;
}
.btn-nav-cta:hover { transform:translateY(-1px); box-shadow:0 5px 20px rgba(21,87,176,0.38); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; border:none; background:none; }
.hamburger span { width:22px; height:2px; background:var(--text); border-radius:2px; transition:all .25s; display:block; }
.mobile-menu {
  display:none; flex-direction:column;
  background:#fff; border-bottom:1px solid var(--border);
  padding:1rem 2rem; gap:4px;
}
.mobile-menu a {
  color:var(--text2); font-size:15px; font-weight:500;
  padding:10px 12px; border-radius:8px;
}
.mobile-menu a:hover { background:var(--accent); color:var(--blue); }
.mobile-menu .btn-nav-cta { margin-top:8px; text-align:center; display:block; padding:12px; }
.mobile-menu .btn-nav-whatsapp {
  margin-top:8px;
  justify-content:center;
  padding:12px;
}
.mobile-menu.open { display:flex; }

/* ── HERO ── */
.hero {
  position:relative; overflow:hidden;
  background: linear-gradient(120deg, #071530 0%, #0a3d7a 40%, #1557b0 100%);
  min-height:620px; display:flex; align-items:center;
}
.hero-bg {
  position:absolute; inset:0;
  background-image:linear-gradient(90deg, rgba(7,21,48,0.92) 0%, rgba(7,21,48,0.76) 44%, rgba(7,21,48,0.24) 100%), url('../images/hero-it-service.png');
  background-size:cover; background-position:center right;
  opacity:0.42;
}
.hero-grid-overlay {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(91,159,239,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,159,239,0.06) 1px, transparent 1px);
  background-size:50px 50px;
}
.hero-glow {
  position:absolute; top:-200px; right:-100px;
  width:700px; height:700px;
  background:radial-gradient(circle, rgba(30,111,212,0.25) 0%, transparent 65%);
  pointer-events:none;
}
.hero-inner {
  max-width:1100px; margin:0 auto; padding:5rem 2rem;
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:4rem; align-items:center;
  position:relative; z-index:2;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.18);
  color:rgba(255,255,255,0.88); padding:7px 16px; border-radius:100px;
  font-size:12px; font-weight:500; margin-bottom:1.5rem; letter-spacing:0.6px;
  text-transform:uppercase;
}
.hero-dot { width:6px; height:6px; background:#5b9fef; border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(0.8);} }
.hero h1 {
  font-family:'Rajdhani',sans-serif;
  font-size:clamp(2.4rem,4.5vw,3.6rem);
  font-weight:700; line-height:1.08;
  color:#fff; margin-bottom:1.25rem; letter-spacing:-0.3px;
}
.hero h1 em { font-style:normal; color:#5b9fef; }
.hero-desc {
  font-size:1.05rem; color:rgba(255,255,255,0.72);
  line-height:1.75; margin-bottom:0.75rem; max-width:480px;
}
.hero-tagline {
  font-size:12px; letter-spacing:2px; text-transform:uppercase;
  color:rgba(91,159,239,0.85); font-weight:600; margin-bottom:2.25rem;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:2.5rem; }
.btn-primary {
  background:#fff; color:var(--blue-dark);
  border:none; padding:14px 30px; border-radius:9px;
  font-size:15px; font-weight:700; cursor:pointer;
  font-family:'Inter',sans-serif; transition:all .2s;
  box-shadow:0 4px 18px rgba(0,0,0,0.18); letter-spacing:0.1px;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 7px 26px rgba(0,0,0,0.24); }
.btn-outline-white {
  background:transparent; color:#fff;
  border:2px solid rgba(255,255,255,0.35);
  padding:14px 30px; border-radius:9px;
  font-size:15px; font-weight:600; cursor:pointer;
  font-family:'Inter',sans-serif; transition:all .2s;
}
.btn-outline-white:hover { border-color:#fff; background:rgba(255,255,255,0.07); }
.hero-trust { display:flex; gap:1.5rem; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:7px; color:rgba(255,255,255,0.65); font-size:13px; }
.trust-item::before { content:'✓'; color:#5b9fef; font-weight:700; }

/* Hero right panel */
.hero-panel {
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.13);
  border-radius:20px; padding:2.5rem;
  backdrop-filter:blur(12px);
  display:flex; flex-direction:column; gap:1.5rem;
}
.hero-visual-wrap {
  position:relative;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  min-height:230px;
  box-shadow:0 22px 50px rgba(0,0,0,0.24);
}
.hero-visual-wrap > img {
  width:100%;
  height:260px;
  object-fit:cover;
  object-position:center right;
}
.hero-visual-wrap::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(7,21,48,0.62) 100%);
  pointer-events:none;
}
.hero-visual-badge {
  position:absolute;
  left:18px;
  bottom:18px;
  width:86px;
  padding:0;
  border-radius:12px;
  background:transparent;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,0.34));
  z-index:2;
}
.hero-visual-badge img {
  width:100%;
  height:auto;
}
.hero-stats-mini { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.hs-item { background:rgba(255,255,255,0.08); border-radius:10px; padding:1rem; text-align:center; }
.hs-num { font-family:'Rajdhani',sans-serif; font-size:1.8rem; font-weight:700; color:#fff; line-height:1; }
.hs-label { font-size:11px; color:rgba(255,255,255,0.6); margin-top:3px; letter-spacing:0.3px; }
.hero-tags { display:flex; gap:8px; flex-wrap:wrap; }
.htag {
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15);
  color:rgba(255,255,255,0.8); font-size:11px; padding:5px 12px;
  border-radius:100px; font-weight:500; letter-spacing:0.3px;
}

/* ── STATS STRIP ── */
.stats-strip { background:#fff; border-bottom:1px solid var(--border); }
.stats-strip-inner {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr);
}
.ss-item {
  padding:1.75rem 1.5rem; text-align:center;
  border-right:1px solid var(--border); transition:background .18s;
}
.ss-item:last-child { border-right:none; }
.ss-item:hover { background:var(--accent); }
.ss-num { font-family:'Rajdhani',sans-serif; font-size:2.2rem; font-weight:700; color:var(--blue); line-height:1; }
.ss-label { font-size:12px; color:var(--text2); margin-top:5px; font-weight:500; }

/* ── SECTION COMMON ── */
.sec { padding:5rem 0; }
.sec-alt { background:#fff; }
.sec-dark { background:linear-gradient(135deg,#071530 0%,#0a3d7a 100%); }
.sec-header { text-align:center; margin-bottom:3rem; }
.sec-eyebrow { font-size:11px; font-weight:700; color:var(--blue); letter-spacing:2.5px; text-transform:uppercase; margin-bottom:10px; display:block; }
.sec-eyebrow-light { color:rgba(91,159,239,0.9); }
.sec-title { font-family:'Rajdhani',sans-serif; font-size:clamp(1.8rem,3vw,2.5rem); font-weight:700; color:var(--text); letter-spacing:-0.2px; }
.sec-title-light { color:#fff; }
.sec-sub { font-size:15px; color:var(--text2); margin-top:10px; max-width:560px; margin-left:auto; margin-right:auto; line-height:1.7; }
.sec-sub-light { color:rgba(255,255,255,0.65); }

/* ── LEISTUNGEN ── */
.srv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.srv-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:2rem; transition:all .25s; position:relative; overflow:hidden;
}
.srv-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue),var(--blue-light));
  transform:scaleX(0); transition:transform .25s; transform-origin:left;
}
.srv-card:hover { border-color:rgba(21,87,176,0.3); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.srv-card:hover::after { transform:scaleX(1); }
.srv-img {
  width:100%; height:160px; object-fit:cover;
  border-radius:10px; margin-bottom:1.25rem;
}
.srv-icon-wrap {
  width:52px; height:52px; border-radius:13px; margin-bottom:1.1rem;
  display:flex; align-items:center; justify-content:center; font-size:24px;
  background:linear-gradient(135deg,var(--accent),rgba(21,87,176,0.07));
}
.srv-card h3 { font-size:1.05rem; font-weight:700; color:var(--text); margin-bottom:8px; letter-spacing:-0.1px; }
.srv-card p { font-size:13.5px; color:var(--text2); line-height:1.68; }

/* ── WHY US ── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.why-img-wrap { position:relative; border-radius:var(--radius-lg); overflow:hidden; }
.why-img-wrap img { width:100%; height:420px; object-fit:cover; border-radius:var(--radius-lg); }
.why-badge-float {
  position:absolute; bottom:1.5rem; left:1.5rem;
  background:#fff; border-radius:12px; padding:1rem 1.25rem;
  box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:12px;
}
.wbf-icon { font-size:28px; }
.wbf-text strong { display:block; font-size:14px; font-weight:700; color:var(--text); }
.wbf-text span { font-size:12px; color:var(--text2); }
.why-content h2 { font-family:'Rajdhani',sans-serif; font-size:clamp(1.6rem,2.5vw,2.2rem); font-weight:700; color:#fff; margin-bottom:1rem; }
.why-content p { font-size:14.5px; color:rgba(255,255,255,0.7); line-height:1.75; margin-bottom:1.75rem; }
.why-list { list-style:none; display:flex; flex-direction:column; gap:1rem; }
.why-list li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:14px; color:rgba(255,255,255,0.8); line-height:1.6;
}
.wl-icon {
  width:32px; height:32px; background:rgba(91,159,239,0.2); border-radius:8px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:15px;
}

/* ── PREISE ── */
.pg { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.pc {
  background:#fff; border:1.5px solid var(--border);
  border-radius:var(--radius-lg); padding:2.25rem;
  position:relative; transition:all .25s;
}
.pc:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.pc.feat {
  border-color:var(--blue);
  box-shadow:0 8px 36px rgba(21,87,176,0.18);
}
.pc.feat::before {
  content:'⭐ Empfohlen';
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,var(--blue-dark),var(--blue-mid));
  color:#fff; font-size:11px; font-weight:700;
  padding:5px 18px; border-radius:100px; white-space:nowrap; letter-spacing:0.5px;
}
.medal { font-size:2.2rem; margin-bottom:0.75rem; }
.plan-n { font-size:11px; font-weight:700; color:var(--text3); letter-spacing:2.5px; text-transform:uppercase; }
.plan-pr { font-family:'Rajdhani',sans-serif; font-size:2.8rem; font-weight:700; color:var(--text); line-height:1; margin:8px 0; }
.plan-pr span { font-size:14px; color:var(--text2); font-weight:400; }
.plan-badge {
  font-size:10px; font-weight:700; color:#fff; background:var(--blue-dark);
  padding:4px 11px; border-radius:5px; display:inline-block; margin-bottom:14px;
  letter-spacing:0.6px; text-transform:uppercase;
}
.plan-desc {
  font-size:13px; color:var(--text2); margin-bottom:1.4rem;
  line-height:1.6; background:var(--accent); padding:11px 13px; border-radius:9px;
}
.pf { list-style:none; margin-bottom:1.6rem; }
.pf li {
  font-size:13.5px; color:var(--text2); padding:7px 0;
  display:flex; align-items:flex-start; gap:10px;
  border-bottom:1px solid var(--accent);
}
.pf li:last-child { border-bottom:none; }
.ck { color:var(--blue); font-weight:700; font-size:13px; flex-shrink:0; margin-top:2px; }
.btn-plan {
  width:100%; padding:13px; border-radius:9px;
  font-size:14px; font-weight:700; cursor:pointer;
  font-family:'Inter',sans-serif; transition:all .2s; letter-spacing:0.2px;
}
.btn-plan-outline { background:#fff; color:var(--blue); border:2px solid var(--blue); }
.btn-plan-outline:hover { background:var(--accent); }
.btn-plan-fill {
  background:linear-gradient(135deg,var(--blue-dark),var(--blue-mid));
  color:#fff; border:none;
  box-shadow:0 4px 14px rgba(21,87,176,0.28);
}
.btn-plan-fill:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(21,87,176,0.38); }
.notice-box {
  background:#fffbeb; border:1.5px solid #f5d67a;
  border-radius:var(--radius); padding:1.4rem 1.75rem; margin-top:1.75rem;
}
.notice-box strong { display:block; color:#5a4000; font-size:14px; margin-bottom:7px; }
.notice-box ul { padding-left:1.3rem; font-size:13.5px; color:#7a5800; }
.notice-box li { margin-bottom:5px; }

/* ── FORMULAR ── */
.form-wrap {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:3rem; box-shadow:var(--shadow-md);
  display:grid; grid-template-columns:1fr 1.35fr; gap:3rem;
}
.form-info h2 { font-family:'Rajdhani',sans-serif; font-size:2rem; font-weight:700; color:var(--text); margin-bottom:0.75rem; }
.form-info > p { font-size:14px; color:var(--text2); line-height:1.75; margin-bottom:1.5rem; }
.fi-row { display:flex; align-items:flex-start; gap:12px; margin-bottom:1rem; }
.fi-ic {
  width:38px; height:38px; background:var(--accent); border-radius:9px;
  display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0;
}
.fi-text strong { display:block; font-size:12px; font-weight:700; color:var(--text2); letter-spacing:0.5px; text-transform:uppercase; }
.fi-text span { font-size:13.5px; color:var(--text); font-weight:500; }
.fg { margin-bottom:1.1rem; }
.fg label { display:block; font-size:11px; color:var(--text2); margin-bottom:6px; font-weight:700; letter-spacing:0.6px; text-transform:uppercase; }
.fg input, .fg select, .fg textarea {
  width:100%; background:var(--bg); border:1.5px solid var(--border);
  border-radius:9px; padding:12px 14px; color:var(--text);
  font-size:14px; font-family:'Inter',sans-serif; outline:none; transition:all .18s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color:var(--blue); background:#fff;
  box-shadow:0 0 0 3px rgba(21,87,176,0.08);
}
.fg textarea { height:90px; resize:none; }
.btn-submit {
  width:100%; background:linear-gradient(135deg,var(--blue-dark),var(--blue-mid));
  color:#fff; border:none; padding:14px; border-radius:9px;
  font-size:15px; font-weight:700; cursor:pointer;
  font-family:'Inter',sans-serif; transition:all .2s;
  box-shadow:0 4px 16px rgba(21,87,176,0.28); letter-spacing:0.3px;
}
.btn-submit:hover { transform:translateY(-1px); box-shadow:0 7px 24px rgba(21,87,176,0.38); }
.btn-submit:disabled { opacity:0.65; cursor:not-allowed; transform:none; }
.form-success {
  display:none; background:#eaf7f0; border:1.5px solid #27ae70;
  border-radius:10px; padding:1rem 1.25rem; color:#1a7a50;
  font-weight:600; font-size:14px; margin-top:1rem; text-align:center;
}
.form-error {
  display:none; background:#fef0f0; border:1.5px solid #e74c3c;
  border-radius:10px; padding:1rem 1.25rem; color:#c0392b;
  font-size:13px; margin-top:1rem; text-align:center;
}
.form-success.show, .form-error.show { display:block; }

/* ── KONTAKT KARTEN ── */
.ct-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.ct-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:1.75rem; text-align:center; transition:all .22s;
}
.ct-card:hover { border-color:rgba(21,87,176,0.3); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.ct-ic { font-size:30px; margin-bottom:0.75rem; }
.ct-card h4 { font-size:13px; font-weight:700; color:var(--text); margin-bottom:6px; letter-spacing:0.3px; text-transform:uppercase; }
.ct-card p { font-size:13.5px; color:var(--text2); line-height:1.55; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg,#071530 0%,#0a3d7a 100%);
  padding:3rem 0 1.5rem;
}
.footer-top {
  display:grid; grid-template-columns:1.5fr 1fr 1fr;
  gap:3rem; padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,0.1);
  margin-bottom:1.5rem;
}
.footer-logo-plate {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:min(320px,100%);
  background:#fff;
  border-radius:10px;
  padding:10px 14px;
  margin-bottom:1rem;
  box-shadow:0 10px 28px rgba(0,0,0,0.18);
}
.footer-logo-plate img {
  width:100%;
  height:auto;
  display:block;
}
.footer-brand p { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.7; max-width:280px; }
.footer-col h4 { font-size:12px; font-weight:700; color:rgba(255,255,255,0.85); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:1rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.5); transition:color .15s; }
.footer-col ul li a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.footer-bottom p { font-size:12px; color:rgba(255,255,255,0.35); }
.footer-legal { display:flex; gap:14px; flex-wrap:wrap; }
.footer-legal a { font-size:12px; color:rgba(255,255,255,0.55); transition:color .15s; }
.footer-legal a:hover { color:#fff; }

/* ── LEGAL PAGES ── */
.legal-page {
  min-height:100vh;
  background:var(--bg);
  padding:3rem 1.5rem;
}
.legal-logo {
  display:block;
  width:min(320px,100%);
  margin:0 auto 2rem;
}
.legal-logo img {
  width:100%;
  height:auto;
}
.legal-card {
  max-width:860px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2.5rem;
  box-shadow:var(--shadow-md);
}
.legal-card h1,
.legal-card h2 {
  font-family:'Rajdhani',sans-serif;
  color:var(--text);
}
.legal-card h1 {
  font-size:2.4rem;
  margin-bottom:1rem;
}
.legal-card h2 {
  font-size:1.35rem;
  margin:1.6rem 0 0.5rem;
}
.legal-card p {
  color:var(--text2);
  font-size:14px;
  line-height:1.75;
}
.legal-card a {
  color:var(--blue);
  font-weight:700;
}
.legal-note {
  background:#fff8e6;
  border:1px solid #f1d48a;
  border-radius:10px;
  padding:1rem;
}

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-panel { display:none; }
  .why-grid { grid-template-columns:1fr; }
  .why-img-wrap { display:none; }
  .pg { grid-template-columns:1fr; }
  .form-wrap { grid-template-columns:1fr; }
  .ct-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links, .nav-actions { display:none; }
  .hamburger { display:flex; }
  .srv-grid { grid-template-columns:1fr 1fr; }
  .stats-strip-inner { grid-template-columns:repeat(2,1fr); }
  .topbar { display:none; }
}
@media (max-width:540px) {
  .srv-grid { grid-template-columns:1fr; }
  .ct-grid { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr; }
}
