/* ============================================================
   HRL INFOTECHS — refund-policy.css
   Page-specific styles for refund-policy
   Extracted from original inline <style> block + shared base from styles.css
   ============================================================ */

/* ── Shared base reset (from styles.css) ── */
*{margin:0;padding:0;box-sizing:border-box}
:root{--navy:#02006e;--mint:#5aeb9d;--dark:#121212;--white:#ffffff}
body{font-family:'Poppins',sans-serif;background:var(--dark);color:var(--white);overflow-x:hidden;min-height:100vh}

/* ── Page-specific styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:  #02006e;
      --mint:  #5aeb9d;
      --dark:  #0a0a1a;
      --white: #ffffff;
      --muted: rgba(255,255,255,0.52);
      --font:  'Poppins', sans-serif;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      background: var(--dark);
      color: var(--white);
      font-family: var(--font);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      width: 100%;
    }

    body::before {
      content: '';
      position: fixed; inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 15% 10%, rgba(2,0,110,0.5) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 85% 75%, rgba(90,235,157,0.05) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 50% 110%, rgba(2,0,110,0.3) 0%, transparent 60%);
      pointer-events: none; z-index: 0;
    }
    body::after {
      content: '';
      position: fixed; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none; z-index: 0;
    }

    /* ══════════ HERO ══════════ */
    .policy-hero {
      padding: 120px 40px 72px;
      max-width: 1260px;
      margin: 0 auto;
      position: relative; z-index: 1;
      width: 100%;
      box-sizing: border-box;
    }

    .policy-hero h1 {
      font-size: clamp(38px, 5vw, 68px);
      font-weight: 800; line-height: 1.06;
      letter-spacing: -0.025em; color: var(--white);
    }
    .policy-hero h1 .accent { color: var(--mint); }

    .policy-hero-sub {
      max-width: 620px;
      font-size: 16px; font-weight: 300;
      color: var(--muted); line-height: 1.82;
      margin-top: 20px;
    }
    .policy-hero-date {
      font-size: 12.5px; font-weight: 400;
      color: rgba(255,255,255,0.3);
      margin-top: 18px; letter-spacing: 0.04em;
    }

    /* ══════════ LAYOUT ══════════ */
    .policy-layout {
            padding: 0 40px 100px;
      max-width: 1260px;
      margin: 0 auto;
      position: relative; z-index: 1;
      align-items: start;
      width: 100%;
      box-sizing: border-box;
    }

    /* ══════════ CONTENT ══════════ */
    .policy-content { min-width: 0; }

    .policy-section {
      margin-bottom: 64px;
      scroll-margin-top: 96px;
    }

    .section-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
    .section-num {
      width: 28px; height: 28px; border-radius: 8px;
      background: rgba(2,0,110,0.6);
      border: 1px solid rgba(90,235,157,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; color: var(--mint); flex-shrink: 0;
    }

    .policy-section h2 {
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 700; color: var(--white);
      letter-spacing: -0.015em; line-height: 1.2;
    }
    .policy-section p {
      font-size: 15px; font-weight: 300;
      color: rgba(255,255,255,0.68); line-height: 1.85;
      margin-top: 14px;
    }
    .policy-section h3 {
      font-size: 15px; font-weight: 600;
      color: rgba(255,255,255,0.9);
      margin-top: 28px; margin-bottom: 10px;
    }
    .policy-section ul {
      margin-top: 12px; padding-left: 0;
      list-style: none; display: flex; flex-direction: column; gap: 10px;
    }
    .policy-section ul li {
      display: flex; align-items: flex-start; gap: 11px;
      font-size: 14.5px; font-weight: 300;
      color: rgba(255,255,255,0.65); line-height: 1.75;
    }
    .policy-section ul li::before {
      content: ''; flex-shrink: 0;
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--mint); margin-top: 9px;
    }

    /* Info / warning boxes */
    .info-box {
      background: rgba(2,0,110,0.25);
      border: 1px solid rgba(90,235,157,0.18);
      border-left: 3px solid var(--mint);
      border-radius: 12px; padding: 20px 22px;
      margin-top: 18px;
      font-size: 14px; font-weight: 300;
      color: rgba(255,255,255,0.68); line-height: 1.78;
    }
    .info-box strong { color: var(--white); font-weight: 600; }

    .warn-box {
      background: rgba(255,160,50,0.07);
      border: 1px solid rgba(255,160,50,0.22);
      border-left: 3px solid #ffb347;
      border-radius: 12px; padding: 20px 22px;
      margin-top: 18px;
      font-size: 14px; font-weight: 300;
      color: rgba(255,255,255,0.68); line-height: 1.78;
    }
    .warn-box strong { color: #ffcc88; font-weight: 600; }

    /* Timeline / scenario cards */
    .scenario-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 14px; margin-top: 22px;
    }
    .scenario-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px; padding: 22px 20px;
      transition: all 0.22s;
    }
    .scenario-card:hover { border-color: rgba(90,235,157,0.18); background: rgba(90,235,157,0.03); }
    .scenario-card-header {
      display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
    }
    .scenario-icon {
      width: 36px; height: 36px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-size: 17px;
    }
    .scenario-icon.green { background: rgba(90,235,157,0.1); border: 1px solid rgba(90,235,157,0.2); }
    .scenario-icon.red   { background: rgba(255,80,80,0.08); border: 1px solid rgba(255,80,80,0.18); }
    .scenario-icon.amber { background: rgba(255,160,50,0.08); border: 1px solid rgba(255,160,50,0.2); }
    .scenario-title { font-size: 14px; font-weight: 600; color: var(--white); }
    .scenario-body  { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.7; }

    /* Steps */
    .steps { display: flex; flex-direction: column; gap: 0; margin-top: 22px; }
    .step {
      display: flex; gap: 18px;
      padding-bottom: 28px; position: relative;
    }
    .step:not(:last-child)::before {
      content: '';
      position: absolute; left: 17px; top: 38px;
      width: 2px; bottom: 0;
      background: rgba(90,235,157,0.15);
    }
    .step-num {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(2,0,110,0.7);
      border: 1.5px solid rgba(90,235,157,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: var(--mint);
      flex-shrink: 0; z-index: 1;
    }
    .step-body { padding-top: 6px; }
    .step-title { font-size: 14.5px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
    .step-desc { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.7; }

    /* Section divider */
    .s-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(90,235,157,0.15), transparent);
      margin-bottom: 64px;
    }

    /* Contact card */
    .contact-card {
      background: rgba(12,12,32,0.85);
      border: 1px solid rgba(90,235,157,0.18);
      border-radius: 20px; padding: 40px 38px;
      margin-top: 20px; position: relative; overflow: hidden;
    }
    .contact-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--navy), var(--mint), var(--navy));
    }
    .contact-card h3 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .contact-card p { font-size: 14.5px; font-weight: 300; color: var(--muted); line-height: 1.75; margin-top: 0; }
    .contact-methods { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
    .contact-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 22px; border-radius: 50px;
      font-size: 13.5px; font-weight: 600;
      text-decoration: none; transition: all 0.2s;
    }
    .contact-btn-primary { background: var(--mint); color: var(--navy); }
    .contact-btn-primary:hover { background: #6fffa8; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(90,235,157,0.25); }
    .contact-btn-secondary { background: transparent; border: 1.5px solid rgba(255,255,255,0.2); color: var(--white); }
    .contact-btn-secondary:hover { border-color: rgba(90,235,157,0.4); color: var(--mint); }

    /* ══════════ RESPONSIVE ══════════ */
    @media (max-width: 900px) {
      .policy-layout { padding: 0 24px 80px; }
      .policy-hero { padding: 108px 24px 52px; }
    }
    @media (max-width: 600px) {
      .policy-hero { padding: 100px 16px 48px; }
      .policy-layout { padding: 0 16px 64px; }
      .contact-card { padding: 24px 18px; }
      .contact-methods { flex-direction: column; }
      .contact-btn { width: 100%; justify-content: center; }
    }
