﻿/* ============================================================
   MontBlanc Services — style.css  v2
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark:      #06090f;
  --dark-2:    #0b1220;
  --dark-3:    #0f1828;
  --accent:    #2a5cff;
  --accent-2:  #5b8aff;
  --accent-3:  #8ab0ff;
  --telegram:  #229ed9;
  --signal:    #3a76f0;
  --white:     #f0f5fa;
  --pale:      #c5d6e8;
  --mid:       #7a9fc0;
  --muted:     #4a6080;
  --serif:     "Cormorant Garamond", Georgia, serif;
  --sans:      "Inter", system-ui, sans-serif;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --radius:    14px;
  --card-bg:   rgba(11, 18, 32, 0.85);
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Touch devices: restore cursor ── */
@media (pointer: coarse) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none !important; }
}

/* ============================================================
   CURSOR
   ============================================================ */
#cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent-2); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(91,138,255,0.45); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.3s;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 54px; height: 54px; border-color: rgba(91,138,255,0.9);
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s var(--ease-out), visibility 0.9s;
}
#loader.out { opacity: 0; visibility: hidden; }

.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.loader-brand {
  font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 300; letter-spacing: 0.18em; color: var(--white);
  text-shadow: 0 0 60px rgba(91,138,255,0.4);
}
.loader-bar {
  width: 220px; height: 1px;
  background: rgba(255,255,255,0.08); overflow: hidden; border-radius: 1px;
}
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--accent-2);
}
.loader-sub {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, padding 0.4s, border-color 0.5s;
}
#nav.scrolled {
  background: rgba(6, 9, 15, 0.88);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  padding: 14px 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 40px rgba(0,0,0,0.4);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
  letter-spacing: 0.14em; color: var(--white); text-decoration: none;
  text-shadow: 0 0 30px rgba(91,138,255,0.3);
}
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pale); text-decoration: none; position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 7px;
  background: none; border: none; cursor: pointer; padding: 6px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block; width: 26px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

/* ── MOBILE OVERLAY ── */
#nav-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(6, 9, 15, 0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
#nav-overlay.open { opacity: 1; visibility: visible; }
#nav-overlay ul {
  list-style: none; display: flex; flex-direction: column; gap: 36px; text-align: center;
}
#nav-overlay ul a {
  font-family: var(--serif); font-size: clamp(2rem, 10vw, 3rem); font-weight: 300;
  color: var(--white); text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.3s, text-shadow 0.3s;
}
#nav-overlay ul a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 40px rgba(91,138,255,0.5);
}
.nav-overlay-social {
  display: flex; gap: 24px; margin-top: 24px;
}
.nav-overlay-social a {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 8px 18px;
  transition: color 0.3s, border-color 0.3s;
}
.nav-overlay-social a:hover { color: var(--white); border-color: var(--accent-2); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

#three-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; display: block;
}

/* Aurora sky shimmer */
.hero-aurora {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 18% 25%, rgba(42,92,255,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 45% 38% at 80% 18%, rgba(100,55,220,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 30% 28% at 55% 10%, rgba(34,158,217,0.06) 0%, transparent 60%);
  animation: aurora 9s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { opacity: 0.55; transform: scale(1)    translateX(0px); }
  50%  { opacity: 1;    transform: scale(1.06) translateX(6px); }
  100% { opacity: 0.65; transform: scale(0.97) translateX(-4px); }
}

/* Vignette: strong bottom fade so mountain blends into services */
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 108%, rgba(6,9,15,1)   0%, transparent 65%),
    radial-gradient(ellipse 100% 25% at 50% 0%,  rgba(6,9,15,0.7) 0%, transparent 100%),
    linear-gradient(to bottom, transparent 40%, rgba(6,9,15,0.6) 85%, var(--dark) 100%);
}

.hero-content {
  position: relative; text-align: center; z-index: 2; padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: #fff; margin-bottom: 28px; opacity: 0;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 30px rgba(91,138,255,0.7);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; flex: 0 0 36px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(138,176,255,0.9));
}
.hero-eyebrow::after {
  background: linear-gradient(to left, transparent, rgba(138,176,255,0.9));
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 15vw, 11rem);
  font-weight: 300; letter-spacing: 0.1em; line-height: 1;
  margin-bottom: 26px;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 6px 24px rgba(0,0,0,0.95),
    0 14px 50px rgba(0,0,0,0.85),
    0 0 80px rgba(91,138,255,0.35);
}
.hero-title .word {
  display: inline-block; opacity: 0; transform: translateY(45px);
}
.hero-sub {
  font-size: clamp(0.92rem, 2.2vw, 1.1rem); font-weight: 300;
  color: #fff; letter-spacing: 0.07em; margin-bottom: 44px; opacity: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 6px 24px rgba(0,0,0,0.7);
  max-width: 38ch; margin-left: auto; margin-right: auto;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22); padding: 16px 36px; border-radius: 40px;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  opacity: 0; backdrop-filter: blur(8px);
}
.hero-cta:hover {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 40px rgba(42,92,255,0.4);
}
.cta-arrow { font-size: 1.1rem; transition: transform 0.35s var(--ease-out); }
.hero-cta:hover .cta-arrow { transform: translateY(5px); }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; z-index: 2;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--accent-2), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.25; } 50% { opacity: 1; } }
.scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}

