/*
Silicon Cloud Style

*/ 

 /* ─── DESIGN TOKENS ────────────────────────────────────────────── */
  :root {
    --navy:       #0A2540;
    --navy-deep:  #0E3460;
    --cyan:       #00B4D8;
    --ice:        #CAF0F8;
    --teal:       #2EC4B6;
    --surface:    #F4F6F9;
    --border:     #E0E4EB;
    --muted:      #6B7A90;
    --ink:        #1A1A2E;
    --orange:     #FF6B35;
    --gold:       #FFD60A;
    --white:      #FFFFFF;
    --radius:     6px;
    --radius-lg:  10px;
  } 

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  /* ─── NAVBAR ───────────────────────────────────────────────────── */
  .sc-navbar {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .sc-navbar .navbar-brand img { height: 36px; }

  .sc-navbar .nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75) !important;
    padding: 1.5rem 1rem !important;
    transition: color 0.2s;
    letter-spacing: 0.01em;
  }
  .sc-navbar .nav-link:hover { color: var(--cyan) !important; }

  .sc-navbar .nav-link.active { color: var(--white) !important; }

  .btn-nav-cta {
    background: var(--cyan);
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 500;
    border-radius: var(--radius);
    padding: 0.5rem 1.25rem !important;
    font-size: 14px;
    transition: background 0.2s, transform 0.15s;
    text-decoration:none;
  }
  .btn-nav-cta:hover { background: #00cef5; transform: translateY(-1px); }

  .navbar-toggler { border-color: rgba(255,255,255,0.2); }
  .navbar-toggler-icon { filter: invert(1); }

  /* ─── BUTTONS ──────────────────────────────────────────────────── */
  .btn-primary-sc {
    background: var(--cyan);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    background: var(--gold);
  }
  .btn-primary-sc:hover { background: #00cef5; color: var(--navy); transform: translateY(-2px); }

  .btn-outline-sc {
    background: transparent;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius);
    padding: 0.75rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .btn-outline-sc:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,180,216,0.06); }

  .btn-dark-sc {
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 0.75rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
    text-decoration: none;
  }
  .btn-dark-sc:hover { background: var(--navy-deep); color: var(--white); }

  /* ─── SECTION SPACING ──────────────────────────────────────────── */
  .section { padding: 100px 0; }
  .section-sm { padding: 60px 0; }
  @media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-sm { padding: 40px 0; }
  }

  /* ─── SECTION LABELS ───────────────────────────────────────────── */
  .section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    display: block;
    margin-bottom: 1rem;
  }

  /* ─── 01 HERO ──────────────────────────────────────────────────── */
  .hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    padding: 60px 0 100px;
  }

  /* Subtle geometric background pattern */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  /* Radial glow top-right */
  .hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,180,216,0.1);
    border: 1px solid rgba(0,180,216,0.25);
    border-radius: 4px;
    padding: 0.35rem 0.9rem;
    font-size: 12px;
    font-weight: 500;
    color: var(--cyan);
    letter-spacing: 0.05em;
    margin-bottom: 1.75rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 700px;
  }

  .hero h1 span { color: var(--cyan); }

  .hero .lead {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }

  .hero-meta {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
  }
  .hero-meta-item i { color: var(--teal); font-size: 16px; }

  /* Hero visual card */
  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    z-index: 1;
  }

  .hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  .status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(46,196,182,0.2);
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46,196,182,0.2); }
    50%       { box-shadow: 0 0 0 6px rgba(46,196,182,0.1); }
  }

  .uptime-badge {
    font-size: 11px;
    font-weight: 500;
    color: var(--teal);
    background: rgba(46,196,182,0.1);
    border: 1px solid rgba(46,196,182,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
  }

  .metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .metric-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
  }

  .metric-box .val {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.03em;
    display: block;
  }
  .metric-box .lbl { font-size: 11px; color: var(--muted); }

  .zone-bar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .zone-bar .zone-label { font-size: 12px; color: rgba(255,255,255,0.6); }
  .zone-bar .zone-status { font-size: 11px; color: var(--teal); font-weight: 500; }
  .zone-bar .zone-bar-fill {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
  }
  .zone-bar .zone-bar-fill span {
    display: block;
    height: 100%;
    background: var(--teal);
    border-radius: 2px;
    animation: fillbar 2s ease-out forwards;
  }
  @keyframes fillbar { from { width: 0; } }

  /* ─── 02 TRUST BAR ─────────────────────────────────────────────── */
  .trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }

  .trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
  }
  .trust-item i { color: var(--navy); font-size: 18px; }

  .trust-divider {
    width: 1px; height: 28px;
    background: var(--border);
  }

  /* ─── 03 PLATFORM ──────────────────────────────────────────────── */
  .platform { background: var(--white); }

  .platform-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: border-color 0.2s, transform 0.2s;
  }
  .platform-card:hover { border-color: var(--cyan); transform: translateY(-3px); }

  .platform-icon {
    width: 44px; height: 44px;
    background: rgba(0,180,216,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }
  .platform-icon i { font-size: 20px; color: var(--cyan); }

  .platform-card h4 {
    font-size: 16px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  .platform-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* Nutanix co-brand strip */
  .nutanix-strip {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .nutanix-strip p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin: 0;
    max-width: 480px;
  }

  .nutanix-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 0.6rem 1.2rem;
  }
  .nutanix-badge span { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }

  /* ─── 04 INDUSTRIES ────────────────────────────────────────────── */
  .industries { background: var(--surface); }

  .industry-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .industry-card:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(10,37,64,0.08); }

  .industry-icon {
    width: 40px; height: 40px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .industry-icon i { font-size: 18px; color: var(--cyan); }

  .industry-card h5 {
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .industry-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  .compliance-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--ice);
    color: var(--navy-deep);
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    padding: 0.2rem 0.55rem;
    margin-top: 0.75rem;
  }

  /* ─── 05 WHY SILICON CLOUD ─────────────────────────────────────── */
  .why-sc { background: var(--white); }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .comparison-table th {
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 1rem 1.25rem;
    text-align: center;
  }
  .comparison-table th:first-child { text-align: left; background: var(--navy-deep); }

  .comparison-table th.highlight { background: rgba(0,180,216,0.25); color: var(--cyan); }

  .comparison-table td {
    padding: 0.875rem 1.25rem;
    font-size: 14px;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
  .comparison-table tr:last-child td { border-bottom: none; }
  .comparison-table tr:nth-child(even) td { background: var(--surface); }
  .comparison-table tr:nth-child(even) td:first-child { background: var(--surface); }

  .check-yes { color: var(--teal); font-size: 18px; }
  .check-no  { color: #CBD0DB; font-size: 18px; }
  .check-partial { color: var(--gold); font-size: 16px; font-weight: 600; }

  /* ─── 06 COMPLIANCE ────────────────────────────────────────────── */
  .compliance { background: var(--navy); }

  .compliance h2 { color: var(--white); }
  .compliance .section-label { color: var(--cyan); }
  .compliance .lead-text { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 540px; }

  .cert-card {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: border-color 0.2s;
  }
  .cert-card:hover { border-color: rgba(0,180,216,0.4); }

  .cert-card h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.4rem;
  }
  .cert-card p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

  .cert-icon {
    width: 40px; height: 40px;
    background: rgba(0,180,216,0.1);
    border: 1px solid rgba(0,180,216,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .cert-icon i { color: var(--cyan); font-size: 18px; }

  .sovereignty-strip {
    background: rgba(0,180,216,0.06);
    border: 1px solid rgba(0,180,216,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .sovereignty-strip i { font-size: 2rem; color: var(--cyan); flex-shrink: 0; }
  .sovereignty-strip h5 { color: var(--white); font-size: 16px; font-weight: 500; margin-bottom: 0.25rem; }
  .sovereignty-strip p { color: rgba(255,255,255,0.5); font-size: 14px; margin: 0; }

  /* ─── 07 ARCHITECTURE ──────────────────────────────────────────── */
  .architecture { background: var(--surface); }

  .arch-zone {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
  }

  .arch-zone-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
  }

  .arch-zone-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.25rem;
  }

  .arch-zone-loc { font-size: 12px; color: var(--muted); }

  .arch-zone-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(46,196,182,0.08);
    color: var(--teal);
    font-size: 11px;
    font-weight: 500;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-top: 0.75rem;
  }

  .arch-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }

  .sla-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--white);
    text-align: center;
  }
  .sla-card .sla-val {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--cyan);
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .sla-card .sla-label { font-size: 13px; color: rgba(255,255,255,0.55); }

  /* ─── 08 PRICING ───────────────────────────────────────────────── */
  .pricing { background: var(--white); }

  .pricing-card {
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    background: var(--white);
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
  }
  .pricing-card:hover { border-color: var(--cyan); transform: translateY(-3px); }

  .pricing-card.featured {
    border: 1.5px solid var(--cyan);
    background: var(--navy);
    color: var(--white);
  }

  .recommended-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 500;
    padding: 0.25rem 0.9rem;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }

  .pricing-tier {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
    display: block;
  }
  .pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }

  .pricing-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.25rem;
  }
  .pricing-card.featured h4 { color: var(--white); }

  .pricing-price {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 2.25rem;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin: 1rem 0 0.25rem;
    display: block;
  }
  .pricing-card.featured .pricing-price { color: var(--cyan); }

  .pricing-sub { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; }
  .pricing-card.featured .pricing-sub { color: rgba(255,255,255,0.45); }

  .pricing-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
  }
  .pricing-card.featured .pricing-divider { border-top-color: rgba(255,255,255,0.1); }

  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 0.75rem;
  }
  .pricing-feature i { color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
  .pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.65); }

  .no-egress-note {
    background: rgba(46,196,182,0.08);
    border: 1px solid rgba(46,196,182,0.2);
    border-radius: var(--radius);
    padding: 0.9rem 1.25rem;
    text-align: center;
    margin-top: 2.5rem;
    font-size: 14px;
    color: var(--teal);
  }

  /* ─── 09 SOCIAL PROOF ──────────────────────────────────────────── */
  .social-proof { background: var(--surface); }

  .stat-card {
    text-align: center;
    padding: 1.5rem;
  }
  .stat-card .stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--navy);
    letter-spacing: -0.04em;
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .stat-card .stat-lbl { font-size: 14px; color: var(--muted); }

  .case-study-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: border-color 0.2s;
  }
  .case-study-card:hover { border-color: var(--cyan); }

  .case-study-tag {
    display: inline-flex;
    align-items: center;
    background: var(--navy);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }

  .case-study-card h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .case-study-card p { font-size: 14px; color: var(--muted); }

  .case-result {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
  }

  .case-result-item .result-val {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--navy);
    letter-spacing: -0.02em;
    display: block;
    line-height: 1;
  }
  .case-result-item .result-lbl { font-size: 12px; color: var(--muted); }

  /* ─── 10 FINAL CTA ─────────────────────────────────────────────── */
  .final-cta {
    background: var(--navy);
    text-align: center;
    padding: 100px 0;
  }

  .final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin: 0 auto 2.5rem;
  }

  /* ─── FOOTER ───────────────────────────────────────────────────── */
  .sc-footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 32px;
  }

  .footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    max-width: 260px;
    margin-top: 0.75rem;
    line-height: 1.7;
  }

  .footer-col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
  }

  .footer-link {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
  }
  .footer-link:hover { color: var(--cyan); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }

  .footer-cert-strip {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .footer-cert {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
  }
  .footer-cert i { color: rgba(46,196,182,0.6); font-size: 14px; }

  /* ─── UTILITY ──────────────────────────────────────────────────── */
  .text-navy { color: var(--navy); }
  .text-cyan  { color: var(--cyan); }
  .text-muted-custom { color: var(--muted); }

  /* ─── ANIMATIONS ───────────────────────────────────────────────── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.4s; }
  .fade-up:nth-child(6) { transition-delay: 0.5s; }
.enq-wrapper label{
	color:#fff;
}
.enq-wrapper .forminator-consent__label, .enq-wrapper .forminator-consent__label a{
    color: #fff;
}

.enq-wrapper button{
	background: var(--cyan);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    background: var(--gold);
}
.enq-wrapper button:hover {
    background: #00cef5;
    color: var(--navy);
    transform: translateY(-2px);
}
.forminator-label {
    color: #fff;
}
.hero-badge { 
    color: #fff;
}