    /* ===== RESET & BASE ===== */

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #003366;
      --primary-lt: #004f9f;
      --accent: #e63946;
      --accent2: #f4a261;
      --white: #ffffff;
      --light-bg: #f0f4f8;
      --dark-bg: #0a0f2c;
      --text: #1a1a2e;
      --text-muted: #6c757d;
      --card-bg: #ffffff;
      --radius: 14px;
      --shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
      --transition: 0.35s ease;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ===== SCROLL-REVEAL ANIMATION ===== */

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 10.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== TOP BAR ===== */

    .top-bar {
      background: var(--primary);
      color: var(--white);
      font-size: 0.78rem;
      padding: 6px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }

    .top-bar a {
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .top-bar a:hover {
      color: var(--accent2);
    }

    /* ===== NAVBAR ===== */

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 18px rgba(0, 51, 102, 0.10);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 76px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo img {
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    .nav-logo span {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
    }

    .nav-links li a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--primary);
      padding: 8px 14px;
      border-radius: 8px;
      transition: var(--transition);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      background: var(--primary);
      color: var(--white);
    }

    .nav-cta {
      background: var(--accent) !important;
      color: var(--white) !important;
      font-weight: 600 !important;
      border-radius: 50px !important;
      padding: 8px 20px !important;
    }

    .nav-cta:hover {
      background: #c1121f !important;
    }

    /* Hamburger */

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ===== HERO ===== */

    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #001f4d 0%, #003366 40%, #005fa3 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1600&q=80') center/cover no-repeat;
      opacity: 0.12;
    }

    /* floating orbs */

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.25;
      animation: float 8s ease-in-out infinite alternate;
    }

    .orb-1 {
      width: 420px;
      height: 420px;
      background: #005fa3;
      top: -100px;
      right: -80px;
    }

    .orb-2 {
      width: 300px;
      height: 300px;
      background: #e63946;
      bottom: -80px;
      left: 10%;
      animation-delay: 3s;
    }

    @keyframes float {
      0% {
        transform: translateY(0) scale(1);
      }

      100% {
        transform: translateY(-30px) scale(1.07);
      }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 40px;
      width: 100%;
    }

    .hero-text {
      flex: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--accent2);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 22px;
    }

    .hero-text h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .hero-text h1 span {
      color: var(--accent2);
    }

    .hero-text h2 {
      font-size: clamp(1rem, 2.2vw, 1.3rem);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.80);
      margin-bottom: 24px;
    }

    .hero-text p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.92rem;
      line-height: 1.8;
      margin-bottom: 10px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      box-shadow: 0 6px 24px rgba(230, 57, 70, 0.40);
    }

    .btn-primary:hover {
      background: #c1121f;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(230, 57, 70, 0.50);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.40);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.22);
      transform: translateY(-2px);
    }

    /* hero stats */

    .hero-stats {
      display: flex;
      gap: 28px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .hero-stat {
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 12px;
      padding: 14px 22px;
      text-align: center;
    }

    .hero-stat h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--accent2);
    }

    .hero-stat span {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.70);
    }

    /* hero visual side */

    .hero-visual {
      flex: 0 0 420px;
      display: flex;
      justify-content: center;
    }

    .hero-card-stack {
      position: relative;
      width: 100%;
      max-width: 380px;
    }

    .hero-device {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.40);
    }

    .hero-device img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    .floating-chip {
      position: absolute;
      background: var(--white);
      border-radius: 12px;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary);
      animation: chipFloat 4s ease-in-out infinite alternate;
    }

    @keyframes chipFloat {
      0% {
        transform: translateY(0);
      }

      100% {
        transform: translateY(-10px);
      }
    }

    .floating-chip .chip-icon {
      font-size: 1.3rem;
    }

    .chip-1 {
      bottom: -18px;
      left: -24px;
    }

    .chip-2 {
      top: -18px;
      right: -24px;
      animation-delay: 2s;
    }

    .chip-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #22c55e;
    }

    /* ===== SECTION SHARED ===== */

    section {
      padding: 90px 40px;
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(230, 57, 70, 0.08);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-title h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .section-title p {
      color: var(--text-muted);
      font-size: 0.96rem;
      max-width: 560px;
      margin: 0 auto;
    }

    .title-line {
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, var(--accent), var(--accent2));
      border-radius: 2px;
      margin: 14px auto 0;
    }

    /* ===== TRUST LOGOS ===== */

    .trust-bar {
      background: var(--light-bg);
      padding: 28px 40px;
      text-align: center;
    }

    .trust-bar p {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .trust-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-logo {
      font-size: 1rem;
      font-weight: 700;
      color: #aab4be;
      letter-spacing: 1px;
      transition: var(--transition);
    }

    .trust-logo:hover {
      color: var(--primary);
    }

    /* ===== SERVICES ===== */

    #services {
      background: var(--light-bg);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 36px 28px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      border-top: 4px solid transparent;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--primary), var(--primary-lt));
      opacity: 0;
      transition: var(--transition);
      z-index: 0;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0, 51, 102, 0.18);
      border-top-color: var(--accent);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover * {
      color: var(--white) !important;
    }

    .service-card>* {
      position: relative;
      z-index: 1;
    }

    .service-icon {
      width: 62px;
      height: 62px;
      background: linear-gradient(135deg, var(--primary), var(--primary-lt));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--white);
      margin-bottom: 22px;
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      background: rgba(255, 255, 255, 0.20);
    }

    .service-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      transition: var(--transition);
    }

    .service-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      transition: var(--transition);
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent);
      margin-top: 16px;
      transition: var(--transition);
    }

    .service-card:hover .service-link {
      color: var(--accent2);
    }

    /* ===== ABOUT ===== */

    #about {
      background: var(--white);
    }

    .about-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 70px;
      flex-wrap: wrap;
    }

    .about-img-col {
      flex: 0 0 460px;
      position: relative;
    }

    .about-img-main {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .about-img-main img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .about-badge-box {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--primary);
      color: var(--white);
      border-radius: 14px;
      padding: 18px 26px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 51, 102, 0.35);
    }

    .about-badge-box h3 {
      font-size: 2rem;
      font-weight: 800;
    }

    .about-badge-box span {
      font-size: 0.75rem;
      opacity: 0.85;
    }

    .about-text-col {
      flex: 1;
    }

    .about-text-col h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 18px;
    }

    .about-text-col p {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .about-stats {
      display: flex;
      gap: 24px;
      margin: 28px 0;
      flex-wrap: wrap;
    }

    .about-stat {
      background: var(--light-bg);
      border-radius: 12px;
      padding: 18px 24px;
      text-align: center;
      flex: 1;
      min-width: 100px;
    }

    .about-stat h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
    }

    .about-stat span {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .about-features {
      margin: 18px 0;
    }

    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }

    .check-icon {
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, var(--primary), var(--primary-lt));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 0.7rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .about-feature p {
      font-size: 0.90rem;
      color: var(--text);
      line-height: 1.6;
    }

    /* ===== WHY CHOOSE US ===== */

    #why {
      background: linear-gradient(135deg, #001f4d 0%, #003366 100%);
    }

    #why .section-title h2 {
      color: var(--white);
    }

    #why .section-title p {
      color: rgba(255, 255, 255, 0.65);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .why-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      transition: var(--transition);
    }

    .why-card:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-6px);
    }

    .why-icon {
      font-size: 2.2rem;
      margin-bottom: 16px;
    }

    .why-card h3 {
      color: var(--white);
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .why-card p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.86rem;
      line-height: 1.7;
    }

    /* ===== VERIZON ===== */

    #verizon {
      background: var(--light-bg);
    }

    .verizon-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 70px;
      flex-wrap: wrap;
    }

    .verizon-text {
      flex: 1;
    }

    .verizon-text h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .verizon-text>p {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .verizon-highlights {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 28px;
    }

    .verizon-highlight {
      background: var(--white);
      border-left: 4px solid var(--primary);
      border-radius: 0 12px 12px 0;
      padding: 16px 20px;
      box-shadow: 0 4px 16px rgba(0, 51, 102, 0.07);
    }

    .verizon-highlight h3 {
      color: var(--primary);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .verizon-highlight p {
      font-size: 0.87rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .verizon-img-col {
      flex: 0 0 440px;
    }

    .verizon-img-col img {
      border-radius: 20px;
      box-shadow: var(--shadow);
      width: 100%;
      height: 360px;
      object-fit: cover;
    }

    /* ===== PROCESS / STEPS ===== */

    #process {
      background: var(--white);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
    }

    .step-card {
      text-align: center;
      padding: 32px 20px;
    }

    .step-num {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary), var(--primary-lt));
      color: var(--white);
      font-size: 1.3rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 8px 24px rgba(0, 51, 102, 0.25);
    }

    .step-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 0.87rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ===== TESTIMONIAL ===== */

    #testimonial {
      background: linear-gradient(135deg, var(--accent) 0%, #c1121f 100%);
    }

    .testimonial-inner {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }

    .testimonial-inner .quote-icon {
      font-size: 4rem;
      color: rgba(255, 255, 255, 0.25);
      line-height: 1;
      margin-bottom: 10px;
    }

    .testimonial-inner h2 {
      color: var(--white);
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      margin-bottom: 28px;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 20px;
      padding: 36px 40px;
      margin-bottom: 32px;
    }

    .stars {
      color: var(--accent2);
      font-size: 1.1rem;
      margin-bottom: 14px;
      letter-spacing: 3px;
    }

    .testimonial-card p {
      color: var(--white);
      font-size: 1rem;
      font-style: italic;
      line-height: 1.85;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }

    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--white);
    }

    .author-info h4 {
      color: var(--white);
      font-size: 0.92rem;
      font-weight: 700;
      text-align: left;
    }

    .author-info span {
      color: rgba(255, 255, 255, 0.70);
      font-size: 0.78rem;
    }

    /* ===== GALLERY ===== */

    #gallery {
      background: var(--light-bg);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-item {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/3;
      cursor: pointer;
      box-shadow: var(--shadow);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 51, 102, 0.85) 0%, transparent 60%);
      opacity: 0;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay span {
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 600;
    }

    /* ===== CTA BANNER ===== */

    .cta-banner {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
      padding: 70px 40px;
      text-align: center;
    }

    .cta-banner h2 {
      color: var(--white);
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .cta-banner p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.97rem;
      margin-bottom: 30px;
    }

    .cta-banner .btn-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ===== DISCLAIMER ===== */

    #disclaimer {
      background: var(--white);
    }

    .disclaimer-box {
      max-width: 880px;
      margin: 0 auto;
      background: var(--light-bg);
      border-radius: var(--radius);
      padding: 40px 48px;
      border-left: 5px solid var(--primary);
    }

    .disclaimer-box h2 {
      color: var(--primary);
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .disclaimer-box p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.85;
      margin-bottom: 14px;
    }

    .disclaimer-note {
      background: rgba(0, 51, 102, 0.07);
      border-radius: 10px;
      padding: 14px 18px;
      font-size: 0.85rem;
      color: var(--primary);
      font-weight: 500;
      margin-top: 20px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    /* ===== FOOTER ===== */

    footer {
      background: var(--dark-bg);
      color: rgba(255, 255, 255, 0.75);
      padding: 70px 40px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .footer-brand h3 {
      color: var(--white);
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .footer-brand p {
      font-size: 0.87rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.70);
      font-size: 0.85rem;
      transition: var(--transition);
    }

    .social-btn:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.60);
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-col ul li a:hover {
      color: var(--accent2);
      padding-left: 4px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
    }

    .fc-icon {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.85rem;
      color: var(--accent2);
    }

    .footer-contact-item p {
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.60);
      line-height: 1.5;
    }

    .footer-contact-item a {
      color: rgba(255, 255, 255, 0.85);
      font-weight: 600;
    }

    .footer-contact-item a:hover {
      color: var(--accent2);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.40);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.55);
    }

    .footer-bottom a:hover {
      color: var(--accent2);
    }

    /* ===== SCROLL TO TOP ===== */

    #scrollTop {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 46px;
      height: 46px;
      background: var(--accent);
      color: var(--white);
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(230, 57, 70, 0.45);
      transition: var(--transition);
      z-index: 999;
    }

    #scrollTop:hover {
      background: #c1121f;
      transform: translateY(-3px);
    }

    

    /* ===== Services Page ===== */

    /* GLOBAL */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f7f9fc;
      color: #333;
      line-height: 1.6;
    }

    /* SECTION TITLE */

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #666;
      max-width: 700px;
      margin: auto;
      font-size: 15px;
    }

 

    /* ===== RESPONSIVE ===== */

    @media (max-width: 1024px) {
      .hero-visual {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 20px;
      }

      nav {
        padding: 0 20px;
      }

      .top-bar {
        padding: 6px 20px;
        font-size: 0.72rem;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        gap: 4px;
      }

      .nav-links.open {
        display: flex;
      }

      .hamburger {
        display: flex;
      }

      .about-wrapper,
      .verizon-wrapper {
        flex-direction: column;
      }

      .about-img-col,
      .verizon-img-col {
        flex: 0 0 auto;
        width: 100%;
      }

      .about-badge-box {
        right: 10px;
        bottom: -14px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .hero-inner {
        padding: 60px 20px;
      }

      .disclaimer-box {
        padding: 28px 22px;
      }

      .testimonial-card {
        padding: 24px 20px;
      }
    }

    /* ===== BUTTON SHARED ===== */

    .btn-red {
      background: var(--accent);
      color: var(--white);
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.92rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
    }

    .btn-red:hover {
      background: #c1121f;
      transform: translateY(-2px);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.50);
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.92rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .btn-dark {
      background: var(--primary);
      color: var(--white);
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.92rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-dark:hover {
      background: var(--primary-lt);
      transform: translateY(-2px);
    }
    /* ===== Fix Call Btn ===== */
    #callBtn {
  position: fixed;
  bottom: 40px; /* above scroll button */
  right: 20px;
  width: 55px;
  height: 55px;
  background: #005fa3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999;
  transition: 0.3s;
}

#callBtn:hover {
  background: #005fa3;
  transform: scale(1.1);
}