/* Atlas VIP Protection — TR
   Marka: vipprotection.co · Lacivert + Cyan · DM Sans */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --navy: #001f54;
  --navy-soft: #22223b;
  --navy-deep: #262641;
  --cyan: #00b4d8;
  --cyan-dark: #0096b8;
  --cyan-soft: #e8f8fc;
  --text: #22223b;
  --text-muted: #4a4e69;
  --text-light: #6b7289;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-muted: #eef2f7;
  --border: #dfe3e7;
  --border-light: #eceff3;
  --shadow-sm: 0 2px 8px rgba(0, 31, 84, 0.06);
  --shadow: 0 8px 32px rgba(0, 31, 84, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 31, 84, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --header-h: 88px;
  --container: 1240px;
  --gutter: 24px;
  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease); }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--text); line-height: 1.2; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--navy); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius);
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; font-family: inherit; font-size: 15px; font-weight: 600;
  border-radius: var(--radius); border: 2px solid transparent; cursor: pointer;
  white-space: nowrap; transition: all var(--ease);
}
.btn-primary {
  background: var(--navy); color: var(--white) !important;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--cyan); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.35);
}
.btn-outline {
  background: transparent; color: var(--navy) !important;
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-dark) !important; }
.btn-ghost {
  background: transparent; color: var(--navy) !important;
  border: 2px solid var(--border); padding: 14px 28px;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--bg-soft); }
.btn-accent {
  background: var(--cyan); color: var(--white) !important;
}
.btn-accent:hover { background: var(--cyan-dark); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header--transparent { background: var(--white); border-bottom-color: var(--border-light); }

.header-inner {
  display: flex; align-items: center; height: var(--header-h); gap: 20px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-link img { height: 58px; width: auto; object-fit: contain; }

.main-nav { display: flex; align-items: center; margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-list > li > a,
.nav-list > li > button {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 14px; font-size: 15px; font-weight: 500;
  color: var(--text-muted); background: none; border: none;
  cursor: pointer; font-family: inherit; border-radius: 8px;
}
.nav-list > li > a:hover,
.nav-list > li > button:hover { color: var(--cyan); background: var(--cyan-soft); }
.nav-list > li > a.active,
.nav-list > li > button.active { color: var(--navy); font-weight: 600; }

.nav-list .submenu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 280px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--ease); max-height: 70vh; overflow-y: auto;
}
.nav-list li.has-submenu:hover .submenu,
.nav-list li.has-submenu.open .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a {
  display: block; padding: 10px 14px; font-size: 14px;
  color: var(--text-muted); border-radius: 8px;
}
.submenu a:hover { background: var(--bg-soft); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; flex-shrink: 0; }
.header-cta.nav-cta-mobile { display: none; }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; background: var(--navy); color: var(--white) !important;
  font-weight: 600; font-size: 14px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.header-cta:hover { background: var(--cyan); transform: translateY(-1px); }

.lang-switch { display: inline-flex; gap: 4px; }
.lang-switch a {
  padding: 6px 10px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; border-radius: 6px;
  color: var(--text-light); border: 1px solid var(--border);
}
.lang-switch a.active,
.lang-switch a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; background: transparent; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; -webkit-appearance: none; appearance: none;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 1px; transition: var(--ease);
}

.nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 31, 84, 0.4); z-index: 998;
  opacity: 0; transition: opacity var(--ease); pointer-events: none;
}
.nav-backdrop.visible { opacity: 1; pointer-events: auto; }

/* ─── HOMEPAGE HERO ─── */
.ax-hero {
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--white) 50%, var(--cyan-soft) 100%);
  overflow: hidden;
}
.ax-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 64px 0 80px;
}
.ax-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.ax-hero-badge i { color: var(--cyan); }
.ax-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.ax-hero-lead {
  font-size: 1.125rem; color: var(--text-muted);
  max-width: 520px; margin-bottom: 32px;
}
.ax-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.ax-hero-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy); padding: 8px 0;
}
.ax-hero-phone:hover { color: var(--cyan); }
.ax-hero-phone i { color: var(--cyan); }

