
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }



    :root {

      --blue: #1a56db;

      --blue-dark: #1040b0;

      --blue-light: #e8f0fe;

      --green: #0e9f6e;

      --red: #e02424;

      --dark: #0f172a;

      --text: #1e293b;

      --muted: #64748b;

      --border: #e2e8f0;

      --bg: #f8fafc;

      --white: #ffffff;

      --radius: 12px;

      --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);

      --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.13);

    }



    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      font-size: 16px;
      line-height: 1.6;
    }



    /* ── TOPBAR ── */

    .topbar {

      background: var(--dark);

      color: #fff;

      font-size: 13px;

      padding: 8px 16px;

      text-align: center;

      display: flex;

      align-items: center;

      justify-content: center;

      gap: 12px;

      flex-wrap: wrap;

    }

    .topbar a {
      color: #facc15;
      text-decoration: none;
      font-weight: 600;
    }

    .topbar span {
      opacity: 0.5;
    }



    /* ── NAV ── */

    nav {

      background: var(--white);

      border-bottom: 1px solid var(--border);

      position: sticky;

      top: 0;

      z-index: 100;

      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

    }

    .nav-inner {

      max-width: 1200px;

      margin: 0 auto;

      /*padding: 0 20px;*/

      display: flex;

      align-items: center;

      justify-content: space-between;

      height: 64px;

      gap: 16px;

    }

    .logo {

      display: flex;

      align-items: center;

      gap: 10px;

      text-decoration: none;

      flex-shrink: 0;

    }

    .logo-icon {

      width: 38px;

      height: 38px;

      background: linear-gradient(135deg, var(--blue), var(--blue-dark));

      border-radius: 10px;

      display: flex;

      align-items: center;

      justify-content: center;

      font-size: 20px;

    }

    .logo-text {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 17px;
      color: var(--dark);
      line-height: 1.2;
    }

    .logo-text span {
      color: var(--blue);
    }



    .nav-links {

      display: flex;

      align-items: center;

      gap: 4px;

      list-style: none;

    }

    .nav-links a {

      text-decoration: none;

      color: var(--text);

      font-size: 14px;

      font-weight: 500;

      padding: 8px 14px;

      border-radius: 8px;

      transition: background 0.2s, color 0.2s;

    }

    .nav-links a:hover {
      background: var(--blue-light);
      color: var(--blue);
    }



    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .nav-phone {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--dark);
      text-decoration: none;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
    }

    .btn-outline:hover {
      background: var(--blue);
      color: #fff;
    }

    .btn-lg {
      padding: 14px 28px;
      font-size: 16px;
      border-radius: 10px;
    }

    .btn-phone {
      background: var(--green);
      color: #fff;
    }

    .btn-phone:hover {
      background: #057a55;
    }



    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border: none;
      background: none;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.3s;
    }



    /* ── HERO ── */
.hero {
  position: relative;
  padding: 80px 20px 60px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  /* Ensure the hero has a dark base in case the image fails to load */
  background-color: #000; 
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: url('https://antivirusprotectionshield.com/img/antivirus-background.png');
  background-size: cover;
  background-position: center;
  
  /* The Magic: Blur and Darken */
  filter: blur(3px); 
  transform: scale(1.1); /* Prevents white edges caused by blur */
  opacity: 0.6;          /* Darkens the background for better contrast */
  
  z-index: 1;
}

