 *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --navy: #0B1F4B;
      --blue: #1A56DB;
      --blue-mid: #2563EB;
      --blue-light: #3B82F6;
      --blue-pale: #EFF6FF;
      --blue-soft: #DBEAFE;
      --grey-dark: #374151;
      --grey-mid: #6B7280;
      --grey-light: #E5E7EB;
      --grey-bg: #F9FAFB;
      --white: #FFFFFF;
      --text-heading: #0B1F4B;
      --text-body: #374151;
      --text-muted: #6B7280;
      --border: #E5E7EB;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
      --radius: 10px;
      --radius-lg: 16px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-body);
      background: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-heading);
      line-height: 1.25;
    }

    /* ─── NAV ─── */
    nav {
   position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #FFFFFF;
    backdrop-filter: none;
    border-bottom: 1px solid var(--border);
    padding: 0 8%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .brand-icon {
      width: 36px;
      height: 36px;
      background: var(--blue);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand-icon svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    .brand-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--navy);
      letter-spacing: -0.02em;
    }

    .brand-by {
      font-size: 0.7rem;
      color: var(--text-muted);
      font-weight: 400;
      display: block;
      margin-top: -2px;
      letter-spacing: 0.01em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--grey-dark);
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--blue);
    }

    .nav-phone {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--navy);
      text-decoration: none;
      letter-spacing: 0.01em;
      /* background: var(--blue-pale);
      border: 1.5px solid var(--blue-soft); */
      padding: 7px 16px;
      transition: all 0.2s;
    }

    .nav-phone:hover {
      background: var(--blue-soft);
      border-color: var(--blue-light);
      color: var(--blue-mid);
    }

    .nav-phone-icon {
      font-size: 14px;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-ghost {
 background: #143ca7;
    border: 1.5px solid var(--border);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 20px;
    /* border-radius: var(--radius); */
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    }

    .btn-ghost:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: var(--blue-pale);
    }

    .btn-primary {
      background: var(--blue);
      color: white;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.875rem;
      padding: 9px 22px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.01em;
    }

    .btn-primary:hover {
      background: #1344B8;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
    }

    .btn-large {
      padding: 14px 32px;
      font-size: 1rem;
      border-radius: 12px;
    }

    /* ─── HERO (DARK ANIMATED) ─── */
    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroBadgePop {
      0% {
        opacity: 0;
        transform: scale(0.85);
      }

      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-14px);
      }
    }

    @keyframes floatY2 {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-9px);
      }
    }

    @keyframes pulseRing {
      0% {
        transform: scale(1);
        opacity: 0.6;
      }

      100% {
        transform: scale(2.2);
        opacity: 0;
      }
    }

    @keyframes spinOrbit {
      from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
      }

      to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
      }
    }

    @keyframes spinOrbit2 {
      from {
        transform: rotate(60deg) translateX(170px) rotate(-60deg);
      }

      to {
        transform: rotate(420deg) translateX(170px) rotate(-420deg);
      }
    }

    @keyframes spinOrbit3 {
      from {
        transform: rotate(200deg) translateX(210px) rotate(-200deg);
      }

      to {
        transform: rotate(560deg) translateX(210px) rotate(-560deg);
      }
    }

    @keyframes dashRowIn {
      from {
        opacity: 0;
        transform: translateX(18px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes countUp {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes glowPulse {

      0%,
      100% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
      }

      50% {
        box-shadow: 0 0 60px rgba(59, 130, 246, 0.45);
      }
    }

    @keyframes particleDrift {
      0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.5;
      }

      33% {
        transform: translateY(-40px) translateX(20px) scale(1.2);
        opacity: 0.8;
      }

      66% {
        transform: translateY(-20px) translateX(-15px) scale(0.9);
        opacity: 0.6;
      }

      100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.5;
      }
    }

    @keyframes lineGrow {
      from {
        stroke-dashoffset: 300;
      }

      to {
        stroke-dashoffset: 0;
      }
    }

    @keyframes notifSlide {
      from {
        opacity: 0;
        transform: translateX(30px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes barGrow {
      from {
        transform: scaleY(0);
      }

      to {
        transform: scaleY(1);
      }
    }

    .hero {
      padding-top: 68px;
      min-height: 75vh;
      background: linear-gradient(135deg, #060E24 0%, #0B1F4B 40%, #0D2260 70%, #081535 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* Animated grid lines background */
    .hero-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    }

    /* Big glow orbs */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
    }

    .hero-orb-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(29, 78, 216, 0.4) 0%, transparent 70%);
      top: -100px;
      right: -80px;
    }

    .hero-orb-2 {
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
      bottom: 60px;
      left: 5%;
    }

    .hero-orb-3 {
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
      top: 35%;
      right: 35%;
    }

    /* Floating particles */
    .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(147, 197, 253, 0.6);
      animation: particleDrift linear infinite;
    }

    .hero-inner {
      /* max-width: 1280px; */
    /* margin: 4px 70px; */
    padding: 48px 8% 52px;
    display: grid;
    grid-template-columns: 2fr 2fr;
    /* gap: 35px; */
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    justify-content: space-between;
    /* padding: 29px 31px; */
}
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(59, 130, 246, 0.15);
      color: #93C5FD;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 16px;
      /* border-radius: 100px; */
      border: 1px solid rgba(147, 197, 253, 0.3);
      margin-bottom: 1.5rem;
      animation: heroBadgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      background: #22D3EE;
      border-radius: 50%;
      position: relative;
    }

    .badge-dot::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 1px solid rgba(34, 211, 238, 0.5);
      animation: pulseRing 1.5s ease-out infinite;
    }

    .hero-eyebrow {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(147, 197, 253, 0.7);
      margin-bottom: 1rem;
      animation: heroFadeUp 0.6s ease 0.3s both;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.12;
      margin-bottom: 1.25rem;
      color: white;
      animation: heroFadeUp 0.7s ease 0.4s both;
    }

    .hero h1 .accent {
      background: linear-gradient(135deg, #60A5FA 0%, #22D3EE 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.8;
      margin-bottom: 0.6rem;
      max-width: 490px;
      animation: heroFadeUp 0.7s ease 0.5s both;
    }

    .hero-desc2 {
      font-size: 0.93rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.7;
      margin-bottom: 2.25rem;
      max-width: 460px;
      animation: heroFadeUp 0.7s ease 0.55s both;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      animation: heroFadeUp 0.7s ease 0.65s both;
    }

    .btn-hero-primary {
      background: linear-gradient(135deg, #2563EB, #1D4ED8);
      color: white;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 12px 15px;
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      letter-spacing: 0.01em;
      box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btn-hero-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 99, 235, 0.55);
    }

    .btn-hero-primary:hover::before {
      opacity: 1;
    }

    .btn-hero-ghost {
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.85);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 8px 15px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-hero-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      animation: heroFadeUp 0.7s ease 0.75s both;
    }

    .trust-avatars {
      display: flex;
    }

    .trust-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.2);
      font-size: 11px;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: -8px;
    }

    .trust-avatar:nth-child(1) {
      background: #2563EB;
    }

    .trust-avatar:nth-child(2) {
      background: #059669;
    }

    .trust-avatar:nth-child(3) {
      background: #D97706;
    }

    .trust-avatar:nth-child(4) {
      background: #7C3AED;
    }

    .trust-text {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      margin-left: 14px;
    }

    .trust-text strong {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 700;
    }

    /* ─── HERO RIGHT: ANIMATED VISUAL ─── */
    .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFadeUp 0.8s ease 0.5s both;
    margin-left: 180px;
}

    /* Central glowing device frame */
    .device-frame {
      width: 100%;
      max-width: 480px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(147, 197, 253, 0.2);
      border-radius: 22px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      overflow: hidden;
      position: relative;
      animation: glowPulse 3s ease-in-out infinite;
    }

    .device-topbar {
      background: rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .device-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
    }

    .device-dot.r {
      background: #FF5F56;
    }

    .device-dot.y {
      background: #FFBD2E;
    }

    .device-dot.g {
      background: #27C93F;
    }

    .device-url {
      flex: 1;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 6px;
      padding: 4px 12px;
      margin-left: 8px;
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.02em;
    }

    .device-body {
      padding: 18px;
    }

    /* Mini dashboard inside device */
    .mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 14px;
    }

    .mini-stat {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 10px;
      animation: countUp 0.6s ease both;
    }

    .mini-stat:nth-child(1) {
      animation-delay: 0.8s;
    }

    .mini-stat:nth-child(2) {
      animation-delay: 1.0s;
    }

    .mini-stat:nth-child(3) {
      animation-delay: 1.2s;
    }

    .mini-stat-label {
      font-size: 0.62rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 4px;
      font-weight: 500;
    }

    .mini-stat-val {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: white;
    }

    .mini-stat-change {
      font-size: 0.6rem;
      font-weight: 600;
      margin-top: 2px;
    }

    .up {
      color: #34D399;
    }

    .warn {
      color: #FCD34D;
    }

    .info {
      color: #60A5FA;
    }

    /* Chart bars */
    .mini-chart {
      margin-bottom: 14px;
    }

    .mini-chart-title {
      font-size: 0.68rem;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 5px;
      height: 52px;
    }

    .chart-bar {
      flex: 1;
      border-radius: 4px 4px 0 0;
      transform-origin: bottom;
      animation: barGrow 0.8s cubic-bezier(0.34, 1.3, 0.64, 1) both;
    }

    .chart-bar:nth-child(1) {
      animation-delay: 1.0s;
      height: 45%;
      background: rgba(59, 130, 246, 0.4);
    }

    .chart-bar:nth-child(2) {
      animation-delay: 1.1s;
      height: 65%;
      background: rgba(59, 130, 246, 0.55);
    }

    .chart-bar:nth-child(3) {
      animation-delay: 1.2s;
      height: 50%;
      background: rgba(59, 130, 246, 0.4);
    }

    .chart-bar:nth-child(4) {
      animation-delay: 1.3s;
      height: 80%;
      background: rgba(37, 99, 235, 0.75);
    }

    .chart-bar:nth-child(5) {
      animation-delay: 1.4s;
      height: 55%;
      background: rgba(59, 130, 246, 0.45);
    }

    .chart-bar:nth-child(6) {
      animation-delay: 1.5s;
      height: 90%;
      background: #3B82F6;
    }

    .chart-bar:nth-child(7) {
      animation-delay: 1.6s;
      height: 70%;
      background: rgba(59, 130, 246, 0.6);
    }

    /* Student rows */
    .mini-rows {}

    .mini-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 7px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      animation: dashRowIn 0.5s ease both;
      font-size: 0.72rem;
    }

    .mini-row:last-child {
      border-bottom: none;
    }

    .mini-row:nth-child(1) {
      animation-delay: 1.3s;
    }

    .mini-row:nth-child(2) {
      animation-delay: 1.5s;
    }

    .mini-row:nth-child(3) {
      animation-delay: 1.7s;
    }

    .mini-row:nth-child(4) {
      animation-delay: 1.9s;
    }

    .mini-row-name {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }

    .mini-row-course {
      color: rgba(255, 255, 255, 0.35);
      font-size: 0.65rem;
    }

    .mini-row-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mini-row-fee {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.68rem;
    }

    .spill {
      padding: 2px 7px;
      border-radius: 100px;
      font-size: 0.6rem;
      font-weight: 700;
    }

    .spill-g {
      background: rgba(52, 211, 153, 0.18);
      color: #34D399;
      border: 1px solid rgba(52, 211, 153, 0.3);
    }

    .spill-a {
      background: rgba(252, 211, 77, 0.18);
      color: #FCD34D;
      border: 1px solid rgba(252, 211, 77, 0.3);
    }

    .spill-r {
      background: rgba(248, 113, 113, 0.18);
      color: #F87171;
      border: 1px solid rgba(248, 113, 113, 0.3);
    }

    .spill-b {
      background: rgba(96, 165, 250, 0.18);
      color: #60A5FA;
      border: 1px solid rgba(96, 165, 250, 0.3);
    }

    /* Floating notification cards */
    .notif-card {
      position: absolute;
      background: rgba(15, 30, 70, 0.92);
      border: 1px solid rgba(147, 197, 253, 0.2);
      border-radius: 12px;
      padding: 10px 14px;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      font-size: 0.75rem;
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .notif-card-1 {
      top: 12%;
      right: -20px;
      animation: notifSlide 0.6s ease 2s both, floatY 4s ease-in-out 2.6s infinite;
    }

    .notif-card-2 {
      bottom: 15%;
      left: -24px;
      animation: notifSlide 0.6s ease 2.3s both, floatY2 5s ease-in-out 2.9s infinite;
    }

    .notif-card-3 {
      bottom: 42%;
      right: -18px;
      animation: notifSlide 0.6s ease 2.6s both, floatY 6s ease-in-out 3.2s infinite;
    }

    .notif-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .ni-green {
      background: rgba(52, 211, 153, 0.2);
    }

    .ni-blue {
      background: rgba(96, 165, 250, 0.2);
    }

    .ni-amber {
      background: rgba(252, 211, 77, 0.2);
    }

    .notif-title {
      font-weight: 700;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.95);
    }

    .notif-sub {
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 1px;
    }

    /* Orbit rings around device */
    .orbit-wrap {
      position: absolute;
      inset: -60px;
      pointer-events: none;
      z-index: -1;
    }

    .orbit-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px dashed;
    }

    .orbit-ring-1 {
      width: 340px;
      height: 340px;
      border-color: rgba(59, 130, 246, 0.12);
    }

    .orbit-ring-2 {
      width: 460px;
      height: 460px;
      border-color: rgba(59, 130, 246, 0.07);
    }

    .orbit-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -5px 0 0 -5px;
      box-shadow: 0 0 8px currentColor;
    }

    .orbit-dot-1 {
      background: #60A5FA;
      color: #60A5FA;
      animation: spinOrbit 8s linear infinite;
    }

    .orbit-dot-2 {
      background: #34D399;
      color: #34D399;
      animation: spinOrbit2 12s linear infinite;
    }

    .orbit-dot-3 {
      background: #A78BFA;
      color: #A78BFA;
      animation: spinOrbit3 16s linear infinite;
    }

    /* Responsive fix for hero right visual */
    .hero-visual-wrap {
      position: relative;
      animation: floatY 6s ease-in-out 1s infinite;
    }

    /* ─── TAGLINE STRIP ─── */
    .tagline-strip {
      background: var(--navy);
      padding: 14px 5%;
      text-align: center;
    }

    .tagline-strip p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .tagline-strip span {
      color: #93C5FD;
      font-weight: 700;
    }

    /* ─── FEATURES ─── */
    .section {
      padding: 50px 5%;
    }

    .section-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--blue-soft);
      color: var(--blue-mid);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 1rem;
    }

    .section-heading {
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
      max-width: 675px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 530px;
      line-height: 1.75;
      margin-bottom: 3rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card {
      background: var(--white);
      border: 1px solid var(--border);
      /* border-radius: var(--radius-lg); */
      padding: 20px 20px;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), #60A5FA);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .feature-card:hover {
      border-color: rgba(59, 130, 246, 0.3);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-icon {
    width: 35px;
    height: 35px;
    /* border-radius: 10px; */
    background: #f4f8ff;
    color: var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    }

    .feature-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--navy);
    }

    .feature-card p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ─── HOW IT WORKS ─── */
    .how-section {
      background: #f5f5f5;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 3rem;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 14%;
      right: 14%;
      height: 2px;
      background: linear-gradient(90deg, var(--blue-soft), var(--blue-light), var(--blue-soft));
      z-index: 0;
    }

    .step-item {
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--blue);
      color: white;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      box-shadow: 0 0 0 6px var(--blue-soft);
    }

    .step-item h4 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .step-item p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ─── PRICING (HORIZONTAL CORPORATE PREMIUM) ─── */
    @keyframes beamSweep {
      0% {
        transform: translateX(-100%) skewX(-15deg);
      }

      100% {
        transform: translateX(400%) skewX(-15deg);
      }
    }

    @keyframes pricePop {
      0% {
        opacity: 0;
        transform: scale(0.88) translateY(30px);
      }

      60% {
        transform: scale(1.02) translateY(-4px);
      }

      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    @keyframes featureSlideIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes statRise {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes ringRotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes ringRotateRev {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(-360deg);
      }
    }

    @keyframes pricingParticle {

      0%,
      100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
      }

      50% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.7;
      }
    }

    @keyframes glowBreath {

      0%,
      100% {
        opacity: 0.5;
      }

      50% {
        opacity: 1;
      }
    }

    @keyframes floatBadge {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-5px);
      }
    }

    @keyframes tickerScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .pricing-section {
      /* background: #040C20; */
      padding: 50px 5% 90px;
      position: relative;
      overflow: hidden;
    }

    /* Animated dot grid */
    .pricing-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(59, 130, 246, 0.25) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
    }

    /* Corner glow blobs */
    .pricing-glow-tl {
      position: absolute;
      top: -120px;
      left: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 60%);
      filter: blur(60px);
      pointer-events: none;
      animation: glowBreath 4s ease-in-out infinite;
    }

    .pricing-glow-br {
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 60%);
      filter: blur(60px);
      pointer-events: none;
      animation: glowBreath 5s ease-in-out 1s infinite;
    }

    .pricing-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .pricing-header .section-tag {
      background: rgba(59, 130, 246, 0.15);
      color: #93C5FD;
      border: 1px solid rgba(147, 197, 253, 0.2);
      display: inline-flex;
      margin-bottom: 1.25rem;
    }

    .pricing-header h2 {
      color: #0d192b;
      font-size: 2.6rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      margin-bottom: 0.75rem;
      line-height: 1.15;
    }

    .pricing-header h2 span {
      background: linear-gradient(135deg, #60A5FA, #34D399);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pricing-header p {
      color: rgb(0 0 0 / 50%);
      font-size: 1rem;
      max-width: 420px;
      margin: 0 auto;
    }

    /* Main horizontal card wrapper */
    .pricing-card-outer {
      position: relative;
      /* border-radius: 24px; */
      padding: 2px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(99, 102, 241, 0.4), rgba(37, 99, 235, 0.6));
      box-shadow:0 40px 100px rgb(211 211 211 / 28%), 0 0 60px rgba(37, 99, 235, 0.15);
      animation: pricePop 0.8s cubic-bezier(0.34, 1.1, 0.64, 1) 0.3s both;
    }

    /* Light beam sweep on hover */
    .pricing-card-outer::after {
      content: '';
      position: absolute;
      inset: 0;
      /* border-radius: 24px; */
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
      transform: translateX(-100%) skewX(-15deg);
      animation: beamSweep 3.5s ease-in-out 1.5s infinite;
      pointer-events: none;
    }

    .pricing-horizontal {
      display: grid;
      grid-template-columns: 1fr 1.15fr 1fr;
      /* border-radius: 22px; */
      overflow: hidden;
      background: #0A1628;
    }

    /* ── LEFT PANEL ── */
    .ph-left {
      padding: 44px 38px;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
    }

    .ph-left::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.4) 40%, rgba(59, 130, 246, 0.4) 60%, transparent);
    }

    .ph-panel-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.68rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.35);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 1.75rem;
    }

    .ph-panel-label::before {
      content: '';
      width: 20px;
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
    }

    .ph-feature-list {
      list-style: none;
    }

    .ph-feature-list li {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.72);
      animation: featureSlideIn 0.5s ease both;
    }

    .ph-feature-list li:nth-child(1) {
      animation-delay: 0.4s;
    }

    .ph-feature-list li:nth-child(2) {
      animation-delay: 0.5s;
    }

    .ph-feature-list li:nth-child(3) {
      animation-delay: 0.6s;
    }

    .ph-feature-list li:nth-child(4) {
      animation-delay: 0.7s;
    }

    .ph-feature-list li:nth-child(5) {
      animation-delay: 0.8s;
    }

    .ph-feature-list li:nth-child(6) {
      animation-delay: 0.9s;
    }

    .ph-feature-list li:nth-child(7) {
      animation-delay: 1.0s;
    }

    .ph-feature-list li:nth-child(8) {
      animation-delay: 1.1s;
    }

    .ph-feature-list li:nth-child(9) {
      animation-delay: 1.2s;
    }

    .ph-feature-list li:nth-child(10) {
      animation-delay: 1.3s;
    }

    .ph-feature-list li:last-child {
      border-bottom: none;
    }

    .ph-check {
      width: 20px;
      height: 20px;
      /* border-radius: 6px; */
      background: rgba(52, 211, 153, 0.12);
      border: 1px solid rgba(52, 211, 153, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #34D399;
      flex-shrink: 0;
      font-weight: 700;
    }

    /* ── CENTER PANEL (Price Spotlight) ── */
    .ph-center {
      background: linear-gradient(150deg, #1344B8 0%, #1A56DB 45%, #1E4ED8 75%, #1344B8 100%);
      padding: 30px 35px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Animated orbit rings inside center */
    .ph-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .ph-ring-1 {
      width: 280px;
      height: 280px;
      margin: -140px 0 0 -140px;
      animation: ringRotate 20s linear infinite;
    }

    .ph-ring-1::after {
      content: '';
      position: absolute;
      top: -4px;
      left: 50%;
      margin-left: -4px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(147, 197, 253, 0.6);
    }

    .ph-ring-2 {
      width: 380px;
      height: 380px;
      margin: -190px 0 0 -190px;
      border-color: rgba(255, 255, 255, 0.04);
      animation: ringRotateRev 30s linear infinite;
    }

    .ph-ring-2::after {
      content: '';
      position: absolute;
      bottom: -3px;
      right: 50%;
      margin-right: -3px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(52, 211, 153, 0.5);
    }

    /* Radial glow behind price */
    .ph-center::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
      pointer-events: none;
    }

    .ph-badge {
      display: inline-block;
      position: relative;
      z-index: 2;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: white;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 15px;
      border-radius: 100px;
      margin-bottom: 1.75rem;
      animation: floatBadge 3s ease-in-out infinite;
    }

    .ph-plan-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: white;
      margin-bottom: 0.4rem;
      position: relative;
      z-index: 2;
      letter-spacing: -0.02em;
    }

    .ph-plan-desc {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
      line-height: 1.5;
    }

    .ph-price {
      position: relative;
      z-index: 2;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 2px;
    }

    .ph-currency {
      font-size: 1.6rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 10px;
    }

    .ph-amount {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 5.5rem;
      font-weight: 800;
      line-height: 0.95;
      color: white;
      letter-spacing: -0.06em;
      margin-bottom: 9px;
    }

    .ph-year-tag {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.5);
      align-self: flex-end;
      margin-bottom: 12px;
      margin-left: 4px;
      font-weight: 600;
    }

    .ph-flat-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 0.75rem;
      position: relative;
      z-index: 2;
      line-height: 1.5;
    }

    .ph-divider {
      height: 1px;
      margin: 0 0 1.75rem;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      position: relative;
      z-index: 2;
    }

    .ph-highlights {
      position: relative;
      z-index: 2;
      margin-bottom: 1rem;
    }

    .ph-highlight {
        display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    padding: 4px 11px;
    border-radius: 8px;
    margin-bottom: 1px;
    transition: background 0.2s;
    }

    .ph-highlight:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .ph-highlight-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, #93C5FD, #34D399);
      flex-shrink: 0;
    }

    .ph-cta {
      display: block;
      width: 100%;
      position: relative;
      z-index: 2;
      background: white;
      color: #1344B8;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      padding: 12px;
      /* border-radius: 14px; */
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      letter-spacing: 0.01em;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }

    .ph-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
    }

    /* ── RIGHT PANEL ── */
    .ph-right {
      padding: 44px 38px;
      border-left: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
    }

    .ph-right::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.4) 40%, rgba(59, 130, 246, 0.4) 60%, transparent);
    }

    .ph-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 1.5rem;
    }

    .ph-stat {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
      border: 1px solid rgba(255, 255, 255, 0.07);
      /* border-radius: 14px; */
      padding: 18px 14px;
      text-align: center;
      transition: all 0.25s;
      cursor: default;
      animation: statRise 0.5s ease both;
    }

    .ph-stat:nth-child(1) {
      animation-delay: 0.5s;
    }

    .ph-stat:nth-child(2) {
      animation-delay: 0.65s;
    }

    .ph-stat:nth-child(3) {
      animation-delay: 0.8s;
    }

    .ph-stat:nth-child(4) {
      animation-delay: 0.95s;
    }

    .ph-stat:hover {
      transform: translateY(-4px);
      border-color: rgba(59, 130, 246, 0.3);
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
    }

    .ph-stat-val {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.75rem;
      font-weight: 800;
      color: white;
      line-height: 1;
      margin-bottom: 5px;
      background: linear-gradient(135deg, #fff 60%, #93C5FD);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .ph-stat-label {
        font-size: 0.67rem;
    color: rgb(255 255 255 / 57%);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.3;
    }

    .ph-guarantee {
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(52, 211, 153, 0.06));
      border: 1px solid rgba(52, 211, 153, 0.2);
      /* border-radius: 14px; */
      padding: 16px 18px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }

    .ph-guarantee-icon {
      font-size: 22px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .ph-guarantee-text {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.55;
    }

    .ph-guarantee-text strong {
      color: #34D399;
      display: block;
      font-size: 0.82rem;
      margin-bottom: 3px;
    }

    .ph-contact-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.06));
      border: 1px solid rgba(59, 130, 246, 0.25);
      /* border-radius: 14px; */
      padding: 14px 18px;
      transition: border-color 0.2s;
    }

    .ph-contact-pill:hover {
      border-color: rgba(59, 130, 246, 0.5);
    }

    .ph-contact-icon {
      width: 36px;
      height: 36px;
      /* border-radius: 10px; */
      /* background: rgba(59, 130, 246, 0.2); */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .ph-contact-pill strong {
      color: #93C5FD;
      font-size: 1rem;
      display: block;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .ph-contact-pill span {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ─── SMART SECTION ─── */
    @keyframes smartPulse {

      0%,
      100% {
        opacity: 0.5;
        transform: scale(1);
      }

      50% {
        opacity: 0.8;
        transform: scale(1.05);
      }
    }

    @keyframes deviceFloat {

      0%,
      100% {
        transform: translateY(0) rotate(-2deg);
      }

      50% {
        transform: translateY(-18px) rotate(-2deg);
      }
    }

    @keyframes tabletFloat {

      0%,
      100% {
        transform: translateY(0) rotate(3deg);
      }

      50% {
        transform: translateY(-12px) rotate(3deg);
      }
    }

    @keyframes phoneFloat {

      0%,
      100% {
        transform: translateY(0) rotate(-1deg);
      }

      50% {
        transform: translateY(-10px) rotate(-1deg);
      }
    }

    @keyframes typingBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    .smart-section {
      background: linear-gradient(135deg, #0B1F4B 0%, #060E24 60%, #091832 100%);
      padding: 50px 5%;
      position: relative;
      overflow: hidden;
    }

    .smart-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(29, 78, 216, 0.25) 0%, transparent 70%);
      pointer-events: none;
    }

    .smart-grid-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .smart-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .smart-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(59, 130, 246, 0.15);
      color: #93C5FD;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid rgba(147, 197, 253, 0.25);
      margin-bottom: 1.25rem;
    }

    .smart-inner h2 {
      font-size: 2.6rem;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.035em;
      color: white;
      margin-bottom: 1rem;
    }

    .smart-inner h2 .accent {
      background: linear-gradient(135deg, #60A5FA 0%, #34D399 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .smart-inner p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .smart-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 2.5rem;
    }

    .smart-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .smart-feature-icon {
      width: 34px;
      height: 34px;
      /* border-radius: 9px; */
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .sfi-blue {
      background: rgba(59, 130, 246, 0.2);
    }

    .sfi-green {
      background: rgba(52, 211, 153, 0.15);
    }

    .sfi-amber {
      background: rgba(252, 211, 77, 0.15);
    }

    /* Devices illustration */
    .devices-wrap {
      position: relative;
      height: 360px;
    }

    .device-laptop {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 320px;
      animation: deviceFloat 5s ease-in-out 0.5s infinite;
    }

    .device-tablet {
      position: absolute;
      top: 0;
      right: 0;
      width: 130px;
      animation: tabletFloat 6s ease-in-out 1s infinite;
    }

    .device-phone {
      position: absolute;
      bottom: 60px;
      left: 10px;
      width: 60px;
      animation: phoneFloat 4s ease-in-out 0.8s infinite;
    }

    .d-laptop-frame {
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      padding: 10px;
      position: relative;
    }

    .d-laptop-screen {
      background: #0B1F4B;
      border-radius: 6px;
      padding: 8px;
      height: 150px;
      overflow: hidden;
    }

    .d-laptop-base {
      margin-top: 6px;
      height: 12px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 0 0 8px 8px;
      position: relative;
    }

    .d-laptop-base::after {
      content: '';
      position: absolute;
      top: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
    }

    .d-screen-row {
      display: flex;
      gap: 5px;
      margin-bottom: 5px;
    }

    .d-screen-bar {
      height: 6px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.15);
    }

    .d-screen-col {
      background: rgba(59, 130, 246, 0.3);
      border-radius: 3px;
      flex: 1;
      height: 40px;
      display: flex;
      align-items: flex-end;
      padding: 3px;
    }

    .d-screen-col-inner {
      background: #3B82F6;
      border-radius: 2px;
      width: 100%;
    }

    .d-tablet-frame {
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      padding: 6px;
    }

    .d-tablet-screen {
      background: #0B1F4B;
      border-radius: 4px;
      height: 90px;
      overflow: hidden;
      padding: 6px;
    }

    .d-phone-frame {
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      padding: 5px;
    }

    .d-phone-screen {
      background: #0B1F4B;
      border-radius: 7px;
      height: 80px;
      overflow: hidden;
      padding: 6px;
    }

    .d-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #34D399;
      animation: smartPulse 2s ease infinite;
      margin-bottom: 4px;
    }

    /* ─── TESTIMONIALS SLIDER ─── */
    @keyframes starPop {
      0% {
        transform: scale(0) rotate(-20deg);
        opacity: 0;
      }

      70% {
        transform: scale(1.25) rotate(5deg);
      }

      100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
      }
    }

    @keyframes slideTrack {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @keyframes tCardHover {
      from {
        transform: translateY(0);
      }

      to {
        transform: translateY(-6px);
      }
    }

    .testimonials-section {
      background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 40%, #F4F9FF 100%);
      padding: 50px 0 80px;
      overflow: hidden;
      position: relative;
    }

    .testimonials-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #2563EB, #22D3EE, #34D399, #2563EB);
      background-size: 200% 100%;
      animation: borderBeam 4s linear infinite;
    }

    .testimonials-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .testimonials-header .section-tag {
      display: inline-flex;
      margin: 0 auto 1rem;
    }

    .testimonials-header h2 {
      text-align: center;
      max-width: 100%;
    }

    .testimonials-header p {
      text-align: center;
      margin: 0 auto;
      max-width: 480px;
    }

    /* Rating summary bar */
    .t-rating-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 1rem;
      padding: 16px 28px;
      flex-wrap: wrap;
      background: white;
      border-radius: 100px;
      border: 1px solid var(--border);
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 20px rgba(11, 31, 75, 0.06);
    }

    .t-rating-stars {
      display: flex;
      gap: 4px;
    }

    .t-star {
      font-size: 18px;
      color: #F59E0B;
      animation: starPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    .t-star:nth-child(1) {
      animation-delay: 0.1s;
    }

    .t-star:nth-child(2) {
      animation-delay: 0.18s;
    }

    .t-star:nth-child(3) {
      animation-delay: 0.26s;
    }

    .t-star:nth-child(4) {
      animation-delay: 0.34s;
    }

    .t-star:nth-child(5) {
      animation-delay: 0.42s;
    }

    .t-rating-score {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--navy);
    }

    .t-rating-label {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .t-rating-sep {
      width: 1px;
      height: 24px;
      background: var(--border);
    }

    .t-count {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      color: var(--navy);
      font-size: 0.9rem;
    }

    /* Infinite auto-scroll slider */
    .t-slider-wrap {
      position: relative;
      width: 100vw;
      left: 50%;
      transform: translateX(-50%);
      overflow: hidden;
      padding: 16px 0 20px;
    }

    /* Fade masks on edges */
    .t-slider-wrap::before,
    .t-slider-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 140px;
      z-index: 2;
      pointer-events: none;
    }

    .t-slider-wrap::before {
      left: 0;
      background: linear-gradient(90deg, #F0F6FF, transparent);
    }

    .t-slider-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, #F4F9FF, transparent);
    }

    .t-track {
      display: flex;
      gap: 22px;
      width: max-content;
      animation: slideTrack 38s linear infinite;
    }

    .t-track:hover {
      animation-play-state: paused;
    }

    .t-card {
      background: white;
      border: 1px solid var(--border);
      /* border-radius: 20px; */
      padding: 22px 22px;
      width: 360px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      cursor: default;
    }

    .t-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 50px rgba(11, 31, 75, 0.1);
      border-color: rgba(37, 99, 235, 0.25);
    }

    /* Colored top accent */
    .t-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 20px 20px 0 0;
    }

    .t-card.tc-blue::before {
      background: linear-gradient(90deg, #2563EB, #60A5FA);
    }

    .t-card.tc-green::before {
      background: linear-gradient(90deg, #059669, #34D399);
    }

    .t-card.tc-purple::before {
      background: linear-gradient(90deg, #7C3AED, #A78BFA);
    }

    .t-card.tc-amber::before {
      background: linear-gradient(90deg, #D97706, #FCD34D);
    }

    .t-card.tc-red::before {
      background: linear-gradient(90deg, #DC2626, #F87171);
    }

    .t-card.tc-cyan::before {
      background: linear-gradient(90deg, #0891B2, #22D3EE);
    }

    /* Large quote mark */
    .t-quote-mark {
      position: absolute;
      top: -4px;
      right: 18px;
      font-family: Georgia, serif;
      font-size: 6rem;
      line-height: 1;
      color: #DBEAFE;
      pointer-events: none;
      user-select: none;
    }

    .t-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 12px;
    }

    .star {
      color: #F59E0B;
      font-size: 13px;
    }

    .t-text {
      font-size: 0.875rem;
      color: var(--grey-dark);
      line-height: 1.78;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .t-author {
      display: flex;
      align-items: center;
      gap: 11px;
      padding-top: 15px;
      border-top: 1px solid #F3F4F6;
    }

    .t-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 0.8rem;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .av-1 {
      background: linear-gradient(135deg, #2563EB, #60A5FA);
    }

    .av-2 {
      background: linear-gradient(135deg, #059669, #34D399);
    }

    .av-3 {
      background: linear-gradient(135deg, #7C3AED, #A78BFA);
    }

    .av-4 {
      background: linear-gradient(135deg, #D97706, #FCD34D);
    }

    .av-5 {
      background: linear-gradient(135deg, #DC2626, #F87171);
    }

    .av-6 {
      background: linear-gradient(135deg, #0891B2, #22D3EE);
    }

    .t-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.855rem;
      font-weight: 700;
      color: var(--navy);
    }

    .t-role {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 1px;
    }

    /* Slider dots */
    .t-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 2rem;
    }

    .t-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #CBD5E1;
      transition: all 0.3s;
      cursor: pointer;
    }

    .t-dot.active {
      width: 22px;
      border-radius: 3px;
      background: var(--blue-mid);
    }

    /* ─── CTA STRIP ─── */
    @keyframes ctaFloatIcon {

      0%,
      100% {
        transform: translateY(0) rotate(0deg) scale(1);
      }

      25% {
        transform: translateY(-12px) rotate(5deg) scale(1.08);
      }

      75% {
        transform: translateY(-6px) rotate(-3deg) scale(1.04);
      }
    }

    @keyframes ctaFloatIcon2 {

      0%,
      100% {
        transform: translateY(0) rotate(0deg) scale(1);
      }

      33% {
        transform: translateY(-16px) rotate(-6deg) scale(1.1);
      }

      66% {
        transform: translateY(-8px) rotate(4deg) scale(1.05);
      }
    }

    @keyframes ctaFloatIcon3 {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(-10px) scale(1.12);
      }
    }

    @keyframes ctaRipple {
      0% {
        transform: scale(1);
        opacity: 0.5;
      }

      100% {
        transform: scale(2.8);
        opacity: 0;
      }
    }

    @keyframes ctaGradientShift {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes ctaParticle {
      0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
      }

      20% {
        opacity: 1;
        transform: translateY(-20px) translateX(10px) scale(1);
      }

      100% {
        transform: translateY(-80px) translateX(20px) scale(0.5);
        opacity: 0;
      }
    }

    @keyframes ctaTextGlow {

      0%,
      100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0);
      }

      50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
      }
    }

    @keyframes countNumber {
      from {
        transform: translateY(100%);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes pulseCircle {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
      }

      70% {
        transform: scale(1);
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
      }

      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
      }
    }

    .cta-strip {
      background: linear-gradient(135deg, #0F2566 0%, #1A3A8F 30%, #0D5C8F 60%, #065F7B 85%, #047A6E 100%);
      background-size: 300% 300%;
      animation: ctaGradientShift 8s ease infinite;
      padding: 40px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Dot grid overlay */
    .cta-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* Large decorative ring */
    .cta-strip::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.05);
      pointer-events: none;
    }

    .cta-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Floating animated icons around CTA */
    .cta-icon-float {
      position: absolute;
      z-index: 1;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      font-size: 24px;
    }

    .cif-1 {
      top: 12%;
      left: 5%;
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      animation: ctaFloatIcon 5s ease-in-out infinite;
      backdrop-filter: blur(4px);
    }

    .cif-2 {
      top: 20%;
      right: 6%;
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      animation: ctaFloatIcon2 6.5s ease-in-out 0.5s infinite;
      backdrop-filter: blur(4px);
    }

    .cif-3 {
      bottom: 20%;
      left: 8%;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      animation: ctaFloatIcon3 4s ease-in-out 1s infinite;
      backdrop-filter: blur(4px);
    }

    .cif-4 {
      bottom: 15%;
      right: 5%;
      width: 52px;
      height: 52px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      animation: ctaFloatIcon 7s ease-in-out 0.8s infinite;
      backdrop-filter: blur(4px);
    }

    .cif-5 {
      top: 50%;
      left: 2%;
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation: ctaFloatIcon2 5.5s ease-in-out 1.5s infinite;
    }

    .cif-6 {
      top: 50%;
      right: 2%;
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation: ctaFloatIcon3 6s ease-in-out 2s infinite;
    }

    /* Stats row */
    .cta-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 2.5rem;
    }

    .cta-stat {
      text-align: center;
      padding: 0 28px;
      position: relative;
    }

    .cta-stat+.cta-stat::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 36px;
      background: rgba(255, 255, 255, 0.2);
    }

    .cta-stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: white;
      line-height: 1;
      display: block;
      letter-spacing: -0.04em;
      animation: countNumber 0.5s ease both;
    }

    .cta-stat-label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 500;
      margin-top: 3px;
      letter-spacing: 0.04em;
      display: block;
    }

    .cta-strip h2 {
      color: white;
      font-size: 2.6rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      margin-bottom: 1rem;
      line-height: 1.15;
      animation: ctaTextGlow 4s ease-in-out infinite;
    }

    .cta-strip h2 span {
      background: linear-gradient(135deg, #93C5FD, #34D399);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-strip p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.05rem;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .btn-cta-primary {
    position: relative;
    overflow: hidden;
    background: white;
    color: #0F2566;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 12px 25px;
    /* border-radius: 14px; */
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    animation: pulseCircle 2.5s infinite;
    }

    .btn-cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    }

    .btn-cta-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 25px;
    /* border-radius: 14px; */
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.01em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    }

    .btn-cta-ghost:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.45);
    }

    .cta-phone-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.55);
    }

    .cta-phone-row a {
      color: #93C5FD;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }

    .cta-phone-row a:hover {
      color: white;
    }

    .cta-phone-sep {
      color: rgba(255, 255, 255, 0.2);
    }

    /* ─── FOOTER ─── */
    footer {
        background: var(--navy);
    padding: 2px 5% 5px;
    color: rgba(255, 255, 255, 0.6);
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: white;
      margin-bottom: 10px;
    }

    .footer-brand-by {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 14px;
    }

    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.7;
      max-width: 300px;
    }

    .footer-col h4 {
      color: white;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #93C5FD;
    }

    .footer-bottom {
   max-width: 1180px;
    margin: 12px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 10px;
    }

    /* ─── LOGIN MODAL ─── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(11, 31, 75, 0.55);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.25s;
    }

    .modal-overlay.active {
      display: flex;
      animation: fadeIn 0.2s ease forwards;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slideUp {
      from {
        transform: translateY(24px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-card {
      background: white;
      /* border-radius: 20px; */
      width: 100%;
      max-width: 420px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
      animation: slideUp 0.25s ease;
      overflow: hidden;
      margin-top: -120px;
      position: relative;
    }

    .modal-top {
      background:#1a56db;
         padding: 13px 30px 15px;
    }

    .modal-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .modal-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--blue);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-logo-icon svg {
      width: 18px;
      height: 18px;
      fill: white;
    }

    .modal-logo-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: white;
    }

    .modal-title {
      color: white;
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .modal-sub {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.85rem;
    }

    .modal-body {
      padding: 28px 32px 32px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--grey-dark);
      margin-bottom: 7px;
      letter-spacing: 0.02em;
    }

    .form-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 9px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text-heading);
      background: var(--grey-bg);
      transition: all 0.2s;
      outline: none;
    }

    .form-input:focus {
      border-color: var(--blue-mid);
      background: white;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .form-input::placeholder {
      color: #9CA3AF;
    }

    .form-forgot {
      text-align: right;
      margin-top: -10px;
      margin-bottom: 18px;
    }

    .form-forgot a {
      font-size: 0.78rem;
      color: var(--blue-mid);
      text-decoration: none;
      font-weight: 500;
    }

    .form-forgot a:hover {
      text-decoration: underline;
    }

    .btn-modal-login {
      width: 100%;
      background: var(--blue);
      color: white;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 13px;
      /* border-radius: 10px; */
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.01em;
    }

    .btn-modal-login:hover {
      background: #1344B8;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      border: none;
      color: rgba(255, 255, 255, 0.7);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    .modal-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 18px 0 16px;
    }

    .modal-divider-line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .modal-divider-text {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .demo-link-wrap {
      text-align: center;
      margin-top: 14px;
    }

    .demo-link-wrap a {
      font-size: 0.82rem;
      color: var(--blue-mid);
      text-decoration: none;
      font-weight: 500;
    }

    .demo-link-wrap a:hover {
      text-decoration: underline;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .pricing-horizontal {
        grid-template-columns: 1fr;
      }

      .ph-left,
      .ph-right {
        padding: 32px 28px;
      }

      .ph-center {
        padding: 40px 32px;
      }

      .ph-stat-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .ph-right::before {
        display: none;
      }

      .ph-left::after {
        display: none;
      }
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-visual {
        display: none;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .steps-grid::before {
        display: none;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero-inner {
        padding-top: 50px;
        padding-bottom: 60px;
        margin: 10px;
      }

      .smart-inner {
        grid-template-columns: 1fr;
      }

      .devices-wrap {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .features-grid {
        grid-template-columns: 1fr;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .pricing-card {
        padding: 28px 24px;
      }

      .section {
        padding: 60px 5%;
      }

      .hero h1 {
        font-size: 1.9rem;
      }

      .t-card {
        width: 300px;
      }

      .t-rating-bar {
        flex-wrap: wrap;
        gap: 10px;
        border-radius: 16px;
        padding: 14px 20px;
      }

      .ph-stat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-phone {
        display: none;
      }

      .cta-stats {
        gap: 0;
      }

      .cta-stat {
        padding: 0 14px;
      }

      .cta-stat-num {
        font-size: 1.5rem;
      }

      .cta-strip h2 {
        font-size: 2rem;
      }

      .cif-3,
      .cif-4,
      .cif-5,
      .cif-6 {
        display: none;
      }
    }