.ax-hero-visual { position: relative; }
.ax-hero-visual img {
  width: 100%; height: min(560px, 70vh); object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.ax-hero-visual::before {
  content: ''; position: absolute; inset: -16px -16px 16px 16px;
  border: 3px solid var(--cyan); border-radius: var(--radius-xl);
  z-index: -1; opacity: 0.5;
}
.ax-hero-card {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--white); padding: 20px 24px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px;
}
.ax-hero-card strong {
  display: block; font-size: 1.75rem; color: var(--navy); line-height: 1;
}
.ax-hero-card span { font-size: 13px; color: var(--text-light); }
.ax-hero-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cyan-soft); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}

/* Stats strip */
.ax-stats {
  background: var(--navy); color: var(--white);
  padding: 0; margin-top: -1px;
}
.ax-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.ax-stat {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ax-stat:last-child { border-right: none; }
.ax-stat-val {
  display: block; font-size: 2rem; font-weight: 700;
  color: var(--cyan); line-height: 1; margin-bottom: 6px;
}
.ax-stat-lbl { font-size: 13px; opacity: 0.75; letter-spacing: 0.04em; text-transform: uppercase; }

/* Trust bar */
.ax-trust {
  padding: 20px 0; background: var(--bg-muted);
  border-bottom: 1px solid var(--border-light);
}
.ax-trust-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px;
}
.ax-trust-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
}
.ax-trust-list i { color: var(--cyan); font-size: 12px; }

/* Section utilities */
.ax-section { padding: 96px 0; }
.ax-section--soft { background: var(--bg-soft); }
.ax-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px;
}
.ax-section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--navy); }
.ax-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan-dark); margin-bottom: 12px;
}
.ax-tag--light { color: var(--cyan); }
.ax-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy); white-space: nowrap;
}
.ax-link:hover { color: var(--cyan); gap: 12px; }

/* About split */
.ax-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.ax-about-grid h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 20px; color: var(--navy); }
.ax-about-grid p { margin-bottom: 16px; }
.ax-checklist { margin: 24px 0 32px; }
.ax-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.ax-checklist li:last-child { border-bottom: none; }
.ax-checklist i { color: var(--cyan); margin-top: 4px; flex-shrink: 0; }
.ax-about-visual { position: relative; }
.ax-about-visual img {
  border-radius: var(--radius-xl); width: 100%;
  height: 520px; object-fit: cover; box-shadow: var(--shadow);
}

/* Service cards — homepage */
.ax-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ax-svc {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--ease); display: block;
}
.ax-svc:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: var(--cyan);
}
.ax-svc--featured { grid-column: span 2; grid-row: span 2; }
.ax-svc-img { position: relative; overflow: hidden; }
.ax-svc:not(.ax-svc--featured) .ax-svc-img { height: 180px; }
.ax-svc--featured .ax-svc-img { height: 100%; min-height: 320px; }
.ax-svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ax-svc:hover .ax-svc-img img { transform: scale(1.05); }
.ax-svc-num {
  position: absolute; top: 16px; left: 16px;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ax-svc-body { padding: 24px; }
.ax-svc-body h3 { font-size: 1.125rem; margin-bottom: 8px; color: var(--navy); }
.ax-svc-body p { font-size: 14px; color: var(--text-light); margin: 0; }
.ax-svc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--cyan);
}

/* Operations band */
.ax-ops {
  background: var(--navy-soft); color: var(--white);
  padding: 96px 0;
}
.ax-ops h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 48px; }
.ax-ops .ax-tag { color: var(--cyan); }
.ax-ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ax-ops-card {
  padding: 32px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); transition: all var(--ease);
}
.ax-ops-card:hover { background: rgba(255,255,255,0.1); border-color: var(--cyan); }
.ax-ops-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cyan); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.ax-ops-card h3 { color: var(--white); font-size: 1.125rem; margin-bottom: 10px; }
.ax-ops-card p { color: rgba(255,255,255,0.7); font-size: 15px; margin: 0; }

