  :root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --navy-light: #1e3a5f;
    --gold: #c9a84c;
    --gold-light: #e6c97a;
    --cream: #f5f0e8;
    --white: #ffffff;
    --text-muted: #8899aa;
    --accent: #4fc3f7;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

.email-wrapper .emaiLInput {
    font-size: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 8px 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    position: relative;
    background: transparent;
    z-index: 2;
    color: #ffffff; /* Yaha tum apne hisab se text ka color change kar sakte ho */
}

.email-wrapper .ghostText {
    font-size: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 8px 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid transparent; /* Ghost me border na dikhe */
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(170, 170, 170, 0.9); /* Light grey ghost text */
    pointer-events: none;
    background: transparent;
    z-index: 1;
}


  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 3rem;
    backdrop-filter: blur(18px);
    background: rgba(10,22,40,0.92);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: all 0.3s;
    gap: 1rem;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0;
  }
  .nav-logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg,var(--gold),var(--gold-light));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-family: 'Roboto Mono', monospace; font-size: 0.7rem; font-weight: 700;
    color: var(--navy); letter-spacing: -1px;
  }
  .nav-logo-text { font-size: 1.1rem; font-weight: 600; color: var(--white); }
  .nav-logo-text span { color: var(--gold); }

  .nav-center { display: flex; align-items: center; gap: 2rem; flex: 1; justify-content: end; }
  .nav-center a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
    color: var(--text-muted); text-decoration: none; text-transform: uppercase;
    transition: color 0.2s; white-space: nowrap;
  }
  .nav-center a:hover { color: var(--gold); }

  .nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

  .btn-nav-login {
    font-size: 0.82rem; font-weight: 500; padding: 0.5rem 1.1rem;
    border: 1.5px solid rgba(201,168,76,0.5); color: var(--gold);
    background: transparent; border-radius: 6px; cursor: pointer;
    transition: all 0.2s; white-space: nowrap;
  }
  .btn-nav-login:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

  .btn-nav-signup {
    font-size: 0.82rem; font-weight: 600; padding: 0.5rem 1.1rem;
    background: linear-gradient(135deg,var(--gold),var(--gold-light));
    color: var(--navy); border: none; border-radius: 6px; cursor: pointer;
    transition: all 0.2s; white-space: nowrap;
  }
  .btn-nav-signup:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; background: none; border: none;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px; transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
    background: rgba(10,22,40,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 1.5rem 2rem; flex-direction: column; gap: 0;
    transform: translateY(-10px); opacity: 0;
    transition: all 0.3s; pointer-events: none;
  }
  .mobile-menu.open {
    display: flex; transform: translateY(0); opacity: 1; pointer-events: all;
  }
  .mobile-menu a {
    font-size: 0.95rem; font-weight: 500; color: var(--text-muted);
    text-decoration: none; padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu-actions {
    display: flex; gap: 0.75rem; margin-top: 1.2rem; padding-top: 1.2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .mobile-menu-actions button { flex: 1; padding: 0.7rem; font-size: 0.9rem; }

  /* ── HERO SLIDER ── */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 7rem 4rem 4rem;
  }

  .slider-bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease;
    background-size: cover; background-position: center;
  }
  .slide.active { opacity: 1; }

  /* Slide overlays — dark gradient on top of bg image */
  .slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      100deg,
      rgba(10,22,40,0.92) 0%,
      rgba(10,22,40,0.75) 50%,
      rgba(10,22,40,0.45) 100%
    );
  }

  /* Slide images — real campus/education photos from Unsplash */
  /**
  .slide-1 {
    background-image: url('https://images.unsplash.com/photo-1607237138185-eedd9c632b0b?w=1600&q=80');
  }
  .slide-2 {
    background-image: url('https://images.unsplash.com/photo-1562774053-701939374585?w=1600&q=80');
  }
  .slide-3 {
    background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1600&q=80');
  }
**/
  /* Slider dots */
  .slider-dots {
    position: absolute; bottom: 2.5rem; left: 4rem; z-index: 10;
    display: flex; gap: 0.5rem;
  }
  .dot {
    width: 28px; height: 3px; border-radius: 2px;
    background: rgba(201,168,76,0.3); cursor: pointer;
    transition: all 0.3s;
  }
  .dot.active { background: var(--gold); width: 48px; }

  /* Slider arrows */
  .slider-arrow {
    position: absolute; top: 50%; z-index: 10;
    transform: translateY(-50%);
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold); width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.1rem; transition: all 0.2s;
  }
  .slider-arrow:hover { background: rgba(201,168,76,0.25); }
  .slider-arrow.prev { left: 1.5rem; }
  .slider-arrow.next { right: 1.5rem; }

  /* Fixed hero content over slider */
  .hero-fixed-content {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center;
    padding: 0rem 4rem 4rem;
    pointer-events: none;
  }
  .hero-fixed-content > * { pointer-events: all; }

  .hero-content { max-width: 660px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold); padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 1.8rem;
  }
  .hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); display: inline-block;
    animation: pulse 2s infinite;
  }

  .hero h1 {
    font-size: clamp(1rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.08; margin-bottom: 1.4rem;
  }
  .hero h1 .line2 { color: var(--gold); display: block; }
  .hero p {
    font-size: 14px; line-height: 18px;
    color: rgba(255,255,255,0.65); margin-bottom: 2.2rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg,var(--gold),var(--gold-light));
    color: var(--navy); padding: 0.8rem 1.8rem;
    border-radius: 8px; font-weight: 700; font-size: 0.9rem;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,0.4); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1.5px solid rgba(201,168,76,0.4); color: var(--gold);
    padding: 0.8rem 1.8rem; border-radius: 8px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: all 0.2s; background: transparent; cursor: pointer;
  }
  .btn-secondary:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

  /* Floating college card */
  .hero-visual {
    position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
    z-index: 3; 
    display:flex; align-items:center; justify-content:center;
    animation: floatCard 4s ease-in-out infinite;
  }
  .college-card {
    /* background: rgba(255,255,255,0.04); */
    background: rgb(16 28 45);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 20px; padding: 1.8rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    min-width:380px;
  }
  .college-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.4rem; }
  .college-avatar {
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg,var(--gold),var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Roboto Mono', monospace; font-size: 0.9rem; font-weight: 700;
    color: var(--navy);
  }
  .college-name { font-weight: 600; font-size: 0.88rem; line-height: 1.3; }
  .college-name small { color: var(--text-muted); font-size: 0.72rem; font-weight: 400; }
  .college-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1.3rem; }
  .stat-item { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 0.8rem; border: 1px solid rgba(255,255,255,0.06); }
  .stat-item .val { font-family: 'Roboto Mono', monospace; font-size: 1.3rem; font-weight: 700; color: var(--gold); line-height: 1; }
  .stat-item .lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.3rem; }
  .portal-links { display: flex; flex-direction: column; gap: 0.5rem; }
  .portal-link {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; padding: 0.7rem 1rem;
    font-size: 0.8rem; font-weight: 500; text-decoration: none; color: var(--white); transition: all 0.2s;
  }
  .portal-link:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); }
  .portal-link .arrow { color: var(--gold); }

  /* ── STATS BAND ── */
  .stats-band {
    /* background: rgba(201,168,76,0.06); */
    background: rgb(6 14 26);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 2.2rem 4rem;
    display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
  }
  .band-stat { text-align: center; }
  .band-stat .num { font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
  .band-stat .label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.1em; }

  /* ── SECTIONS ── */
  section { padding: 5.5rem 4rem; }
  .section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
  .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
  .section-sub { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; max-width: 500px; }
  .features-header { margin-bottom: 3.5rem; }
  .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
  .feature-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 1.8rem;
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .feature-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
  .feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
  .feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
  .feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

  /* How it works */
  .how-section { background: rgba(255,255,255,0.015); }
  .steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
  .step { display: flex; flex-direction: column; gap: 0.8rem; position: relative; }
  .step:not(:last-child)::after { content: '→'; position: absolute; right: -1rem; top: 0.6rem; color: var(--gold); opacity: 0.4; font-size: 1.3rem; }
  .step-num { font-family: 'Roboto Mono', monospace; font-size: 0.68rem; font-weight: 700; color: var(--gold); background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); padding: 0.28rem 0.65rem; border-radius: 4px; display: inline-block; }
  .step h3 { font-size: 1rem; font-weight: 600; }
  .step p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

  /* Login */
  .login-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .portal-cards { display: flex; flex-direction: column; gap: 0.9rem; }
  .portal-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 1.5rem; text-decoration: none; color: var(--white);
    display: flex; align-items: center; gap: 1.2rem; transition: all 0.3s; cursor: pointer;
  }
  .portal-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateX(6px); }
  .portal-icon { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
  .portal-icon.student { background: rgba(79,195,247,0.12); border: 1px solid rgba(79,195,247,0.2); }
  .portal-icon.admin { background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2); }
  .portal-icon.faculty { background: rgba(129,199,132,0.12); border: 1px solid rgba(129,199,132,0.2); }
  .portal-card-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
  .portal-card-info p { font-size: 0.8rem; color: var(--text-muted); }

  /* Colleges */
  .colleges-section { background: rgba(255,255,255,0.015); }
  .college-ticker-wrap { overflow: hidden; margin-top: 2.5rem; position: relative; }
  .college-ticker-wrap::before, .college-ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1; }
  .college-ticker-wrap::before { left: 0; background: linear-gradient(to right,rgba(10,22,40,1),transparent); }
  .college-ticker-wrap::after { right: 0; background: linear-gradient(to left,rgba(10,22,40,1),transparent); }
  .college-ticker { display: flex; gap: 1.2rem; animation: ticker 28s linear infinite; width: max-content; }
  .college-chip { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 0.7rem 1.2rem; white-space: nowrap; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7); flex-shrink: 0; }

  /* ── FOOTER ── */
  footer { background: #060e1a; border-top: 1px solid rgba(201,168,76,0.12); padding: 0rem 4rem 2rem; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.8rem; max-width: 280px; }
  .footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
  .footer-col a { display: block; font-size: 0.83rem; color: var(--text-muted); text-decoration: none; margin-bottom: 0.65rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(5,12,25,0.85); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
    padding: 1rem;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }

  .modal {
    background: #0d1e38; border: 1px solid rgba(201,168,76,0.2);
    border-radius: 20px; width: 100%; max-width: 440px;
    padding: 2.2rem; position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s; box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); }

  .modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.07); border: none; color: var(--text-muted);
    width: 32px; height: 32px; border-radius: 50%; font-size: 1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }

  .modal-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
  .modal-logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg,var(--gold),var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Roboto Mono', monospace; font-size: 0.65rem; font-weight: 700; color: var(--navy); }
  .modal-logo span { font-size: 1rem; font-weight: 600; }
  .modal-logo span em { color: var(--gold); font-style: normal; }

  .modal-tabs { display: flex; gap: 0; margin-bottom: 1.8rem; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 4px; }
  .modal-tab {
    flex: 1; padding: 0.5rem; text-align: center;
    font-size: 0.85rem; font-weight: 500; cursor: pointer;
    border-radius: 6px; transition: all 0.2s; color: var(--text-muted);
    border: none; background: transparent;
  }
  .modal-tab.active { background: rgba(201,168,76,0.15); color: var(--gold); }

  .modal-form { display: none; flex-direction: column; gap: 1rem; }
  .modal-form.active { display: flex; }

  .form-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.2rem; }
  .form-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }

  .form-group { display: flex; flex-direction: column; gap: 0rem; }
  .form-group label { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
  .form-group input, .form-group select {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); padding: 0.7rem 0.9rem; border-radius: 8px;
    font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus { border-color: rgba(201,168,76,0.5); }
  .form-group input::placeholder { color: var(--text-muted); }
  .form-group select option { background: #0d1e38; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .btn-form-submit {
    background: linear-gradient(135deg,var(--gold),var(--gold-light));
    color: var(--navy); border: none; padding: 0.85rem;
    border-radius: 8px; font-weight: 700; font-size: 0.95rem;
    cursor: pointer; transition: all 0.2s; margin-top: 0.25rem;
  }
  .btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

  .form-divider { display: flex; align-items: center; gap: 0.75rem; }
  .form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
  .form-divider span { font-size: 0.75rem; color: var(--text-muted); }

  .form-footer { text-align: center; font-size: 0.8rem; color: var(--text-muted); }
  .form-footer button { background: none; border: none; color: var(--gold); cursor: pointer; font-size: 0.8rem; font-family: inherit; }

  .role-select-row { display: flex; gap: 0.5rem; }
  .role-btn {
    flex: 1; padding: 0.6rem 0.4rem; border-radius: 8px; font-size: 0.78rem; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
    color: var(--text-muted); cursor: pointer; text-align: center; transition: all 0.2s;
  }
  .role-btn.active { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.1); color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes floatCard { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 12px)); } }
  @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.5); } }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 0.9rem 1.5rem; }
    .nav-center { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 6.5rem 2rem 4rem; }
    .hero-visual { display: flex;align-items: center; justify-content: center;  transform: none; margin-top: 15px!important; }
    .stats-band { padding: 1.8rem 2rem; grid-template-columns: repeat(2,1fr); }
    section { padding: 4rem 2rem; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .step::after { display: none; }
    .login-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-fixed-content { padding: 6rem 2rem 3rem; }
  }
  @media (max-width: 640px) {
    nav { padding: 0.8rem 1.2rem; }
    .btn-nav-login { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero { padding: 5.5rem 1.5rem 3.5rem; }
    .stats-band { padding: 1.2rem 1.5rem; gap: 0.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    section { padding: 3rem 1.5rem; }
    footer { padding: 0rem 1.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .slider-dots { left: 1.5rem; }
    .slider-arrow { display: none; }
    .hero-fixed-content { padding: 5.5rem 1.5rem 3rem; }
    .form-row { grid-template-columns: 1fr; }
  }
