/* ═══════════════════════════════════════════════
   SS-ME — Global Stylesheet
   Design: Editorial Precision meets Silicon Valley
   Font: Instrument Serif (display) + DM Sans (body)
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── TOKENS ── */
:root {
  --black:       #0D0C1A;
  --off-black:   #12112B;
  --charcoal:    #1C1B3A;
  --mid:         #888A8C;
  --subtle:      #B0B6D9;
  --border:      rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --white:       #ffffff;
  --off-white:   #f8f8f6;
  --cream:       #f2f0eb;
  --accent:      #30478C;
  --brand-navy:  #1F1D59;
  --brand-mid:   #30478C;
  --brand-silver:#888A8C;
  --brand-pearl: #B0B6D9;
  --accent-blue: #30478C;
  --gradient:    linear-gradient(135deg, #1F1D59 0%, #30478C 50%, #B0B6D9 100%);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-xl:  0 40px 100px rgba(0,0,0,0.16), 0 16px 40px rgba(0,0,0,0.08);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.display-xl {
  font-size: clamp(52px, 7vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.display-lg {
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: -0.035em;
}

.display-md {
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.03em;
}

.display-sm {
  font-size: clamp(22px, 2.5vw, 36px);
  letter-spacing: -0.02em;
}

.text-mid    { color: var(--mid); }
.text-subtle { color: var(--subtle); }

.italic { font-style: italic; }

/* ── LOGO ── */
.ss-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.ss-logo img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .ss-logo img {
    height: 28px;
  }
}

.ss-logo:hover { opacity: 0.75; }

.ss-logo .logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  margin-bottom: 8px;
  margin-left: 1px;
}

/* ── NAVBAR ── */
.ss-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  transition: all 0.4s var(--ease-out);
}

.ss-navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(0px);
}