/* Blog */
.ax-blog-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.ax-blog-featured {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-light); background: var(--white);
  transition: all var(--ease);
}
.ax-blog-featured:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.ax-blog-featured img { width: 100%; height: 280px; object-fit: cover; }
.ax-blog-featured-body { padding: 28px; }
.ax-blog-featured time { font-size: 13px; color: var(--cyan-dark); font-weight: 600; }
.ax-blog-featured h3 { font-size: 1.35rem; margin: 10px 0; color: var(--navy); }
.ax-blog-list { display: flex; flex-direction: column; gap: 16px; }
.ax-blog-row {
  display: flex; gap: 16px; padding: 16px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); transition: all var(--ease);
}
.ax-blog-row:hover { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.ax-blog-row img { width: 100px; height: 80px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.ax-blog-row time { font-size: 12px; color: var(--text-light); }
.ax-blog-row h3 { font-size: 1rem; color: var(--navy); margin-top: 4px; }

/* Media duo */
.ax-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ax-media-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: block;
}
.ax-media-card img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; transition: transform 0.5s; }
.ax-media-card:hover img { transform: scale(1.05); }
.ax-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,31,84,0.92) 0%, rgba(0,31,84,0.3) 60%, transparent 100%);
  padding: 32px; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white);
}
.ax-media-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cyan); display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 16px;
}
.ax-media-overlay h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 8px; }
.ax-media-overlay p { font-size: 14px; opacity: 0.85; margin-bottom: 16px; }
.ax-media-link { font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; }

/* CTA band */
.ax-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 80px 0; color: var(--white);
}
.ax-cta-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.ax-cta h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 12px; }
.ax-cta p { opacity: 0.85; max-width: 520px; }
.ax-cta .ax-tag { color: var(--cyan); }
.ax-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.ax-cta-actions .btn-primary { background: var(--cyan); }
.ax-cta-actions .btn-primary:hover { background: var(--white); color: var(--navy) !important; }
.ax-cta-actions .btn-outline { border-color: rgba(255,255,255,0.35); color: var(--white) !important; }
.ax-cta-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.ax-cta-link { color: var(--cyan); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.ax-cta-link:hover { color: var(--white); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 15px; line-height: 1.7; opacity: 0.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.footer-social a:hover { background: var(--cyan); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-col a {
  display: block; padding: 6px 0; font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 16px;
  font-size: 14px; opacity: 0.6;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--cyan); opacity: 1; }

/* Floats */
.whatsapp-float, .phone-float {
  position: fixed; z-index: 900; border-radius: 100px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; box-shadow: var(--shadow-lg); transition: transform var(--ease);
}
.whatsapp-float {
  bottom: 24px; right: 24px; width: 56px; height: 56px;
  background: #25d366; color: var(--white); font-size: 26px;
}
.phone-float {
  bottom: 24px; left: 24px; padding: 14px 20px;
  background: var(--navy); color: var(--white); font-size: 14px;
}
.whatsapp-float:hover, .phone-float:hover { transform: scale(1.06); }

/* ─── INNER PAGES ─── */
main { padding-top: var(--header-h); }
body.ax-home main { padding-top: 0; }

/* Hero header altına yapışık — beyaz boşluk olmasın */
main > .page-hero:first-child {
  margin-top: calc(-1 * var(--header-h));
}
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: calc(var(--header-h) + 48px) 0 56px;
}
.page-hero .ax-tag--light { color: var(--cyan); margin-bottom: 12px; }
.page-hero.has-image {
  position: relative; padding: 0; min-height: 420px;
  display: flex; align-items: flex-end;
}
.page-hero.has-image .hero-bg { position: absolute; inset: 0; }
.page-hero.has-image .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-image .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,31,84,0.95) 0%, rgba(0,31,84,0.5) 100%);
}
.page-hero.has-image .page-hero-content {
  position: relative; z-index: 1;
  padding: calc(var(--header-h) + 48px) 0 56px;
}
.page-hero-content h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 12px; }
.page-hero-content p { opacity: 0.85; max-width: 640px; font-size: 1.05rem; color: rgba(255,255,255,0.9); }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 14px; margin-bottom: 16px; opacity: 0.75;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span[aria-current="page"] { opacity: 1; }

