
    :root {
      --red:        #ed1b1b;
      --red-light:  #43713A;
      --red-dark:   #a00400;
      --red-glow:   rgba(237, 27, 27, 0.5);
      --red-soft:   rgba(225, 6, 0, 0.12);
      --bg:         #000000;
      --bg-card:    rgba(0, 0, 0);
      --bg-glass:   rgba(0, 0, 0,0.8);
      --text:       #ffffff;
      --text-muted: #b0b0b0;
      --border:     rgba(255, 255, 255, 0.07);
      --border-red: rgba(225, 6, 0, 0.30);
    }


    @font-face{
    font-family: "Visby Regular";
    src: url("e3d4d88f7ba46cfbdfb4045368826129.eot");
    src: url("e3d4d88f7ba46cfbdfb4045368826129.eot?#iefix")format("embedded-opentype"),
        url("e3d4d88f7ba46cfbdfb4045368826129.woff")format("woff"),
        url("e3d4d88f7ba46cfbdfb4045368826129.woff2")format("woff2"),
        url("e3d4d88f7ba46cfbdfb4045368826129.ttf")format("truetype"),
        url("e3d4d88f7ba46cfbdfb4045368826129.svg#Visby Regular")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    img { max-width: 100%; height: auto; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    .container { width: 92%; max-width: 1280px; margin-inline: auto; }
    @media (max-width: 767px)  { .container { width: 94%; } }
    @media (min-width: 2560px) { .container { max-width: 1800px; } }

    h1, h2, h3, h4 {
      font-family: 'Visby Regular';
      line-height: 1.05;
      letter-spacing: -0.01em;
       font-weight: 600 !important;
     
    }

    .hero-heading    { font-size: 45px; font-weight: 500; line-height: 0.9; letter-spacing: 0px; margin-bottom: 22px; }
    .section-heading { font-size: 45px; font-weight: 500; }
    .sub-heading     { font-size: clamp(20px, 2.5vw, 32px); font-weight: 600; }
    .body-text       { font-weight: 300; color: #6e6e6e; }
    .red { color: #ed1b1b; }

    .section-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: 999px;
      /* background: rgba(255,255,255,0.06); */
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgb(214 198 198 / 58%);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 24px;
    }

    section { padding-top: 80px; padding-bottom: 80px; position: relative; }
    .section-center { text-align: center; }
    .section-center .section-heading { font-family: 'Poppins', sans-serif; font-size: 45px; font-weight: 500; margin-bottom: 14px; }
    .section-center .body-text { margin-bottom: -17px; max-width: 751px; margin-inline: auto; }

    .divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red) 40%, var(--red) 60%, transparent);
      opacity: 0.35;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.3px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .btn-primary { background: #ed1b1b; color: #fff; box-shadow: 0 0 24px var(--red-glow); }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(225,6,0,0.55); background:#ff2a26; }
    .btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(225,6,0,0.55); }
    .btn-outline:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: 0 6px 28px var(--red-glow); }

    .card { background: var(--bg-card); border: 1px solid var(--border-red); border-radius: 22px; padding: 36px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
    .card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(225,6,0,0.25); border-color: rgba(225,6,0,0.6); }

    header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(0,0,0,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
    .nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
    .logo { display: inline-flex; align-items: center; text-decoration: none; }
    .logo img { height: 44px; width: auto; display: block; }
    .nav-menu { display: flex; gap: 38px; list-style: none; }
    .nav-menu a { font-size: 14px; font-weight: 500; color: #c8c8c8; text-decoration: none; letter-spacing: 0.2px; transition: color 0.2s; }
    .nav-menu a:hover { color: #fff; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 160px;
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
      background-image: url('images/banner-image-3.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center top;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      /* background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.60) 50%, rgba(0,0,0,0.30) 100%); */
      z-index: 1;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      /* display: block; */
      width: 100%;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      max-width: 850px;
      width: 100%;
    }

    .hero-right { display: none; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      padding: 12px 28px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.60);
      margin-bottom: 24px;
    }
    .hero-badge::before { display: none; }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(1.4); }
    }

    .hero-highlight {
      display: inline-block;
      width: auto;
      max-width: 780px;
      background: #ED1B1B;
      color: #ffffff;
      font-size: 40px;
      font-weight: 500;
      line-height: 0.95;
      letter-spacing: 0px;
      padding: 20px 87px 18px 21px;
      border-radius: 0 70px 0 0;
      box-shadow: 0 15px 50px rgba(225,6,0,0.35);
      font-family: 'Poppins', sans-serif;
    }

    .hero-sub {
      font-size: 18px;
      color: #9f9f9f;
      max-width: 600px;
      margin-inline: 0;
      margin-top: 17px;
      margin-bottom: 0;
      /* line-height: 1.8; */
    }

    .hero-cta {
      display: flex;
      gap: 20px;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 13px;
    }
    .hero-cta .btn-primary { padding: 17px 60px; border-radius: 999px; }
    .hero-cta .btn-outline  { padding: 17px 60px; border-radius: 999px; }

    .hero-stats {
      display: flex;
      justify-content: flex-start;
      gap: 0;
      flex-wrap: wrap;
    }

    .stat-pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px 40px;
      border: 1px solid var(--border-red);
      background: rgba(10,10,10,0.75);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .stat-pill:first-child { border-radius: 22px 0 0 22px; }
    .stat-pill:last-child  { border-radius: 0 22px 22px 0; }
    .stat-pill + .stat-pill { border-left: none; }
    .stat-pill .stat-value { font-family: 'Times New Roman', 'Times', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--text); line-height: 1; }
    .stat-pill .stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 6px; letter-spacing: 0.5px; }

    /* PROBLEM */
    .problem { background: white;
     }
    .problem-heading { font-size: 45px; font-weight: 600; margin-inline: auto; margin-bottom: 24px; color: black; }
    .problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; }
    .problem-card { background: var(--bg-card); border: 1px solid var(--border-red); border-radius: 22px; padding: 40px 36px; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; text-align: center; }
    .problem-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: 0; transition: opacity 0.3s; }
    .problem-card:hover::before { opacity: 1; }
    .problem-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(225,6,0,0.25); }
    .problem-card .card-icon { width: 72px; height: 72px; border-radius: 18px; background: rgba(225,6,0,0.08); border: 1px solid rgba(225,6,0,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px auto; overflow: hidden; padding: 0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .problem-card:hover .card-icon { transform: translateY(-3px); box-shadow: 0 0 20px rgba(225,6,0,0.25); }
    .card-icon img { width: 40px; height: 40px; object-fit: contain; object-position: center; display: block; margin: 0 auto; transition: transform 0.3s ease; }
    .problem-card:hover .card-icon img { transform: scale(1.08); }
    .problem-card h3 { font-size: clamp(22px, 2.5vw, 31px); font-weight: 500; margin-bottom: 14px; color: var(--text); }
    .problem-card p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

    /* TIERS */
    .tiers { background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(225,6,0,0.06) 0%, transparent 65%); }
    .tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
    .tier-card { background: var(--bg-card); border: 1px solid var(--border-red); border-radius: 22px; padding: 44px 36px; text-align: center; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
    .tier-card.featured { border-color: rgba(225,6,0,0.70); box-shadow: 0 0 40px rgba(225,6,0,0.18); }
    /* .tier-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: 20px; right: -30px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 5px 40px; transform: rotate(45deg); } */
    .tier-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(225,6,0,0.25); border-color: rgba(225,6,0,0.7); }
    .tier-icon { width: 72px; height: 72px; border-radius: 18px; background: rgba(225,6,0,0.08); border: 1px solid rgba(225,6,0,0.25); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 24px; color: var(--red); transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .tier-card:hover .tier-icon { transform: translateY(-4px); box-shadow: 0 0 25px rgba(225,6,0,0.30); }
    .tier-card .tier-name { font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
    .tier-card .tier-amount { font-family: 'Times New Roman', 'Times', serif; font-size: 40px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.1; }
    .tier-card .tier-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
    .tier-features { list-style: none; text-align: center; margin-bottom: 32px; }
    .tier-features li { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 15px; color: #ccc; padding: 10px 0; border-bottom: 1px solid rgb(255 255 255 / 15%); }
    .tier-features li:last-child { border-bottom: none; }
    .tier-features li::before { color: var(--red); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
    .tier-cta { display: block; width: 100%; text-align: center; }

    /* PORTFOLIO */
    .portfolio { background: white; color: black;
     }
    .portfolio-header { max-width: 900px; margin: 0 auto 60px auto; text-align: center; }
    .portfolio-header .section-label { display: inline-flex; margin-bottom: 20px; }
    .portfolio-header h2 { text-align: center; margin: -7px auto 20px auto; max-width: 900px; line-height: 1.18;}
    .portfolio-header .body-text { text-align: center; margin-bottom: 0; }
    .portfolio-stat { display: flex; justify-content: center; align-items: flex-start; gap: 48px; flex-wrap: wrap; margin-top: 27px; }
    .p-stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .p-stat .p-val { font-family: 'Visby Regular'; font-size: 38px; font-weight: 700; color: #ed1b1b; line-height: 1; }
    .p-stat .p-lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
    .brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
    .brand-card { background: #cdc5c52b; border: 1px solid rgba(195, 191, 191, 0.3); border-radius: 20px; height: 130px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 600; color: var(--text); letter-spacing: -0.3px; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
    .brand-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(225,6,0,0.10), transparent 70%); opacity: 0; transition: opacity 0.3s; }
    .brand-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(225,6,0,0.25); border-color: rgba(225,6,0,0.65); }
    .brand-card:hover::after { opacity: 1; }
    .brand-card img { max-width: 40%; max-height: 70px; width: auto; height: auto; object-fit: contain; display: block; margin: auto; position: relative; z-index: 1; }

    /* CONTACT */
    .contact { background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(225,6,0,0.07) 0%, transparent 65%); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
    .contact-left h2 { font-size: 45px; font-weight: 500; margin-bottom: 14px; line-height: 1.05; }
    .contact-left p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
    .contact-info { display: flex; flex-direction: column; gap: 16px; }
    .contact-info-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: #ccc; }
    .contact-info-item .ci-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--red-soft); border: 1px solid var(--border-red); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
    .form-box { background: rgba(10,10,10,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-red); border-radius: 26px; padding: 52px 48px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
    input, textarea, select { width: 100%; padding: 16px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; color: var(--text); font-family: 'Poppins', sans-serif; font-size: 15px; transition: border-color 0.25s, box-shadow 0.25s; outline: none; -webkit-appearance: none; appearance: none; }
    input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
    input:focus, textarea:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,6,0,0.15); }
    select option { background: #111; color: #fff; }
    textarea { resize: vertical; min-height: 120px; }
    .form-submit { margin-top: 8px; width: 100%; justify-content: center; }

    /* FOOTER */
    footer { background: #000; border-top: 1px solid rgba(225,6,0,0.25); padding: 50px 0 40px; }
    .footer-grid { display: flex; justify-content: center; align-items: flex-start; gap: 80px; flex-wrap: wrap; border-bottom: 1px solid var(--border); }
    .footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 640px; }
    .footer-brand .logo { display: inline-block; margin-bottom: 32px; }
    .footer-brand p { font-size: 15px; color: var(--text-muted); line-height: 1.7; text-align: center; white-space: nowrap; margin-bottom: 24px; }
    .footer-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; text-align: center; }
    .footer-col a { display: block; font-size: 15px; color: var(--text-muted); text-decoration: none; margin-bottom: 16px; transition: color 0.2s; text-align: center; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { display: flex; flex-direction: column; justify-content: center; align-items: center; padding-top: 4px; font-size: 13px; color: rgba(255,255,255,0.3); gap: 12px; text-align: center; }
    .footer-bottom span:first-child { font-size: 15px; }
    .footer-bottom span:last-child { font-size: 15px; }

    /* RESPONSIVE */

    /* Tablet: 768px – 1023px */
    @media (min-width: 768px) and (max-width: 1023px) {
      section { padding-top: 70px; padding-bottom: 70px; }
      .hero { background-position: center top; }
      .hero-heading { font-size: 38px; }
      .hero-highlight { font-size: 34px; }
      .problem-grid, .tier-grid { grid-template-columns: repeat(2, 1fr); }
      .brand-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; gap: 50px; }
      .footer-grid { flex-direction: column; align-items: center; gap: 44px; }
    }

    /* Mobile: below 768px */
    @media (max-width: 767px) {
      html, body { width: 100%; }
      section { padding-top: 43px; padding-bottom: 43px; }
      .nav-menu, .nav-cta { display: none; }
      .hamburger { display: none; }
      .nav { justify-content: center; }

      /* Hero */
      .hero { background-image: url('images/MOBILE-BANNER.png'); background-repeat: no-repeat; background-size: cover; background-position: center top; min-height: max(100vh, 820px); padding: 80px 0 32px; display: flex; align-items: stretch; }
      .hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.15); z-index: 1; }
      .hero .container { display: flex; flex-direction: column; flex: 1; padding: 0 20px; }
      .hero-inner { flex: 1; display: flex; flex-direction: column; width: 100%; position: relative; z-index: 2; }
      .hero-left { flex: 1; width: 100%; max-width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; }
      .hero-badge { display: none; }
      .hero-heading { font-size: 34px; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px; text-align: center; }
      .hero-highlight { display: block; width: 100%; font-size: 24px; line-height: 1.2; text-align: center; padding: 16px 20px; margin: 0 0 20px; border-radius: 0 40px 0 0; letter-spacing: -0.5px; }
      .hero-sub { font-size: 12px; line-height: 1.7; margin: 0 auto; text-align: center; max-width: 280px; }
      .hero-cta { width: 100%; display: flex; flex-direction: column; gap: 12px; margin-top: auto; padding-top: 28px; }
      .hero-cta .btn { width: 100%; height: 54px; justify-content: center; margin: 0; }

      /* Grids */
      .problem-grid, .tier-grid, .brand-grid { grid-template-columns: 1fr; }

      /* Brand Cards */
      .brand-card { height: 120px; padding: 0 20px; }
      .brand-card img { max-width: 60%; max-height: 60px; }

      /* Portfolio */
      .portfolio-header { margin-bottom: 36px; }
      .portfolio-header .body-text { max-width: 300px; margin: 0 auto; line-height: 1.7; text-align: center; }
      .portfolio-stat { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
      .p-stat { border-radius: 16px; border: 1px solid rgba(225,6,0,0.20); background: #fff; padding: 12px 8px; }
      .p-stat .p-val { font-size: 24px; }

      /* Contact */
      .contact-grid { grid-template-columns: 1fr; }
      .contact-left h2 { font-size: 34px; text-align: center; }
      .contact-left p { text-align: center; }
      .contact-left .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }

      /* Sections */
      .section-heading { font-size: 34px; }
      .section-label { letter-spacing: 2px; padding: 10px 20px; }
      .problem-heading { font-size: 34px; }

      /* Form */
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .form-box { padding: 32px 24px; }
      .form-group { margin-bottom: 12px; }
      .form-group label { margin-bottom: 6px; }

      /* Footer */
      .footer-grid { flex-direction: column; align-items: center; gap: 36px; }
      .footer-brand { max-width: 100%; }
      .footer-brand p { white-space: normal; }

      /* Buttons */
      .btn { padding: 15px 28px; font-size: 14px; }
    }

    @media (max-width: 480px) {
      .hero { background-position: center top; }
      .hero-heading { font-size: 30px; letter-spacing: -1.5px; margin-top: 38px; }
      .hero-highlight { font-size: 24px; }
      .section-heading { font-size: 30px; }
      .problem-heading { font-size: 30px; }
      .contact-left h2 { font-size: 30px; }
    }

    @media (max-width: 375px) {
      .hero-heading { font-size: 26px; letter-spacing: -1px; }
      .hero-highlight { font-size: 20px; padding: 12px 14px; }
      .section-heading { font-size: 26px; }
      .problem-heading { font-size: 26px; }
      .contact-left h2 { font-size: 26px; }
      .hero-badge { font-size: 10px; letter-spacing: 1.5px; padding: 9px 16px; }
      .section-label { font-size: 10px; letter-spacing: 1.5px; padding: 9px 16px; }
    }

    /* Laptop: 1024px – 1439px */
    @media (min-width: 1024px) and (max-width: 1439px) {
      .hero { background-position: center top; }
      .hero-left { max-width: 650px; }
      .hero-heading { font-size: 42px; }
      .hero-highlight { font-size: 42px; }
      .problem-grid, .tier-grid { gap: 20px; }
      .brand-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
      .contact-grid { gap: 40px; }
    }

    /* Desktop: 1440px – 1919px */
    @media (min-width: 1440px) and (max-width: 1919px) {
      section { padding-top: 55px; padding-bottom: 55px; }
      .hero { background-position: center top; }
      .container { max-width: 1320px; }
      .hero-left { max-width: 700px; }
      .section-heading { font-size: 40px; }
      .problem-heading { font-size: 45px; margin-bottom: 8px}
    }

    /* Large Desktop: 1920px – 2559px */
    @media (min-width: 1920px) and (max-width: 2559px) {
      section { padding-top: 100px; padding-bottom: 100px; }
      .container { max-width: 1500px; }
      .hero-left { max-width: 760px; }
      .hero-heading { font-size: 56px; }
      .hero-highlight { font-size: 56px; }
      .section-heading { font-size: 60px; }
      .brand-card { height: 160px; }
      .brand-card img { max-height: 85px; }
    }

    /* Ultra-wide: 2560px+ */
    @media (min-width: 2560px) {
      body { font-size: 20px; }
      .container { max-width: 1800px; }
      .hero { padding-top: 180px; padding-bottom: 140px; }
      .hero-left { max-width: 850px; }
      .hero-heading { font-size: 72px; }
      .hero-highlight { font-size: 72px; }
      .hero-sub { font-size: 24px; max-width: 750px; }
      .section-heading { font-size: 82px; }
      .problem-heading { font-size: 72px; }
      .brand-card { height: 200px; }
      .brand-card img { max-height: 110px; }
      .problem-grid { gap: 36px; }
      .tier-grid { gap: 36px; }
      .brand-grid { gap: 28px; }
      .problem-card { padding: 56px 48px; }
      .tier-card { padding: 56px 48px; }
      .tier-card .tier-amount { font-size: 56px; }
      .tier-features li { font-size: 18px; }
      .tier-card .tier-desc { font-size: 18px; }
      .problem-card p { font-size: 20px; }
      .form-box { padding: 64px 60px; }
      .contact-left p { font-size: 20px; }
      .contact-grid { gap: 90px; }
    }
  