.ss-navbar.scrolled .nav-inner {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.ss-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ss-navbar .nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.ss-navbar .nav-links a:hover,
.ss-navbar .nav-links a.active { opacity: 1; }

.ss-navbar .nav-links a.active {
  position: relative;
}

/* ── BUTTONS ── */
.btn-ss {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-ss-primary {
  background: var(--brand-navy);
  color: var(--white);
}

.btn-ss-primary:hover {
  background: var(--brand-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-ss-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,0.15);
}

.btn-ss-outline:hover {
  border-color: var(--black);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-ss-ghost {
  background: transparent;
  color: var(--mid);
  padding: 10px 0;
}

.btn-ss-ghost:hover { color: var(--black); }

.btn-ss-blue {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-ss-blue:hover {
  background: var(--brand-navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(31,29,89,0.35);
}

.btn-ss-lg {
  font-size: 16px;
  padding: 14px 28px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: gap 0.2s var(--ease-out);
}

.btn-arrow:hover { gap: 10px; color: var(--black); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV LINKS (offcanvas) ── */
.mobile-nav-link {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 36px;
  color: var(--off-black);
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--brand-mid); }

/* ── SECTIONS ── */
section { position: relative; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 20px;
  display: block;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ── CARDS ── */
.ss-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.ss-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ss-card-dark {
  background: var(--off-black);
  border-color: var(--border-dark);
  color: var(--white);
}

.ss-card-dark:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ── FEATURE ICON ── */
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { stroke: white; }
.feature-icon.blue { background: var(--accent-blue); }

/* ── NOISE TEXTURE ── */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* ── HERO GRADIENT BLOB ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

/* ── MARQUEE ── */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  color: var(--border);
  letter-spacing: -0.03em;
  font-style: italic;
}

/* ── STEP NUMBER ── */
.step-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: -10px;
}

/* ── DEVICE MOCKUP ── */
.device-mockup {
  background: var(--charcoal);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.device-screen {
  background: var(--off-black);
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── STAT BLOCK ── */
.stat-block .stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ── FOOTER ── */
.ss-footer {
  background: var(--off-black);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 40px;
}

.ss-footer .footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}

.ss-footer a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.ss-footer a:hover { color: var(--white); }

.ss-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.ss-footer .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ss-footer .social-icon:hover { background: rgba(255,255,255,0.12); }

/* ── FORM ── */
.ss-form .form-control,
.ss-form .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--off-white);
  transition: all 0.2s;
  color: var(--black);
}

.ss-form .form-control:focus,
.ss-form .form-select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
  background: var(--white);
  outline: none;
}

.ss-form textarea { resize: vertical; min-height: 140px; }

.ss-form label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ── PAGE TRANSITION ── */
.page-enter {
  animation: pageEnter 0.6s var(--ease-out) forwards;
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CONTACT INFO ITEM ── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child { padding-top: 0; }

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FOOTER UTILITIES ── */
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  max-width: 260px;
  line-height: 1.65;
  margin-top: 12px;
}

.footer-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}

.footer-email {
  font-size: 14px;
}

.footer-border-row {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
  font-size: 13px;
}

/* ── HERO PARAGRAPH ── */
.hero-lead {
  font-size: 18px;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.65;
}

.hero-lead-lg {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
}

/* ── PRODUCT SECTION TEXT ── */
.product-lead {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── FEATURE CARD TEXT ── */
.card-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}

/* ── STAT LABEL ── */
.stat-label {
  font-size: 13px;
  color: var(--mid);
  margin-top: 4px;
}

/* ── FUTURE / STATUS ROW ── */
.status-dot-amber {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 12px rgba(245,158,11,0.4);
}

.status-note {
  font-size: 13px;
  color: var(--mid);
}

.future-lead {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── MARQUEE BORDER ── */
.marquee-bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── DARK SECTION LABEL ── */
.section-label-dark {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  display: block;
}

/* ── DARK HERO PARAGRAPH ── */
.shawir-hero-lead {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  line-height: 1.6;
}

/* ── FEATURE CARD (BENTO) TEXT ── */
.feature-card-title-lg {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.feature-card-desc-lg {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 400px;
}

.feature-card-title-sm {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card-desc-sm {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

.feature-card-title-sm-white {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
  color: white;
}

.feature-card-desc-sm-white {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}


/* ── HOW IT WORKS STEP TEXT ── */
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
}

/* ── DOWNLOAD SECTION TEXT ── */
.download-wordmark {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  color: white;
  letter-spacing: -0.05em;
  font-style: italic;
  margin-bottom: 16px;
}

.download-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  max-width: 400px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ── DOWNLOAD SECTION GLOW ── */
.download-glow {
  background: radial-gradient(circle, rgba(0,102,255,0.18) 0%, transparent 70%);
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

/* ── ABOUT HERO STAT GRID ── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-hero-stat {
  background: var(--off-white);
  padding: 32px 28px;
  transition: background 0.2s;
}

.about-hero-stat:hover { background: var(--cream); }

.about-hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--black);
}

.about-hero-stat-label {
  font-size: 12px;
  color: var(--subtle);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── ABOUT / MANIFESTO ── */
.manifesto-block {
  background: var(--off-black);
  padding: 100px 0;
  overflow: hidden;
}

.manifesto-quotemark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  font-style: italic;
  margin-top: -20px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  letter-spacing: -0.025em;
  margin: 0;
}

.manifesto-quote em {
  color: rgba(255,255,255,0.95);
  font-style: italic;
}

.text-blue-dot { color: var(--accent-blue); }

.manifesto-sig {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,0.2);
  letter-spacing: -0.04em;
  font-style: italic;
}

/* ── PRODUCT ROW TEXT ── */
.product-row-wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  font-style: italic;
  letter-spacing: -0.04em;
}

.product-row-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.product-row-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
  max-width: 540px;
}

/* ── STATUS DOTS ── */
.status-dot-green {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
}

.status-dot-amber-sm {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245,158,11,0.4);
}

/* ── CULTURE STATS ── */
.culture-stat-num {
  font-family: var(--font-display);
  font-size: 60px;
  color: white;
  letter-spacing: -0.05em;
  line-height: 1;
}