.services-page { padding: 72px 0 96px; background: var(--bg-soft); }

section { padding: 72px 0; }

/* Legacy inner sections — restyled */
.vip-manifesto { padding: 96px 0; background: var(--white); }
.vip-manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vip-manifesto-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--navy); margin-bottom: 20px; }
.vip-manifesto-text p { margin-bottom: 16px; }
.vip-manifesto-visual img { border-radius: var(--radius-xl); width: 100%; height: 480px; object-fit: cover; box-shadow: var(--shadow); }
.vip-manifesto-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--cyan); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius-lg); text-align: center;
  box-shadow: var(--shadow);
}
.vip-manifesto-badge strong { display: block; font-size: 2rem; line-height: 1; }
.vip-manifesto-visual { position: relative; }
.vip-section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan-dark); margin-bottom: 12px;
}
.vip-section-tag--light { color: var(--cyan); }
.vip-checklist { margin: 24px 0 32px; }
.vip-checklist li {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border-light); font-weight: 500; color: var(--text);
}
.vip-checklist i { color: var(--cyan); margin-top: 4px; }
.vip-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 40px;
}
.vip-section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--navy); }
.vip-link-arrow { font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.vip-link-arrow:hover { color: var(--cyan); }

.vip-domains { background: var(--navy-soft); color: var(--white); padding: 96px 0; }
.vip-domains h2 { color: var(--white); margin-bottom: 40px; }
.vip-domains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vip-domain-card {
  padding: 32px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
}
.vip-domain-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--cyan); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.vip-domain-card h3 { color: var(--white); margin-bottom: 8px; }
.vip-domain-card p { color: rgba(255,255,255,0.7); font-size: 15px; }

.vip-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 80px 0; color: var(--white);
}
.vip-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.vip-cta-copy h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 12px; }
.vip-cta-actions { display: flex; flex-direction: column; gap: 12px; }
.vip-cta-link { color: var(--cyan); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }

.vip-editorial { padding: 96px 0; background: var(--bg-soft); }
.vip-editorial-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.vip-editorial-featured {
  display: block; background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border-light);
}
.vip-editorial-featured img { width: 100%; height: 260px; object-fit: cover; }
.vip-editorial-body { padding: 24px; }
.vip-editorial-row {
  display: flex; gap: 16px; padding: 16px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: var(--radius); margin-bottom: 12px;
}
.vip-editorial-row img { width: 96px; height: 72px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }

/* Service cards — listing */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  transition: all var(--ease); display: flex; flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--cyan); }
.service-card-hit { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.service-card-img { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-num {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--navy); color: var(--white);
  width: 36px; height: 36px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.service-card-body {
  padding: 24px; flex: 1; display: flex; flex-direction: column;
}
.service-card-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.service-card-body p { font-size: 15px; color: var(--text-light); margin-bottom: 16px; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--cyan-dark);
  margin-top: auto;
}
.service-card:hover .service-link { color: var(--navy); gap: 12px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.contact-card {
  padding: 32px; background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); text-align: center; transition: all var(--ease);
}
.contact-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cyan-soft); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}
.contact-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 15px;
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); background: var(--white); transition: border-color var(--ease);
}
.form-control:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-soft); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-map-wrap iframe { width: 100%; height: 400px; border: 0; border-radius: var(--radius-lg); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-read { font-size: 14px; font-weight: 600; color: var(--cyan); }

/* Gallery & media */
.media-masthead { padding: 48px 0; background: var(--bg-soft); }
.media-masthead h1 { font-size: clamp(2rem, 4vw, 2.5rem); color: var(--navy); margin-bottom: 12px; }
.media-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.media-filter-btn {
  padding: 10px 18px; font-family: inherit; font-size: 14px; font-weight: 500;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--white); color: var(--text-muted); cursor: pointer;
}
.media-filter-btn.is-active,
.media-filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative; border: none; padding: 0; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; background: none;
}
.gallery-item.is-hidden { display: none; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,31,84,0.85) 0%, transparent 60%);
  padding: 16px; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white); text-align: left;
}
.gallery-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--cyan); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}