/* Bottom edge glow connecting hero to services */
#hero::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(42,92,255,0.35), rgba(91,138,255,0.5), rgba(42,92,255,0.35), transparent);
  z-index: 3;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  padding: 130px 52px 100px;
  max-width: 1440px; margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 88px; }
.tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 22px;
}
.section-head h2 em { font-style: italic; color: var(--accent-3); }
.section-desc {
  font-size: 0.88rem; color: var(--mid); line-height: 1.9;
  max-width: 480px; margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ============================================================
   SERVICE CARD
   ============================================================ */
.s-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: border-color 0.45s, transform 0.45s var(--ease-out),
              box-shadow 0.45s, background 0.45s;
  opacity: 0; transform: translateY(32px);
}

/* Gradient accent line at top */
.s-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0; transition: opacity 0.4s;
}
/* Shimmer sweep on hover */
.s-card::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.035), transparent);
  transition: left 0.7s var(--ease-out); pointer-events: none;
}
.s-card:hover { border-color: rgba(91,138,255,0.28); transform: translateY(-6px);
  background: rgba(11,18,32,0.95);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(91,138,255,0.08),
              0 0 50px rgba(42,92,255,0.07);
}
.s-card:hover::before { opacity: 1; }
.s-card:hover::after  { left: 160%; }

.s-card.featured {
  border-color: rgba(42,92,255,0.22);
  background: linear-gradient(155deg, rgba(42,92,255,0.10) 0%, rgba(11,18,32,0.9) 55%);
  box-shadow: 0 0 0 1px rgba(42,92,255,0.06), inset 0 0 40px rgba(42,92,255,0.04);
}
.s-card.featured::before { opacity: 0.5; }

.s-card.pentest-card { border-color: rgba(42,92,255,0.16); }

/* Card number */
.s-card-num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--serif); font-size: 2.8rem; font-weight: 200;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
  transition: color 0.4s;
}
.s-card:hover .s-card-num { color: rgba(91,138,255,0.06); }

.s-card-icon {
  font-size: 2rem; line-height: 1;
  filter: drop-shadow(0 0 12px rgba(91,138,255,0.25));
}
.s-card h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  color: var(--white); letter-spacing: 0.02em;
}
.s-card p {
  font-size: 0.84rem; color: var(--mid); line-height: 1.8; flex: 1;
}
.s-card-tag {
  display: inline-flex; align-items: center;
  font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2); border: 1px solid rgba(91,138,255,0.22);
  border-radius: 20px; padding: 4px 12px; width: fit-content;
  background: rgba(42,92,255,0.06);
}
.s-card-tag.security { color: #5bf0a8; border-color: rgba(91,240,168,0.22); background: rgba(91,240,168,0.05); }

.s-card-limits {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.84rem; color: var(--mid);
}
.s-card-limits strong { color: var(--white); font-weight: 400; }
.s-card-limits .sep { color: var(--muted); }

.s-card-contact {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2); text-decoration: none; width: fit-content;
  padding: 7px 16px; border: 1px solid rgba(91,138,255,0.2); border-radius: 20px;
  background: rgba(42,92,255,0.06);
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  margin-top: 4px;
}
.s-card-contact:hover {
  background: var(--accent); border-color: var(--accent); color: var(--white);
  box-shadow: 0 0 24px rgba(42,92,255,0.35);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  padding: 120px 52px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 40%, var(--dark-2) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
#contact::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 75% 50%, rgba(42,92,255,0.05) 0%, transparent 70%);
}

.contact-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.contact-text .tag { margin-bottom: 16px; display: block; }
.contact-text h2 {
  font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 22px;
}
.contact-text h2 em { font-style: italic; color: var(--accent-3); }
.contact-text p { font-size: 0.88rem; color: var(--mid); line-height: 1.9; max-width: 400px; }

.contact-btns { display: flex; flex-direction: column; gap: 14px; }

.contact-btn {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 28px; border-radius: var(--radius); text-decoration: none;
  border: 1px solid transparent; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.contact-btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: translateX(-100%); transition: transform 0.6s var(--ease-out);
}
.contact-btn:hover::after { transform: translateX(100%); }

