/* ================================================
   Everyone's Tech Guy  -  Main Stylesheet
   style.css
   ================================================ */

/* ── BASE + VARIABLES + NAV (shared) ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0d1f3c;
      --blue:   #1a56b0;
      --sky:    #3b9edd;
      --cream:  #f5f0e8;
      --white:  #ffffff;
      --gray:   #4a5568;
      --border: #d4cfc6;
      --accent: #e8a020;
    }

    /* ── SKIP LINK ── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      background: var(--accent);
      color: var(--navy);
      font-weight: 700;
      padding: 0.6rem 1.2rem;
      border-radius: 0 0 6px 6px;
      text-decoration: none;
      z-index: 9999;
      font-size: 0.9rem;
    }
    .skip-link:focus { top: 0; }

    /* ── FOCUS STYLES ── */
    :focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
      border-radius: 3px;
    }
    /* Remove default outline only when focus-visible is supported */
    :focus:not(:focus-visible) { outline: none; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      background: var(--navy);
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.45rem 0.85rem;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
    .nav-cta {
      background: var(--accent);
      color: var(--navy) !important;
      font-weight: 600 !important;
      font-size: 0.85rem !important;
      padding: 0.55rem 1.2rem !important;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: background 0.2s !important;
      background-color: var(--accent) !important;
    }
    .nav-cta:hover { background: #f5b740 !important; }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem;
      color: var(--white);
      flex-direction: column;
      gap: 5px;
      align-items: center;
      justify-content: center;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 680px) {
      .nav-hamburger { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 1rem 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        gap: 0;
      }
      .nav-links.open { display: flex; }
      .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
      .nav-links li:last-child { border-bottom: none; }
      .nav-links a { padding: 1.6rem 1rem; font-size: 1.1rem; display: block; }
      .nav-cta { text-align: center; margin-top: 0.5rem; }
    }

    /* ── HERO ── */
    .hero {
      background: var(--navy);
      color: var(--white);
      padding: 5rem 2rem 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(59,158,221,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(59,158,221,0.15);
      border: 1px solid rgba(59,158,221,0.4);
      color: var(--sky);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s ease both;
    }
    .hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.4rem, 6vw, 4rem);
      line-height: 1.15;
      max-width: 700px;
      margin: 0 auto 1.2rem;
      animation: fadeUp 0.7s 0.1s ease both;
      transition: opacity 0.6s ease;
    }
    .hero h1.fade-out { opacity: 0; }
    .hero h1 em { font-style: italic; color: var(--sky); }
    .hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.92);
      max-width: 520px;
      margin: 0 auto 2.2rem;
      line-height: 1.7;
      font-weight: 300;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn-primary {
      background: var(--sky);
      color: var(--white);
      font-weight: 600;
      padding: 0.85rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      font-size: 1rem;
    }
    .btn-primary:hover { background: #2e8fcc; transform: translateY(-2px); }
    .btn-secondary {
      background: transparent;
      color: var(--white);
      font-weight: 500;
      padding: 0.85rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.3);
      transition: border-color 0.2s, transform 0.15s;
      font-size: 1rem;
    }
    .btn-secondary:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

    /* ── TRUST STRIP ── */
    .trust {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 1.4rem 2rem;
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--gray);
    }
    .trust-item .icon { font-size: 1.1rem; }

    /* ── SERVICES ── */
    .section { padding: 4.5rem 2rem; max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }
    .section-sub {
      color: var(--gray);
      max-width: 540px;
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 2.8rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.4rem;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.8rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .service-card:hover { box-shadow: 0 8px 32px rgba(13,31,60,0.1); transform: translateY(-3px); }
    .service-icon {
      width: 44px; height: 44px;
      background: rgba(59,158,221,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    .service-card h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
    }
    .service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; font-weight: 300; }

    /* ── WHY US ── */
    .why-section {
      background: var(--navy);
      color: var(--white);
      padding: 4.5rem 2rem;
    }
    .why-inner { max-width: 1100px; margin: 0 auto; }
    .why-section .section-label { color: var(--sky); }
    .why-section .section-title { color: var(--white); }
    .why-section .section-sub { color: rgba(255,255,255,0.88); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.6rem;
      margin-top: 1rem;
    }
    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 1.6rem;
    }
    .why-number {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      color: var(--sky);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .why-card h3 { font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem; }
    .why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.88); line-height: 1.6; font-weight: 300; }

    /* ── CONTACT ── */
    .contact-section {
      background: var(--cream);
      padding: 4.5rem 2rem;
    }
    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 4rem;
      align-items: start;
    }
    @media (max-width: 700px) { .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
    .contact-info h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .contact-info p { color: var(--gray); line-height: 1.7; font-weight: 300; margin-bottom: 2rem; }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1.1rem;
    }
    .contact-detail .cd-icon {
      width: 36px; height: 36px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .contact-detail .cd-text strong { display: block; font-size: 0.8rem; color: var(--gray); font-weight: 500; letter-spacing: 0.04em; }
    .contact-detail .cd-text span { font-size: 0.95rem; font-weight: 500; }

    /* form */
    .contact-form {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2.2rem;
      box-shadow: 0 4px 24px rgba(13,31,60,0.07);
    }
    .contact-form h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.4rem;
      margin-bottom: 1.6rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
    .field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
    .field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy); }
    .field input, .field select, .field textarea {
      border: 1.5px solid var(--border);
      border-radius: 6px;
      padding: 0.65rem 0.85rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      color: var(--navy);
      background: var(--cream);
      outline: none;
      transition: border-color 0.2s;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: var(--sky);
      background: var(--white);
    }
    .field textarea { resize: vertical; min-height: 110px; }
    .submit-btn {
      width: 100%;
      background: var(--blue);
      color: var(--white);
      border: none;
      padding: 0.9rem;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 0.4rem;
    }
    .submit-btn:hover { background: var(--sky); transform: translateY(-1px); }
    .form-note { font-size: 0.78rem; color: var(--gray); text-align: center; margin-top: 0.8rem; }
    .field-hint { font-size: 0.76rem; color: var(--gray); margin-top: 0.2rem; display: block; }
    .success-banner {
      display: none;
      background: #e8f7ee;
      border: 1px solid #6dcc98;
      border-radius: 8px;
      padding: 1rem 1.2rem;
      text-align: center;
      color: #1a6640;
      font-weight: 500;
      margin-bottom: 1.2rem;
    }
    .success-msg {
      display: none;
      background: #e8f7ee;
      border: 1px solid #6dcc98;
      border-radius: 8px;
      padding: 1.2rem;
      text-align: center;
      color: #1a6640;
      font-weight: 500;
      margin-top: 1rem;
    }

    /* ── FOOTER ── */
    footer {
      background: #091529;
      color: rgba(255,255,255,0.82);
      text-align: center;
      padding: 1.8rem 2rem;
      font-size: 0.82rem;
    }
    footer a { color: var(--sky); text-decoration: none; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

/* ── ABOUT PAGE STYLES ── */
/* ── PAGE HERO ── */
    .page-hero {
      background: var(--navy); color: var(--white);
      padding: 4rem 2rem 3rem; text-align: center; position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(59,158,221,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero .badge {
      display: inline-block; background: rgba(59,158,221,0.15);
      border: 1px solid rgba(59,158,221,0.4); color: var(--sky);
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; padding: 0.4rem 1rem;
      border-radius: 100px; margin-bottom: 1.2rem;
    }
    .page-hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      line-height: 1.2; margin-bottom: 0.8rem;
    }
    .page-hero h1 em { font-style: italic; color: var(--sky); }
    .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

    /* ── CONTENT ── */
    .content-wrap { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }

    /* ── BIO SECTION ── */
    .bio-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 3rem;
      align-items: start;
      margin-bottom: 4rem;
    }
    @media (max-width: 700px) { .bio-grid { grid-template-columns: 1fr; gap: 2rem; } }

    .bio-photo {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 1;
      border: 1px solid var(--border);
    }

    .bio-text .section-label {
      font-size: 1.6rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--sky); margin-bottom: 0.5rem;
    }
    .bio-text h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      line-height: 1.2; margin-bottom: 1.2rem;
    }
    .bio-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
    .bio-text p strong { color: var(--navy); font-weight: 600; }

    /* ── MISSION ── */
    .mission-section {
      background: var(--navy); color: var(--white);
      border-radius: 14px; padding: 3rem;
      margin-bottom: 4rem; position: relative; overflow: hidden;
    }
    .mission-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(59,158,221,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .mission-section .section-label { font-size: 1.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.5rem; }
    .mission-section h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
    .mission-section p { color: rgba(255,255,255,0.88); line-height: 1.8; font-weight: 300; max-width: 700px; }

    /* ── VALUES GRID ── */
    .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; margin-bottom: 4rem; }
    .value-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.6rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .value-card:hover { box-shadow: 0 8px 32px rgba(13,31,60,0.1); transform: translateY(-3px); }
    .value-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
    .value-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
    .value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; font-weight: 300; }

    /* ── SERVICE AREA ── */
    .area-section { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 2.5rem; margin-bottom: 4rem; }
    .area-section .section-label { font-size: 1.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.5rem; }
    .area-section h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
    .area-section p { color: var(--gray); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
    .area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
    .area-tag {
      background: rgba(59,158,221,0.1); border: 1px solid rgba(59,158,221,0.3);
      color: var(--blue); font-size: 0.82rem; font-weight: 500;
      padding: 0.35rem 0.85rem; border-radius: 100px;
    }

    /* ── CTA ── */
    .cta-banner {
      background: var(--accent); border-radius: 12px;
      padding: 2.5rem; text-align: center;
    }
    .cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 0.6rem; }
    .cta-banner p { color: var(--navy); opacity: 0.8; margin-bottom: 1.5rem; font-weight: 300; }
    .cta-banner a {
      background: var(--navy); color: var(--white);
      font-weight: 600; padding: 0.85rem 2rem;
      border-radius: 6px; text-decoration: none;
      transition: background 0.2s;
    }
    .cta-banner a:hover { background: var(--blue); }

    /* ── FOOTER ── */
    footer { background: #091529; color: rgba(255,255,255,0.82); text-align: center; padding: 1.8rem 2rem; font-size: 0.82rem; }
    footer a { color: var(--sky); text-decoration: none; }

/* ── SOFTWARE PAGE STYLES ── */
/* ── PAGE HERO ── */
    .page-hero {
      background: var(--navy); color: var(--white);
      padding: 4rem 2rem 3rem; text-align: center; position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(59,158,221,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero .badge {
      display: inline-block; background: rgba(59,158,221,0.15);
      border: 1px solid rgba(59,158,221,0.4); color: var(--sky);
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; padding: 0.4rem 1rem;
      border-radius: 100px; margin-bottom: 1.2rem;
    }
    .page-hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      line-height: 1.2; margin-bottom: 0.8rem;
    }
    .page-hero h1 em { font-style: italic; color: var(--sky); }
    .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

    /* ── CONTENT ── */
    .content-wrap { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }

    .section-label { font-size: 1.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.5rem; }
    .section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; margin-bottom: 0.8rem; }
    .section-sub { color: var(--gray); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; max-width: 640px; }

    /* ── SOFTWARE CARDS ── */
    .software-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-bottom: 4rem; }
    .software-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.6rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .software-card:hover { box-shadow: 0 8px 32px rgba(13,31,60,0.1); transform: translateY(-3px); }
    .sw-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
    .sw-icon { font-size: 1.6rem; flex-shrink: 0; }
    .sw-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; }
    .sw-badge {
      display: inline-block; font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.2rem 0.55rem; border-radius: 100px; margin-bottom: 0.6rem;
    }
    .sw-badge.free { background: var(--green-bg); color: var(--green); }
    .sw-badge.paid { background: #eef2ff; color: var(--blue); }
    .software-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; font-weight: 300; }
    .sw-link { display: inline-block; margin-top: 0.75rem; font-size: 0.82rem; font-weight: 600; color: var(--sky); text-decoration: none; }
    .sw-link:hover { text-decoration: underline; }

    /* ── WARNING SECTION ── */
    .warning-section {
      background: var(--red-bg); border: 1px solid #f5c6c2;
      border-radius: 14px; padding: 2.5rem; margin-bottom: 4rem;
    }
    .warning-section .section-label { color: var(--red); }
    .warning-section h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.8rem; color: var(--red); }
    .warning-section p { color: #7a2020; line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
    .warning-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
    .warning-list li {
      background: var(--white); border: 1px solid #f5c6c2;
      border-radius: 8px; padding: 1rem 1.2rem;
      display: flex; gap: 0.75rem; align-items: flex-start;
    }
    .warning-list li .wi { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
    .warning-list li strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.2rem; }
    .warning-list li span { font-size: 0.85rem; color: var(--gray); font-weight: 300; line-height: 1.6; }

    /* ── TOOLS WE USE ── */
    .tools-section {
      background: var(--navy); color: var(--white);
      border-radius: 14px; padding: 2.5rem; margin-bottom: 4rem;
    }
    .tools-section .section-label { color: var(--sky); }
    .tools-section h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.8rem; }
    .tools-section p { color: rgba(255,255,255,0.88); line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
    .tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
    .tool-chip {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px; padding: 1rem;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .tool-chip .ti { font-size: 1.2rem; }
    .tool-chip span { font-size: 0.88rem; font-weight: 500; }

    /* ── CTA ── */
    .cta-banner { background: var(--accent); border-radius: 12px; padding: 2.5rem; text-align: center; }
    .cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 0.6rem; }
    .cta-banner p { color: var(--navy); opacity: 0.8; margin-bottom: 1.5rem; font-weight: 300; }
    .cta-banner a { background: var(--navy); color: var(--white); font-weight: 600; padding: 0.85rem 2rem; border-radius: 6px; text-decoration: none; transition: background 0.2s; }
    .cta-banner a:hover { background: var(--blue); }

    /* ── FOOTER ── */
    footer { background: #091529; color: rgba(255,255,255,0.82); text-align: center; padding: 1.8rem 2rem; font-size: 0.82rem; }
    footer a { color: var(--sky); text-decoration: none; }