/* Lightbox & video modal */
.media-lightbox, .video-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
}
.media-lightbox[hidden], .video-modal[hidden] { display: none; }
.media-lightbox-backdrop, .video-modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,31,84,0.9);
}
.media-lightbox-close, .video-modal-close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: none; cursor: pointer; font-size: 18px;
}
.media-lightbox-dialog { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.media-lightbox-dialog img { max-height: 80vh; border-radius: var(--radius); }
.media-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: none; cursor: pointer;
}
.media-lightbox-prev { left: 20px; }
.media-lightbox-next { right: 20px; }
.video-modal-embed { position: relative; z-index: 1; width: min(900px, 90vw); aspect-ratio: 16/9; }
.video-modal-embed iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius); }
.video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; border: none; padding: 0; background: none; width: 100%; }
.video-card img { width: 100%; height: 220px; object-fit: cover; }
.video-play-btn, .video-play-lg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cyan); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}

/* ─── CATALOG ─── */
.cat-masthead {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: calc(var(--header-h) + 48px) 0 72px;
  margin-top: calc(-1 * var(--header-h));
}
.cat-masthead .breadcrumb { margin-bottom: 20px; }
.cat-masthead .breadcrumb a { color: rgba(255,255,255,0.8); }
.cat-masthead .breadcrumb a:hover { color: var(--cyan); }
.cat-masthead-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.cat-masthead h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 12px 0 16px;
  line-height: 1.15;
}
.cat-masthead-lead {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  max-width: 560px; line-height: 1.7; margin: 0;
}
.cat-masthead-badge {
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--cyan); color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.35);
  flex-shrink: 0;
}
.cat-masthead-badge strong { font-size: 2.5rem; line-height: 1; }
.cat-masthead-badge span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.9;
}

.cat-stats-wrap {
  position: relative; z-index: 2;
  margin-top: -36px; padding-bottom: 0;
}
.cat-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.cat-stat {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px 20px;
  text-align: center; box-shadow: var(--shadow);
}
.cat-stat strong {
  display: block; font-size: 1.75rem; color: var(--cyan-dark);
  line-height: 1; margin-bottom: 8px;
}
.cat-stat span { font-size: 13px; color: var(--text-light); font-weight: 500; }

.cat-section { padding: 72px 0; background: var(--bg-soft); }
.cat-section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.cat-section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--navy); margin: 8px 0 12px; }
.cat-section-head p { color: var(--text-muted); margin: 0; }

.cat-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-lang-grid--single {
  max-width: 440px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
.cat-download-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cat-download-card:hover { color: inherit; }
.cat-lang-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--ease);
}
.cat-lang-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: var(--cyan);
}
.cat-lang-card-cover {
  background: var(--bg-muted); padding: 36px 24px;
  text-align: center; position: relative;
  min-height: 160px; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
}
.cat-lang-code {
  display: block; font-size: 2.25rem; font-weight: 700;
  color: var(--navy); line-height: 1; margin-bottom: 8px;
}
.cat-lang-cover-icon { font-size: 2rem; color: var(--cyan); opacity: 0.85; }
.cat-lang-card-body {
  padding: 24px; flex: 1;
  display: flex; flex-direction: column;
}
.cat-lang-card-body h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 4px; }
.cat-lang-native { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.cat-lang-meta {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.cat-lang-meta span {
  padding: 4px 10px; font-size: 12px; font-weight: 600;
  background: var(--bg-soft); color: var(--text-muted);
  border-radius: 6px;
}
.cat-lang-card-body .btn { width: 100%; justify-content: center; margin-top: auto; }

.cat-info-section { padding: 80px 0; background: var(--white); }
.cat-info-grid {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 64px; align-items: start;
}
.cat-info-grid h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy); margin: 8px 0 16px;
}
.cat-info-grid > div > p { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.cat-info-list { margin: 0; }
.cat-info-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
  font-weight: 500; color: var(--text);
}
.cat-info-list li:last-child { border-bottom: none; }
.cat-info-list i { color: var(--cyan); margin-top: 4px; flex-shrink: 0; }