.culture-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

/* ── ABOUT CTA SECTION ── */
.about-cta-section {
  padding: 120px 0;
  text-align: center;
}

.about-cta-lead {
  font-size: 17px;
  color: var(--mid);
  margin-bottom: 36px;
}

/* ── CONTACT INFO TEXT ── */
.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-value-span {
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
}

.contact-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
}

.contact-online-note {
  font-size: 13px;
  color: var(--subtle);
}

/* ── FORM PANEL TEXT ── */
.form-panel-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.form-note {
  font-size: 12px;
  color: var(--subtle);
  margin-top: 16px;
  text-align: center;
}

.btn-submit {
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background 0.3s ease, opacity 0.3s ease;
}
.btn-submit.btn-state-loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-submit.btn-state-success {
  background: #16a34a !important;
}

/* ── HERO DEVICE MOCKUP (HOME) ── */
.hero-device-wrapper {
  position: relative;
}

.hero-device-frame {
  width: 280px;
  height: 560px;
  background: transparent;
  border-radius: 40px;
  padding: 0;
  box-shadow: var(--shadow-xl);
}

.hero-device-screen {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 40px;
  overflow: hidden;
}

.hero-device-name {
  font-family: var(--font-display);
  font-size: 36px;
  color: white;
  letter-spacing: -0.04em;
  font-style: italic;
}

.hero-device-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-device-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.hero-dot-active {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-mid);
}

.hero-dot-inactive {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* ── FLOATING CARDS (HERO) ── */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}

.float-card-1 {
  top: 60px;
  right: -50px;
  min-width: 140px;
  animation: float 4s ease-in-out infinite;
}

.float-card-2 {
  bottom: 80px;
  left: -60px;
  animation: float 4s ease-in-out infinite 2s;
}

.float-card-label {
  font-size: 11px;
  color: var(--subtle);
  margin-bottom: 4px;
}

.float-card-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