/* Move content above the blurred background */
.hero > * {
  position: relative;
  z-index: 2;
}

    .hero-badge {

      display: inline-flex;

      align-items: center;

      gap: 6px;

      background: rgba(255, 255, 255, 0.1);

      border: 1px solid rgba(255, 255, 255, 0.2);

      padding: 6px 16px;

      border-radius: 100px;

      font-size: 13px;

      font-weight: 600;

      margin-bottom: 24px;

      backdrop-filter: blur(4px);

    }

    .hero h1 {

      font-family: 'Manrope', sans-serif;

      font-size: clamp(28px, 5vw, 52px);

      font-weight: 800;

      line-height: 1.15;

      margin-bottom: 20px;

      max-width: 760px;

      margin-left: auto;

      margin-right: auto;

    }

    .hero h1 em {
      font-style: normal;
      color: #facc15;
    }

    .hero p {
      font-size: clamp(15px, 2vw, 18px);
      opacity: 0.85;
      max-width: 580px;
      margin: 0 auto 36px;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-trust {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      opacity: 0.8;
    }

    .trust-item::before {
      content: '✓';
      color: #4ade80;
      font-weight: 700;
    }



    /* ── STATUS BAR ── */

    .status-bar {

      background: var(--dark);

      color: #fff;

      display: flex;

      justify-content: center;

      gap: 24px;

      padding: 14px 20px;

      flex-wrap: wrap;

    }

    .status-item {
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4ade80;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.4
      }
    }



    /* ── BRAND STRIP ── */

    .brand-strip {

      background: var(--bg);

      border-bottom: 1px solid var(--border);

      padding: 16px 20px;

      text-align: center;

    }

    .brand-strip p {
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .brand-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .brand-logos span {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 15px;
      color: var(--muted);
      letter-spacing: -0.5px;
    }



    /* ── SECTIONS ── */

    .section {
      padding: 72px 20px;
    }

    .section-alt {
      background: var(--bg);
      
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--blue);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-title em {
      font-style: normal;
      color: var(--blue);
    }

    .section-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 560px;
    }

    .section-header {
      margin-bottom: 48px;
    }

    .section-header.center {
      text-align: center;
    }

    .section-header.center .section-sub {
      margin: 0 auto;
    }



    /* ── PRODUCTS ── */

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .product-card {

      background: var(--white);

      border: 1px solid var(--border);

      border-radius: 16px;

      padding: 32px;

      position: relative;

      transition: box-shadow 0.25s, transform 0.25s;

      display: flex;

      flex-direction: column;

    }

    .product-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .product-card.featured {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
    }

    .product-badge {

      position: absolute;

      top: -12px;

      left: 50%;

      transform: translateX(-50%);

      background: var(--blue);

      color: #fff;

      font-size: 12px;

      font-weight: 700;

      padding: 4px 16px;

      border-radius: 100px;

      white-space: nowrap;

    }

    .product-icon {
      font-size: 36px;
      margin-bottom: 16px;
    }

    .product-name {
      font-family: 'Manrope', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .product-tagline {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 8px;
    }

    .price-new {
      font-family: 'Manrope', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: var(--blue);
    }

    .price-period {
      font-size: 14px;
      color: var(--muted);
    }

    .price-old {
      font-size: 16px;
      color: var(--muted);
      text-decoration: line-through;
    }

    .product-features {
      list-style: none;
      margin: 20px 0 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    .product-features li {
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .product-features li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
    }

    .product-cta {
      width: 100%;
      text-align: center;
      padding: 14px;
      border-radius: 10px;
      font-size: 15px;
    }



    /* ── GUARANTEES ── */

    .guarantees {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
    }

    .guarantee-card {

      background: var(--bg);

      border: 1px solid var(--border);

      border-radius: 12px;

      padding: 24px;

      display: flex;

      gap: 14px;

      align-items: flex-start;

    }

    .guarantee-icon {
      font-size: 28px;
      flex-shrink: 0;
    }

    .guarantee-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .guarantee-desc {
      font-size: 13px;
      color: var(--muted);
    }



    /* ── STATS ── */

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

    .stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 24px;
      text-align: center;
    }

    .stat-number {
      font-family: 'Manrope', sans-serif;
      font-size: 36px;
      font-weight: 800;
      color: var(--blue);
      margin-bottom: 6px;
    }

    .stat-desc {
      font-size: 14px;
      color: var(--muted);
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 32px;
    }

    .trust-badge {

      display: flex;

      align-items: center;

      gap: 8px;

      background: var(--white);

      border: 1px solid var(--border);

      border-radius: 100px;

      padding: 8px 18px;

      font-size: 13px;

      font-weight: 600;

      color: var(--text);

    }



    /* ── STEPS ── */

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }

    .step-card {
      text-align: center;
      padding: 32px 24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      position: relative;
    }

    .step-number {

      width: 48px;
      height: 48px;

      background: linear-gradient(135deg, var(--blue), var(--blue-dark));

      color: #fff;

      font-family: 'Manrope', sans-serif;

      font-weight: 800;

      font-size: 20px;

      border-radius: 50%;

      display: flex;

      align-items: center;

      justify-content: center;

      margin: 0 auto 16px;

    }

    .step-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 14px;
      color: var(--muted);
    }



    /* ── BRANDS GRID ── */

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
    }

    .brand-card {

      background: var(--white);

      border: 1px solid var(--border);

      border-radius: 12px;

      padding: 24px;

      text-align: center;

      transition: box-shadow 0.2s, border-color 0.2s;

      cursor: pointer;

    }

    .brand-card:hover {
      box-shadow: var(--shadow);
      border-color: var(--blue);
    }

    .brand-card-icon {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .brand-card-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .brand-card-tag {
      font-size: 12px;
      color: var(--muted);
    }



    /* ── PHONE CTA ── */

    .phone-cta {

      background: linear-gradient(135deg, #0f172a, #1e3a5f);

      color: #fff;

      border-radius: 20px;

      padding: 56px 40px;

      text-align: center;

    }

    .phone-cta h2 {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .phone-cta h2 em {
      font-style: normal;
      color: #facc15;
    }

    .big-phone {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(30px, 5vw, 52px);
      font-weight: 800;
      color: #facc15;
      text-decoration: none;
      display: block;
      margin: 20px 0;
    }

    .phone-meta {
      font-size: 14px;
      opacity: 0.7;
      margin-bottom: 28px;
    }

    .phone-bullets {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }

    .phone-bullet {
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .phone-bullet::before {
      content: '●';
      color: #4ade80;
    }



    /* ── REVIEWS ── */

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }

    .review-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
    }

    .stars {
      color: #f59e0b;
      font-size: 15px;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .review-text {
      font-size: 14px;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .reviewer-img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--bg);
    }

    .reviewer-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--dark);
    }

    .reviewer-loc {
      font-size: 12px;
      color: var(--muted);
    }

    .verified {
      font-size: 11px;
      color: var(--green);
      font-weight: 600;
      margin-top: 2px;
    }

    .awards-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 48px;
    }

    .award-card {
      text-align: center;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 24px;
      min-width: 160px;
    }

    .award-icon {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .award-title {
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
    }

    .award-sub {
      font-size: 11px;
      color: var(--muted);
    }



    /* ── FAQ ── */

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }

    .faq-q {

      width: 100%;

      background: var(--white);

      border: none;

      text-align: left;

      padding: 20px 24px;

      font-family: 'Manrope', sans-serif;

      font-weight: 700;

      font-size: 15px;

      color: var(--dark);

      cursor: pointer;

      display: flex;

      justify-content: space-between;

      align-items: center;

      gap: 16px;

      transition: background 0.2s;

    }

    .faq-q:hover {
      background: var(--bg);
    }

    .faq-q .chevron {
      font-size: 18px;
      transition: transform 0.25s;
      flex-shrink: 0;
    }

    .faq-q.open .chevron {
      transform: rotate(180deg);
    }

    .faq-a {
      display: none;
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }

    .faq-a.open {
      display: block;
    }



    /* ── CALLBACK FORM ── */

    .callback-section {

      background: linear-gradient(135deg, #f0f4ff, #e8f0fe);

      border-radius: 20px;

      padding: 56px 40px;

    }

    .callback-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .callback-bullets {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 20px 0 28px;
    }

    .callback-bullet {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
    }

    .callback-bullet::before {
      content: '✓';
      color: var(--blue);
      font-weight: 700;
      flex-shrink: 0;
    }

    .available-badge {

      display: inline-flex;

      align-items: center;

      gap: 8px;

      background: #d1fae5;

      color: #065f46;

      padding: 8px 16px;

      border-radius: 100px;

      font-size: 13px;

      font-weight: 600;

    }



    .form-card {
      background: var(--white);
      border-radius: 16px;
      padding: 32px;
      box-shadow: var(--shadow);
    }

    .form-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 20px;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .form-sub {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
    }

    .form-group input {

      width: 100%;

      padding: 12px 16px;

      border: 1px solid var(--border);

      border-radius: 8px;

      font-size: 14px;

      font-family: 'DM Sans', sans-serif;

      color: var(--text);

      transition: border-color 0.2s, box-shadow 0.2s;

      background: var(--white);

    }

    .form-group input:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    }

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .form-check input {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      flex-shrink: 0;
      accent-color: var(--blue);
    }

    .form-check a {
      color: var(--blue);
    }

    .form-btn {
      width: 100%;
      padding: 14px;
      background: var(--blue);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
      font-family: 'Manrope', sans-serif;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .form-btn:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 24px;
    }

    .form-success .check {
      font-size: 48px;
      margin-bottom: 12px;
    }

    .form-success h3 {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 20px;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .form-success p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .success-bullets {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .success-bullet {
      font-size: 12px;
      background: var(--bg);
      padding: 4px 12px;
      border-radius: 100px;
      color: var(--muted);
    }



    /* ── FOOTER ── */

    footer {

      background: var(--dark);

      color: rgba(255, 255, 255, 0.7);

      padding: 56px 20px 32px;

    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand .logo-text {
      color: #fff;
      font-size: 18px;
    }

    .footer-brand p {
      font-size: 13px;
      margin: 16px 0;
      line-height: 1.7;
    }

    /*.footer-phone {*/
    /*  font-family: 'Manrope', sans-serif;*/
    /*  font-weight: 700;*/
    /*  font-size: 18px;*/
    /*  color: #1a56db;*/
    /*  text-decoration: none;*/
    /*  display: block;*/
    /*  margin-bottom: 6px;*/
    /*}*/

    .footer-addr {
      font-size: 12px;
      line-height: 1.7;
    }

    .footer-col h4 {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fff;
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
      font-size: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-bottom p {
      opacity: 0.5;
    }



    /* ── BRAND DETAIL SECTIONS ── */

    .brand-detail {
      padding: 80px 20px;
      border-bottom: 1px solid var(--border);
    }

    .brand-detail:nth-child(even) {
      background: var(--bg);
    }

    .brand-detail-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .brand-detail-inner.reverse {
      direction: rtl;
    }

    .brand-detail-inner.reverse>* {
      direction: ltr;
    }

    .brand-detail-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue-light);
      color: var(--blue);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .brand-detail-icon {
      font-size: 48px;
      margin-bottom: 12px;
    }

    .brand-detail h2 {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .brand-detail h2 em {
      font-style: normal;
      color: var(--blue);
    }

    .brand-detail-desc {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .brand-why-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--dark);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .brand-why-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .brand-why-list li {
      font-size: 14px;
      color: var(--text);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }

    .brand-why-list li .why-icon {
      flex-shrink: 0;
      font-size: 16px;
      margin-top: 1px;
    }

    .brand-threats {
      background: #fff8f0;
      border: 1px solid #fed7aa;
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 28px;
    }

    .brand-threats-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #92400e;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .brand-threats ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .brand-threats ul li {
      font-size: 13px;
      color: #78350f;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .brand-threats ul li::before {
      content: '⚠️';
      font-size: 12px;
    }

    .brand-card-visual {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      box-shadow: var(--shadow-lg);
    }

    .brand-card-visual .product-badge {
      position: static;
      transform: none;
      display: inline-block;
      margin-bottom: 16px;
    }

    .brand-price-big {
      font-family: 'Manrope', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
    }

    .brand-price-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 6px;
    }

    .brand-price-period {
      font-size: 16px;
      color: var(--muted);
    }

    .brand-price-old {
      font-size: 18px;
      color: var(--muted);
      text-decoration: line-through;
    }

    .brand-save {
      display: inline-block;
      background: #dcfce7;
      color: #166534;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .brand-feat-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 24px;
    }

    .brand-feat-list li {
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
    }

    .brand-feat-list li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
    }

    .brand-cta-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 15px;
      background: var(--blue);
      color: #fff;
      border-radius: 10px;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      margin-bottom: 10px;
    }

    .brand-cta-btn:hover {
      background: var(--blue-dark);
      transform: translateY(-2px);
    }

    .brand-cta-secondary {
      display: block;
      width: 100%;
      text-align: center;
      padding: 13px;
      border: 2px solid var(--blue);
      color: var(--blue);
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .brand-cta-secondary:hover {
      background: var(--blue);
      color: #fff;
    }

    .brand-divider {
      text-align: center;
      color: var(--muted);
      font-size: 12px;
      margin: 8px 0;
    }



    @media (max-width: 860px) {

      .brand-detail-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .brand-detail-inner.reverse {
        direction: ltr;
      }

      .brand-detail {
        padding: 56px 16px;
      }

    }



    /* ── STICKY PHONE BAR (mobile) ── */

    .sticky-call {
      display: none;
    }



    /* ── RESPONSIVE ── */

    @media (max-width: 900px) {

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .callback-grid {
        grid-template-columns: 1fr;
      }

      .callback-section {
        padding: 40px 24px;
      }

    }



    @media (max-width: 768px) {

      .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        padding: 12px 16px;
      }

      .hamburger {
        display: flex;
      }

      .nav-phone {
        display: none;
      }

      .btn.btn-primary.nav-buy {
        display: none;
      }

      .hero {
        padding: 56px 16px 48px;
      }

      .guarantees {
        grid-template-columns: 1fr;
      }

      .phone-cta {
        padding: 40px 24px;
        border-radius: 12px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .sticky-call {

        display: block;

        position: fixed;

        bottom: 0;

        left: 0;

        right: 0;

        z-index: 200;

        background: var(--green);

        color: #fff;

        text-align: center;

        padding: 14px 20px;

        font-family: 'Manrope', sans-serif;

        font-weight: 700;

        font-size: 16px;

        text-decoration: none;

        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);

      }

      body {
        padding-bottom: 56px;
      }

    }



    @media (max-width: 480px) {

      .section {
        padding: 48px 16px;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .steps-grid {
        grid-template-columns: 1fr 1fr;
      }

      .brands-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .form-card {
        padding: 24px 16px;
      }

    }
  
    /* 1. Container Positioning */
    .fixed-call-wrapper {
        position: fixed;
        bottom: 30px;
        /* right: 30px; */
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 2. The Main Button */
    .floating-call-btn {
        background:#0d6efd; /* Matches your Secondary Orange */
        color: #fff;
        text-decoration: none;
        padding: 15px 25px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1.1rem;
        box-shadow: 0 10px 25px rgba(232, 93, 4, 0.4);
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
    }

    .floating-call-btn i {
        font-size: 1.3rem;
        animation: phone-shake 2s infinite;
    }

    .floating-call-btn:hover {
        transform: scale(1.05) translateY(-5px);
        background: #fff;
        color: #E85D04;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    /* 3. The Pulse Rings */
    .pulse-ring, .pulse-ring-delayed {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50px;
        background:#0d6efd;
        opacity: 0.6;
        z-index: 5;
        animation: pulse-expand 3s ease-out infinite;
    }

    .pulse-ring-delayed {
        animation-delay: 1.5s;
    }

    /* 4. Animations */
    @keyframes pulse-expand {
        0% { transform: scale(1); opacity: 0.6; }
        100% { transform: scale(1.5, 2); opacity: 0; }
    }

    @keyframes phone-shake {
        0%, 90%, 100% { transform: rotate(0); }
        92% { transform: rotate(15deg); }
        94% { transform: rotate(-15deg); }
        96% { transform: rotate(10deg); }
        98% { transform: rotate(-10deg); }
    }
    
    

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --blue: #1a56db;
        --blue-dark: #1040b0;
        --blue-light: #e8f0fe;
        --green: #0e9f6e;
        --dark: #0f172a;
        --text: #1e293b;
        --muted: #64748b;
        --border: #e2e8f0;
        --bg: #f8fafc;
        --white: #ffffff;
        --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.13);
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "DM Sans", sans-serif;
        color: var(--text);
        background: var(--white);
        font-size: 16px;
        line-height: 1.6;
      }

      /* TOPBAR */
      .topbar {
        background: var(--dark);
        color: #fff;
        font-size: 13px;
        padding: 8px 16px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
      }
      .topbar a {
        color: #facc15;
        text-decoration: none;
        font-weight: 600;
      }
      .topbar span {
        opacity: 0.5;
      }

      /* NAV */
      nav {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      }
      .nav-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        gap: 16px;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
      }
      .logo-icon {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
      }
      .logo-text {
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        font-size: 17px;
        color: var(--dark);
        line-height: 1.2;
      }
      .logo-text span {
        color: var(--blue);
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
        list-style: none;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--text);
        font-size: 14px;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 8px;
        transition:
          background 0.2s,
          color 0.2s;
      }
      .nav-links a:hover,
      .nav-links a.active {
        background: var(--blue-light);
        color: var(--blue);
      }
      .nav-cta {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
      }
      .nav-phone {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 15px;
        color: var(--dark);
        text-decoration: none;
        white-space: nowrap;
      }
      .btn-nav {
        display: inline-flex;
        align-items: center;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        background: var(--blue);
        color: #fff;
        transition: all 0.2s;
      }
      .btn-nav:hover {
        background: var(--blue-dark);
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        border: none;
        background: none;
      }
      .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
      }

      /* PAGE HERO */
      .page-hero {
        background: linear-gradient(
          135deg,
          #0f172a 0%,
          #1e3a5f 60%,
          #1a56db 100%
        );
        color: #fff;
        padding: 72px 20px 64px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
      }
      .page-hero-label {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 5px 16px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
      }
      .page-hero h1 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(30px, 5vw, 52px);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 16px;
      }
      .page-hero h1 em {
        font-style: normal;
        color: #facc15;
      }
      .page-hero p {
        font-size: clamp(16px, 2vw, 19px);
        opacity: 0.85;
        max-width: 620px;
        margin: 0 auto;
        line-height: 1.75;
      }

      /* BREADCRUMB */
      .breadcrumb {
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 12px 20px;
        font-size: 13px;
        color: var(--muted);
      }
      .breadcrumb-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .breadcrumb a {
        color: var(--blue);
        text-decoration: none;
      }
      .breadcrumb a:hover {
        text-decoration: underline;
      }

      /* SECTIONS */
      .section {
        padding: 72px 20px;
      }
      .section-alt {
        background: var(--bg);
      }
      .container {
        max-width: 1100px;
        margin: 0 auto;
      }
      .section-label {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--blue);
        margin-bottom: 10px;
      }
      .section-title {
        font-family: "Manrope", sans-serif;
        font-size: clamp(24px, 3.5vw, 38px);
        font-weight: 800;
        color: var(--dark);
        line-height: 1.2;
        margin-bottom: 16px;
      }
      .section-title em {
        font-style: normal;
        color: var(--blue);
      }
      .section-sub {
        font-size: 17px;
        color: var(--muted);
        line-height: 1.75;
      }

      /* STORY GRID */
      .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }
      .story-img {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        position: relative;
      }
      .story-img img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: center 20%;
        display: block;
      }
      .story-img-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        padding: 14px 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
      }
      .story-img-badge .badge-number {
        font-family: "Manrope", sans-serif;
        font-size: 28px;
        font-weight: 800;
        color: var(--blue);
        line-height: 1;
      }
      .story-img-badge .badge-text {
        font-size: 12px;
        color: var(--muted);
        font-weight: 600;
      }
      .story-body p {
        font-size: 16px;
        color: var(--text);
        line-height: 1.8;
        margin-bottom: 18px;
      }
      .story-body p:last-child {
        margin-bottom: 0;
      }
      .story-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
      }
      .story-highlight {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--blue-light);
        color: var(--blue);
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
      }

      /* STATS ROW */
      .stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .stat-box {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px 20px;
        text-align: center;
      }
      .stat-box .num {
        font-family: "Manrope", sans-serif;
        font-size: 38px;
        font-weight: 800;
        color: var(--blue);
        margin-bottom: 6px;
        line-height: 1;
      }
      .stat-box .lbl {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.5;
      }

      /* MISSION / VALUES */
      .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .value-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px 28px;
      }
      .value-icon {
        font-size: 36px;
        margin-bottom: 16px;
      }
      .value-title {
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        font-size: 17px;
        color: var(--dark);
        margin-bottom: 10px;
      }
      .value-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.75;
      }

      /* TEAM */
      .team-intro {
        max-width: 680px;
        margin: 0 auto 48px;
        text-align: center;
      }
      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 24px;
      }
      .team-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px;
        text-align: center;
      }
      .team-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 14px;
        border: 3px solid var(--blue-light);
      }
      .team-avatar-placeholder {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        margin: 0 auto 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
      }
      .team-name {
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        font-size: 15px;
        color: var(--dark);
        margin-bottom: 4px;
      }
      .team-role {
        font-size: 13px;
        color: var(--blue);
        font-weight: 600;
        margin-bottom: 10px;
      }
      .team-bio {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6;
      }

      /* LOCATION */
      .location-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
      }
      .location-info h3 {
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        font-size: 22px;
        color: var(--dark);
        margin-bottom: 16px;
      }
      .location-info p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 16px;
      }
      .location-details {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .location-detail {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 14px;
        color: var(--text);
      }
      .location-detail .icon {
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .map-placeholder {
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        border-radius: 16px;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        color: var(--blue);
        font-weight: 700;
        font-size: 16px;
        border: 1px solid var(--border);
      }

      /* CERTIFICATIONS */
      .cert-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
      }
      .cert-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 24px;
        text-align: center;
      }
      .cert-icon {
        font-size: 32px;
        margin-bottom: 10px;
      }
      .cert-name {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: var(--dark);
        margin-bottom: 4px;
      }
      .cert-sub {
        font-size: 12px;
        color: var(--muted);
      }

      /* CTA BANNER */
      .cta-banner {
        background: linear-gradient(135deg, #0f172a, #1e3a5f);
        border-radius: 20px;
        padding: 56px 40px;
        text-align: center;
        color: #fff;
      }
      .cta-banner h2 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(24px, 3vw, 36px);
        font-weight: 800;
        margin-bottom: 12px;
      }
      .cta-banner h2 em {
        font-style: normal;
        color: #facc15;
      }
      .cta-banner p {
        font-size: 16px;
        opacity: 0.75;
        margin-bottom: 32px;
      }
      .cta-phone {
        font-family: "Manrope", sans-serif;
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        color: #facc15;
        text-decoration: none;
        display: block;
        margin-bottom: 20px;
      }
      .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        background: var(--blue);
        color: #fff;
        border-radius: 10px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        transition: background 0.2s;
      }
      .cta-btn:hover {
        background: var(--blue-dark);
      }

      /* FOOTER */
      footer {
        background: var(--dark);
        color: rgba(255, 255, 255, 0.7);
        padding: 56px 20px 32px;
      }
      .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-brand p {
        font-size: 13px;
        margin: 14px 0;
        line-height: 1.7;
      }
      .footer-phone {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 17px;
        color: #1a56db;
        text-decoration: none;
        display: block;
        margin-bottom: 6px;
      }
      .footer-addr {
        font-size: 12px;
        line-height: 1.7;
      }
      .footer-col h4 {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
        margin-bottom: 16px;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-col a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: #fff;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
        font-size: 12px;
        opacity: 0.5;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

      /* STICKY CALL */
      .sticky-call {
        display: none;
      }

      /* RESPONSIVE */
      @media (max-width: 900px) {
        .story-grid {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .stats-row {
          grid-template-columns: 1fr 1fr;
        }
        .values-grid {
          grid-template-columns: 1fr;
        }
        .location-grid {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 768px) {
        .nav-links {
          display: none;
          position: absolute;
          top: 64px;
          left: 0;
          right: 0;
          background: var(--white);
          border-bottom: 1px solid var(--border);
          flex-direction: column;
          padding: 16px;
          gap: 4px;
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }
        .nav-links.open {
          display: flex;
        }
        .hamburger {
          display: flex;
        }
        .nav-phone {
          display: none;
        }
        .btn-nav {
          display: none;
        }
        .cta-banner {
          padding: 40px 20px;
          border-radius: 14px;
        }
        .sticky-call {
          display: block;
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: 200;
          background: var(--green);
          color: #fff;
          text-align: center;
          padding: 14px 20px;
          font-family: "Manrope", sans-serif;
          font-weight: 700;
          font-size: 16px;
          text-decoration: none;
        }
        body {
          padding-bottom: 54px;
        }
      }
      @media (max-width: 480px) {
        .section {
          padding: 48px 16px;
        }
        .stats-row {
          grid-template-columns: 1fr 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .team-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
    
    
    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue: #1a56db; --blue-dark: #1040b0; --blue-light: #e8f0fe;
      --green: #0e9f6e; --dark: #0f172a; --text: #1e293b;
      --muted: #64748b; --border: #e2e8f0; --bg: #f8fafc; --white: #ffffff;
      --shadow: 0 4px 24px rgba(0,0,0,0.08); --shadow-lg: 0 12px 48px rgba(0,0,0,0.13);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }

    /* TOPBAR */
    .topbar { background: var(--dark); color: #fff; font-size: 13px; padding: 8px 16px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .topbar a { color: #facc15; text-decoration: none; font-weight: 600; }
    .topbar span { opacity: 0.5; }

   

    /* PAGE HERO */
    .page-hero { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1a56db 100%); color: #fff; padding: 72px 20px 64px; text-align: center; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
    .page-hero-label { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 5px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
    .page-hero h1 { font-family: 'Manrope', sans-serif; font-size: clamp(28px, 5vw, 50px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
    .page-hero h1 em { font-style: normal; color: #facc15; }
    .page-hero p { font-size: clamp(16px, 2vw, 19px); opacity: 0.85; max-width: 620px; margin: 0 auto; line-height: 1.75; }

    /* BREADCRUMB */
    .breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px 20px; font-size: 13px; color: var(--muted); }
    .breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 8px; }
    .breadcrumb a { color: var(--blue); text-decoration: none; }

    /* SECTIONS */
    .section { padding: 72px 20px; }
    .section-alt { background: var(--bg); }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--blue); margin-bottom: 10px; }
    .section-title { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
    .section-title em { font-style: normal; color: var(--blue); }
    .section-sub { font-size: 17px; color: var(--muted); line-height: 1.75; }

    /* INTRO SPLIT */
    .intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .intro-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
    .intro-img img { width: 100%; height: 400px; object-fit: cover; object-position: center 25%; display: block; }
    .intro-body p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
    .intro-stat-row { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
    .intro-stat { background: var(--blue-light); border-radius: 12px; padding: 16px 20px; text-align: center; flex: 1; min-width: 100px; }
    .intro-stat .n { font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 800; color: var(--blue); }
    .intro-stat .l { font-size: 12px; color: var(--muted); font-weight: 600; }

    /* REASONS */
    .reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .reason-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px; display: flex; gap: 20px; align-items: flex-start; transition: box-shadow 0.2s, transform 0.2s; }
    .reason-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .reason-icon-wrap { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
    .reason-body { flex: 1; }
    .reason-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 17px; color: var(--dark); margin-bottom: 8px; }
    .reason-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

    /* VS TABLE */
    .vs-table { width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
    .vs-table thead tr { background: var(--dark); color: #fff; }
    .vs-table thead th { padding: 18px 20px; text-align: left; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; }
    .vs-table thead th:not(:first-child) { text-align: center; }
    .vs-table tbody tr { border-bottom: 1px solid var(--border); background: var(--white); }
    .vs-table tbody tr:last-child { border-bottom: none; }
    .vs-table tbody tr:nth-child(even) { background: var(--bg); }
    .vs-table td { padding: 16px 20px; font-size: 14px; color: var(--text); }
    .vs-table td:not(:first-child) { text-align: center; font-size: 18px; }
    .vs-table .col-us { background: #f0f7ff !important; }
    .vs-table .col-us td { color: var(--dark); font-weight: 600; }
    .vs-th-us { background: var(--blue) !important; color: #fff !important; }

    /* PROCESS */
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process-steps::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border); z-index: 0; }
    .process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
    .process-num { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(26,86,219,0.3); }
    .process-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 8px; }
    .process-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* GUARANTEE CARDS */
    .guarantee-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .guarantee-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; }
    .guarantee-card .g-icon { font-size: 40px; margin-bottom: 14px; }
    .guarantee-card .g-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px; color: var(--dark); margin-bottom: 8px; }
    .guarantee-card .g-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

    /* TESTIMONIAL STRIP */
    .testimonial-strip { background: linear-gradient(135deg, #f0f4ff, #e8f0fe); border-radius: 20px; padding: 48px 40px; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .t-card { background: var(--white); border-radius: 14px; padding: 24px; box-shadow: var(--shadow); }
    .t-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
    .t-text { font-size: 14px; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
    .t-author { display: flex; align-items: center; gap: 10px; }
    .t-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
    .t-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 13px; color: var(--dark); }
    .t-loc { font-size: 12px; color: var(--muted); }
    .t-verified { font-size: 11px; color: var(--green); font-weight: 600; }

    /* CTA */
    .cta-banner { background: linear-gradient(135deg, #0f172a, #1e3a5f); border-radius: 20px; padding: 56px 40px; text-align: center; color: #fff; }
    .cta-banner h2 { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; }
    .cta-banner h2 em { font-style: normal; color: #facc15; }
    .cta-banner p { font-size: 16px; opacity: 0.75; margin-bottom: 32px; }
    .cta-phone { font-family: 'Manrope', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #facc15; text-decoration: none; display: block; margin-bottom: 20px; }
    .cta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; background: var(--blue); color: #fff; border-radius: 10px; font-weight: 700; font-size: 16px; text-decoration: none; transition: background 0.2s; }
    .cta-btn:hover { background: var(--blue-dark); }

    /* FOOTER */
    footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 56px 20px 32px; }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand p { font-size: 13px; margin: 14px 0; line-height: 1.7; }
    /*.footer-phone { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17px; color: #1a56db; text-decoration: none; display: block; margin-bottom: 6px; }*/
    .footer-addr { font-size: 12px; line-height: 1.7; }
    .footer-col h4 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 12px; opacity: 0.5; display: flex; flex-direction: column; gap: 6px; }

    .sticky-call { display: none; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .intro-split { grid-template-columns: 1fr; gap: 32px; }
      .reasons-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
      .process-steps::before { display: none; }
      .guarantee-row { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .nav-phone { display: none; }
      .btn-nav { display: none; }
      .vs-table { font-size: 12px; }
      .vs-table td, .vs-table th { padding: 12px; }
      .cta-banner { padding: 40px 20px; border-radius: 14px; }
      .sticky-call { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--green); color: #fff; text-align: center; padding: 14px 20px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; text-decoration: none; }
      body { padding-bottom: 54px; }
    }
    @media (max-width: 480px) {
      .section { padding: 48px 16px; }
      .footer-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .testimonial-strip { padding: 32px 16px; }
    }
  
    
    


   