.cat-preview-panel {
  background: var(--bg-soft); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: calc(var(--header-h) + 24px);
}
.cat-preview-panel h3 {
  font-size: 1rem; color: var(--navy);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.cat-preview-items { display: flex; flex-direction: column; gap: 8px; }
.cat-preview-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); border-radius: 8px;
  background: var(--white); border: 1px solid var(--border-light);
}
.cat-preview-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--navy); color: var(--white);
  border-radius: 6px; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Corp / legal */
.corp-content-block p { margin-bottom: 16px; }
.corp-legal-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 48px; }

/* ─── SERVICE DETAIL ─── */
.service-detail-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(0, 180, 216, 0.2); color: var(--cyan);
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}

.service-highlights-section {
  position: relative; z-index: 2;
  margin-top: -40px; padding-bottom: 0;
}
.service-highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-highlight {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px 20px;
  box-shadow: var(--shadow); transition: all var(--ease);
}
.service-highlight:hover { border-color: var(--cyan); transform: translateY(-4px); }
.service-highlight-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cyan-soft); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.service-highlight h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.service-highlight p { font-size: 14px; color: var(--text-light); line-height: 1.55; margin: 0; }

.content-grid {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; align-items: start;
}
.content-main { min-width: 0; }
.content-main h2 {
  font-size: 1.5rem; color: var(--navy);
  margin: 40px 0 16px;
}
.content-main h2:first-of-type { margin-top: 0; }
.content-main p { margin-bottom: 16px; }
.content-main ol {
  margin: 0 0 20px 20px; color: var(--text-muted);
}
.content-main ol li { margin-bottom: 8px; padding-left: 4px; }
.content-lead {
  font-size: 1.125rem; color: var(--text);
  line-height: 1.75; margin-bottom: 8px;
}

.service-checklist { margin: 24px 0 32px; }
.service-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
  font-weight: 500; color: var(--text);
}
.service-checklist li:last-child { border-bottom: none; }
.service-checklist i { color: var(--cyan); margin-top: 4px; flex-shrink: 0; }

.service-quote {
  margin: 32px 0; padding: 24px 28px;
  background: var(--cyan-soft); border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem; font-style: italic; color: var(--navy);
  line-height: 1.7;
}

.sidebar-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky; top: calc(var(--header-h) + 24px);
}
.sidebar-card h3 {
  font-size: 1.05rem; color: var(--navy); margin-bottom: 12px;
}
.sidebar-card h3:not(:first-child) { margin-top: 4px; }
.sidebar-card p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.sidebar-card p strong { color: var(--navy); }
.sidebar-card a:not(.btn):not(.sidebar-phone):not(.sidebar-nav a) { color: var(--cyan-dark); font-weight: 600; }
.sidebar-phone {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; margin-bottom: 12px;
  background: var(--navy); color: var(--white) !important;
  font-weight: 700; font-size: 1.05rem; border-radius: var(--radius);
}
.sidebar-phone:hover { background: var(--cyan); }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.sidebar-card .btn-outline { border-color: var(--border); color: var(--navy) !important; }
.sidebar-divider {
  height: 1px; background: var(--border-light);
  margin: 24px 0;
}
.sidebar-price { font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.sidebar-note { font-size: 12px; color: var(--text-light); margin-bottom: 0; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a {
  display: block; padding: 10px 12px; font-size: 14px;
  color: var(--text-muted); border-radius: 8px;
}
.sidebar-nav a:hover { background: var(--bg-soft); color: var(--navy); }
.sidebar-nav a:last-child { font-weight: 600; color: var(--cyan-dark); margin-top: 8px; }

.section-dark {
  background: var(--navy-soft); color: var(--white);
  padding: 80px 0;
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 12px; }
.section-header p { color: rgba(255,255,255,0.75); margin: 0; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--white); }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.process-step {
  padding: 28px 24px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); position: relative;
}
.process-step::before {
  content: counter(step);
  counter-increment: step;
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--cyan); color: var(--white);
  font-size: 14px; font-weight: 700; margin-bottom: 16px;
}
.process-grid { counter-reset: step; }
.process-step h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; line-height: 1.6; }