/* ── SHAWIR NAVBAR DARK VARIANT ── */
.nav-dark .ss-logo img { filter: brightness(0) invert(1); }
.nav-dark .nav-links a { color: rgba(255,255,255,0.5); }
.nav-dark .nav-links a.active { color: white; opacity: 1; }
.nav-dark .btn-contact-dark {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ── SHAWIR SEE FEATURES BTN ── */
.btn-ss-ghost-dark {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ss-ghost-dark:hover {
  background: rgba(255,255,255,0.14);
  color: white;
}

/* ── VIDEO CARD ICON (BLUE BG) ── */
.feature-icon-white {
  background: rgba(255,255,255,0.15);
}

/* ── APPOINTMENT CARD (CREAM BG) ── */
.feature-card-cream {
  background: var(--cream);
  color: var(--black);
}

.feature-card-cream .feature-icon {
  background: var(--black);
}

/* ── ABOUT: PRODUCT ROW NEXT ── */
.product-row-next {
  background: var(--off-white);
}

.product-row-icon-cream {
  background: var(--cream);
  min-width: 160px;
}

.product-row-icon-question {
  font-size: 32px;
}

/* ── CULTURE SECTION BORDER ── */
.culture-grid-border {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* ── SHAWIR FEATURE CARD: APPOINTMENT INLINE FIX ── */
.feature-card-lg-blue {
  background: var(--accent-blue) !important;
}

/* ── CULTURE HEADING WHITE ── */
.culture-heading { color: white; }

/* ── CONTACT HERO LEAD NARROW ── */
.hero-lead-narrow {
  font-size: 18px;
  color: var(--mid);
  max-width: 440px;
  line-height: 1.65;
}

/* ── WHATSAPP ICON BACKGROUND ── */
.contact-icon-whatsapp {
  background: #dcfce7;
}

/* ── HERO APP UI MOCKUP ── */
.hero-app-ui {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 20px;
  gap: 16px;
}

.hero-app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-app-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F1D59 0%, #30478C 100%);
  flex-shrink: 0;
}

.hero-app-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}

.hero-app-status {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.hero-app-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  display: inline-block;
}

.hero-app-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.hero-app-msg {
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 85%;
}

.hero-app-msg-in {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.hero-app-msg-out {
  background: var(--brand-mid);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.hero-app-actions {
  display: flex;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hero-app-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-app-action-btn-blue {
  background: var(--brand-mid);
}

/* ── PHILOSOPHY CONVICTIONS ── */
.philosophy-convictions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philosophy-conviction-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.philosophy-conviction-bar {
  width: 2px;
  min-height: 40px;
  background: rgba(0,102,255,0.5);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.philosophy-conviction-item p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

/* ── CTA SUB LINE ── */
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

/* ── FLOAT ANIMATION ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding-top: 100px;
  overflow: hidden;
}

.hero-blob-1 {
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.08) 0%, transparent 70%);
}

.hero-blob-2 {
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(102,0,255,0.05) 0%, transparent 70%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--black));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.8); }
  50%       { opacity: 0.6; transform: scaleY(1); }
}

.philosophy {
  background: var(--off-black);
  color: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.philosophy-text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
}

.product-section { padding: 120px 0; }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

@media (max-width: 767px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.future-section {
  background: var(--cream);
  padding: 120px 0;
  overflow: hidden;
}

.future-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.cta-section {
  background: var(--off-black);
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-headline em {
  color: rgba(255,255,255,0.55);
}

.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   SHAWIR PAGE
══════════════════════════════════════════════ */
.shawir-hero {
  min-height: 100vh;
  background: var(--off-black);
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.shawir-blob-1 {
  top: -50px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(48,71,140,0.18) 0%, transparent 70%);
}

.shawir-blob-2 {
  bottom: 0; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(176,182,217,0.10) 0%, transparent 70%);
}

.shawir-wordmark {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 130px);
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-style: italic;
}

.shawir-tag {
  display: inline-block;
  background: rgba(48,71,140,0.15);
  border: 1px solid rgba(176,182,217,0.4);
  color: var(--brand-pearl);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.features-section { padding: 120px 0; background: var(--white); }

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

.feature-card-lg {
  grid-column: span 2;
  background: var(--off-black);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.feature-card-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.feature-card-sm {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.feature-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card-blue {
  background: var(--brand-navy);
  border-color: transparent;
  color: var(--white);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.12);
}

.feature-num-light { color: rgba(0,0,0,0.06); }
.feature-num-white { color: rgba(255,255,255,0.08); }

@media (max-width: 991px) {
  .features-mega-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-lg { grid-column: span 2; }
}

@media (max-width: 575px) {
  .features-mega-grid { grid-template-columns: 1fr; }
  .feature-card-lg { grid-column: span 1; }
}

.how-section {
  background: var(--cream);
  padding: 120px 0;
}

.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.step-item:last-child { border-bottom: none; }

.step-number-big {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(0,0,0,0.08);
  flex-shrink: 0;
  width: 80px;
}

.download-section {
  background: var(--off-black);
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
}

.store-btn:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  transform: translateY(-2px);
}

.store-btn-label { text-align: left; }

.store-btn-label small {
  display: block;
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-btn-label strong {
  font-size: 15px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.about-hero {
  padding: 180px 0 100px;
  background: var(--white);
  overflow: hidden;
}

.about-blob {
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
}

.values-section { padding: 100px 0; background: var(--off-white); }

.value-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 48px;
  align-items: flex-start;
  transition: all 0.2s;
}

.value-item:first-child { border-top: 1px solid var(--border); }

.value-num {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--accent-blue);
  flex-shrink: 0;
  width: 40px;
  padding-top: 4px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  flex-shrink: 0;
  width: 220px;
}

.value-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .value-item { flex-direction: column; gap: 16px; }
  .value-title { width: auto; }
}

.products-section { padding: 100px 0; }

.product-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 20px;
  transition: box-shadow 0.3s var(--ease-out);
}

.product-row:hover { box-shadow: var(--shadow-lg); }

.product-row-icon {
  background: var(--off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-width: 160px;
}

.product-row-icon.blue { background: var(--brand-mid); }
.product-row-icon.green { background: #064e3b; }
.product-row-icon.product-row-icon-img { background: transparent; padding: 0; }
.product-row-icon.product-row-icon-img img { width: 100px; height: 100px; border-radius: 22px; object-fit: cover; display: block; }

.product-row-content {
  padding: 40px 48px;
  flex: 1;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .product-row { flex-direction: column; }
  .product-row-icon { min-width: auto; padding: 32px; }
  .product-row-content { padding: 28px; }
}

.culture-section {
  background: var(--off-black);
  padding: 120px 0;
  color: var(--white);
}

.culture-stat {
  padding: 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.culture-stat:last-child { border-right: none; }

@media (max-width: 767px) {
  .culture-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 28px;
  }
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-hero {
  padding: 180px 0 80px;
  background: var(--white);
  overflow: hidden;
}

.contact-blob {
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
}

.contact-section { padding: 60px 0 120px; }

.contact-left {
  padding-right: 60px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

@media (max-width: 991px) {
  .contact-left { padding-right: 0; margin-bottom: 40px; }
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  border-radius: var(--radius-md);
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s var(--ease-out);
  width: 100%;
  justify-content: center;
}

.whatsapp-btn:hover {
  background: #20bd5a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.form-panel {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
}

@media (max-width: 575px) {
  .form-panel { padding: 28px; }
}

.location-card {
  background: var(--off-black);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .ss-navbar .nav-links { display: none; }
  .hamburger { display: flex; }

  .ss-navbar .nav-inner { padding-top: 18px; padding-bottom: 18px; }
  .ss-navbar.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }
}

@media (max-width: 767px) {
  .display-xl { font-size: clamp(40px, 10vw, 60px); }
  .display-lg { font-size: clamp(32px, 8vw, 48px); }
  .display-md { font-size: clamp(26px, 6vw, 38px); }
}

/* ── SHAWIR HERO MOCKUP ── */
.shawir-device-wrapper { position: relative; }

.shawir-device-frame {
  width: 260px;
  height: 520px;
  background: transparent;
  border: none;
  border-radius: 36px;
  padding: 0;
  overflow: hidden;
}

.shawir-profile-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.shawir-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F1D59 0%, #30478C 100%);
  margin-bottom: 4px;
}

.shawir-profile-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  letter-spacing: -0.02em;
  text-align: center;
}

.shawir-profile-tag {
  font-size: 11px;
  color: #60a5fa;
  background: rgba(0,102,255,0.15);
  border: 1px solid rgba(0,102,255,0.25);
  border-radius: 100px;
  padding: 3px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shawir-profile-stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 14px;
}

.shawir-profile-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  width: 100%;
}

.shawir-profile-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.shawir-profile-btn-blue { background: var(--brand-mid); border-color: var(--brand-mid); }

/* ── FOR INFLUENCERS & EXPERTS ── */
.experts-value-section {
  padding: 120px 0;
  background: var(--white);
}

.section-lead {
  font-size: 17px;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 991px) {
  .experts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .experts-grid { grid-template-columns: 1fr; }
}

.expert-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.expert-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.expert-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(48, 71, 140, 0.08);
  color: var(--brand-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expert-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.expert-card-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── HOW IT WORKS CONTEXT ── */
.how-context {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 260px;
}

/* ── DOWNLOAD PLATFORM NOTE ── */
.download-platform-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-icon-opacity { opacity: 0.4; }

/* ── CONTACT HERO INFO CARD ── */
.contact-hero-card {
  background: var(--off-black);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.07);
}

.contact-hero-card-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-hero-card-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hero-card-item:first-child { padding-top: 0; }

.contact-hero-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
}

.contact-hero-card-value {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.contact-hero-card-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-style: italic;
}

.contact-hero-avail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-hero-avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  flex-shrink: 0;
}

.contact-hero-avail-text {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