.contact-btn.telegram {
  background: linear-gradient(135deg, rgba(34,158,217,0.14) 0%, rgba(34,158,217,0.06) 100%);
  border-color: rgba(34,158,217,0.25);
}
.contact-btn.telegram:hover {
  transform: translateX(8px); border-color: rgba(34,158,217,0.6);
  box-shadow: 0 8px 40px rgba(34,158,217,0.18), inset 0 0 30px rgba(34,158,217,0.05);
}
.contact-btn.signal {
  background: linear-gradient(135deg, rgba(58,118,240,0.14) 0%, rgba(58,118,240,0.06) 100%);
  border-color: rgba(58,118,240,0.25);
}
.contact-btn.signal:hover {
  transform: translateX(8px); border-color: rgba(58,118,240,0.6);
  box-shadow: 0 8px 40px rgba(58,118,240,0.18), inset 0 0 30px rgba(58,118,240,0.05);
}

.cb-icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.telegram .cb-icon { background: rgba(34,158,217,0.2); color: var(--telegram); }
.signal   .cb-icon { background: rgba(58,118,240,0.2); color: var(--signal);   }

.cb-label { display: flex; flex-direction: column; gap: 4px; }
.cb-platform { font-size: 1rem; font-weight: 400; color: var(--white); letter-spacing: 0.04em; }
.cb-handle   { font-size: 0.78rem; color: var(--mid); letter-spacing: 0.04em; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 28px 52px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--dark);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand {
  font-family: var(--serif); font-size: 1rem; font-weight: 300;
  letter-spacing: 0.12em; color: var(--pale);
}
.footer-copy { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.12em; }

/* ============================================================
   FIXED CONTACT WIDGET
   ============================================================ */
#contact-widget {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}

/* Pulse ring on the toggle button */
#widget-toggle {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none; cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 28px rgba(42,92,255,0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
}
#widget-toggle::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(91,138,255,0.35);
  animation: widgetPulse 2.5s ease-in-out infinite;
}
@keyframes widgetPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.18); opacity: 0; }
}
#widget-toggle:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(42,92,255,0.6); }

.widget-panel {
  display: flex; flex-direction: column; gap: 8px;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
#contact-widget.collapsed .widget-panel {
  opacity: 0; transform: translateY(14px) scale(0.93); pointer-events: none;
}
#contact-widget.open .widget-panel {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}

.widget-link {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 40px; text-decoration: none;
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.05em; white-space: nowrap;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  min-height: 44px;
}
.widget-link.telegram { background: var(--telegram); color: #fff; box-shadow: 0 4px 18px rgba(34,158,217,0.35); }
.widget-link.signal   { background: var(--signal);   color: #fff; box-shadow: 0 4px 18px rgba(58,118,240,0.35); }
.widget-link:hover    { transform: translateX(-5px); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  #services { padding: 100px 36px 80px; }
  #contact { padding: 100px 36px; }
  .contact-wrap { gap: 56px; }
  #nav       { padding: 20px 36px; }
  #nav.scrolled { padding: 13px 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  /* NAV */
  #nav { padding: 16px 20px; }
  #nav.scrolled { padding: 11px 20px; }
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  /* HERO */
  #hero { height: 100dvh; min-height: 580px; }
  .hero-title { text-shadow: 0 2px 8px rgba(0,0,0,1), 0 6px 30px rgba(0,0,0,0.9), 0 0 40px rgba(91,138,255,0.3); }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.22em; }
  .hero-sub { font-size: 0.84rem; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-cta { padding: 14px 28px; font-size: 0.72rem; }

  /* SERVICES */
  #services { padding: 72px 16px 60px; }
  .section-head { margin-bottom: 56px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .s-card { padding: 26px 22px; }
  .s-card h3 { font-size: 1.25rem; }
  .s-card-num { display: none; }

  /* CONTACT */
  #contact { padding: 72px 16px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
  .contact-text p { max-width: 100%; }
  .contact-btn { padding: 18px 22px; min-height: 68px; }

  /* FOOTER */
  footer { padding: 22px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* WIDGET */
  #contact-widget { bottom: 18px; right: 18px; }
  #widget-toggle { width: 52px; height: 52px; }
  .widget-link { padding: 12px 18px; min-height: 46px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.2rem, 19vw, 5.5rem); }
  #nav { padding: 14px 16px; }
  .nav-logo { font-size: 1.1rem; }
  .s-card { padding: 22px 18px; gap: 12px; }
  .contact-btn { gap: 14px; }
  .cb-icon { width: 38px; height: 38px; }
}