.service-related { padding: 80px 0; background: var(--bg-soft); }
.service-related .section-header h2 { color: var(--navy); }
.service-related .section-header p { color: var(--text-muted); }
.service-related .section-label { color: var(--cyan-dark); }

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 72px 0; text-align: center; color: var(--white);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.cta-band p { opacity: 0.85; max-width: 560px; margin: 0 auto 28px; }
.cta-band-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.35); color: var(--white) !important;
}
.cta-band .btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}
.cta-band .btn-primary { background: var(--cyan); }
.cta-band .btn-primary:hover { background: var(--white); color: var(--navy) !important; }

.service-detail-content { padding: 72px 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .ax-hero-grid, .ax-about-grid, .vip-manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .ax-hero-visual { order: -1; }
  .ax-hero-card { left: 16px; bottom: 16px; }
  .ax-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-svc--featured { grid-column: span 2; grid-row: span 1; }
  .ax-svc--featured .ax-svc-img { min-height: 240px; }
  .ax-ops-grid, .vip-domains-grid { grid-template-columns: 1fr; }
  .ax-blog-grid, .vip-editorial-grid { grid-template-columns: 1fr; }
  .ax-media-grid { grid-template-columns: 1fr; }
  .ax-cta-grid, .vip-cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .blog-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .cat-info-grid { grid-template-columns: 1fr; }
  .cat-preview-panel { position: static; }
  .cat-stats { grid-template-columns: repeat(2, 1fr); }
  .cat-masthead-grid { grid-template-columns: 1fr; }
  .cat-masthead-badge { width: 100px; height: 100px; margin-top: 8px; }
  .service-highlights { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

body.nav-open { overflow: hidden; }

@media (max-width: 768px) {
  :root { --header-h: 72px; --gutter: 20px; }
  .logo-link img { height: 46px; }

  .menu-toggle { display: flex; }
  .header-actions { display: none; }
  .header-cta:not(.nav-cta-mobile) { display: none; }

  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw); height: 100dvh;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: calc(var(--header-h) + 16px) 20px 24px;
    overflow-y: auto; transform: translateX(100%);
    transition: transform var(--ease); z-index: 1200;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none; padding-left: 12px;
  }
  .nav-list li.has-submenu.open .submenu { display: block; }
  .nav-cta-mobile {
    display: flex !important; margin-top: 16px;
    justify-content: center; width: 100%;
  }

  .ax-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-stat:nth-child(2) { border-right: none; }
  .ax-stat { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ax-section { padding: 64px 0; }
  .ax-services-grid, .services-grid, .blog-grid, .gallery-grid, .cat-lang-grid {
    grid-template-columns: 1fr;
  }
  .service-highlights { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cat-stats { grid-template-columns: 1fr; }
  .cat-lang-grid { grid-template-columns: 1fr; }
  .ax-svc--featured { grid-column: span 1; }
  .ax-hero-grid { min-height: auto; padding: 40px 0 56px; }
  .ax-hero-actions { flex-direction: column; align-items: stretch; }
  .ax-hero-actions .btn { width: 100%; }
  .phone-float span { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ax-stats-grid { grid-template-columns: 1fr; }
  .ax-stat { border-right: none; }
}

@media print {
  .site-header, .whatsapp-float, .phone-float, .ax-cta, .vip-cta { display: none !important; }
}
