/**
 * Team1 Design — Custom Overrides
 * Add your custom CSS here. This file loads after template.css
 * and will not be overwritten on template updates.
 * ================================================================ */

html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
  }

  body.rsform {background: #fff;}

  a { text-decoration: none; color: inherit; }

  /* ── NAV ── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    height: 72px;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em;
  }

  .nav-logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-weight: 800; font-size: 0.9rem; color: #fff;
  }

  .nav-links {
    display: flex; align-items: center; gap: 0;
    list-style: none;
  }

  .nav-links a {
    padding: 8px 18px;
    font-size: 0.88rem; font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.25s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #fff;
    background: rgba(0, 229, 255, 0.08);
  }

  .nav-links a.active { color: var(--cyan); }

  .nav-cta {
    padding: 10px 22px;
    background: transparent;
    border: 1.5px solid var(--cyan);
    color: var(--cyan);
    font-family: var(--font-main);
    font-size: 0.85rem; font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .nav-cta:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
  }

  .nav-hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 8px;
  }

  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center;
    padding: 120px clamp(1.5rem, 4vw, 4rem) 80px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #0a0e1a 0%, #0d1a2e 40%, #12082e 70%, #0a0e1a 100%);
  }

  /* Animated wave canvas substitute using CSS */
  .hero-waves {
    position: absolute; bottom: 0; left: 0; right: 0; height: 65%;
    overflow: hidden; pointer-events: none;
  }

  .wave-line {
    position: absolute; width: 200%; height: 2px; left: -50%;
    border-radius: 50%;
    animation: waveFloat 8s ease-in-out infinite;
  }

  @keyframes waveFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(2%) translateY(-12px); }
    50% { transform: translateX(-1%) translateY(6px); }
    75% { transform: translateX(-3%) translateY(-8px); }
  }

  .hero-content {
    position: relative; z-index: 2;
    /*max-width: 620px;*/
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
  }

  .hero-content h1 span {
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
  }

  .btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
    color: var(--bg-dark);
    font-family: var(--font-main);
    font-size: 0.92rem; font-weight: 700;
    border: none; border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.25);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.4);
  }

  .btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.92rem; font-weight: 600;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
  }

  .hero-graphic {
    position: absolute; right: clamp(2rem, 8vw, 10rem); top: 50%;
    transform: translateY(-50%);
    width: clamp(200px, 22vw, 320px);
    height: clamp(200px, 22vw, 320px);
    z-index: 2;
  }

  .hero-graphic-inner {
    width: 100%; height: 100%;
    background: rgba(15, 20, 41, 0.7);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    backdrop-filter: blur(8px);
  }

  .hero-graphic-inner::before {
    content: '';
    position: absolute; inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--cyan), transparent, var(--purple));
    z-index: -1;
    opacity: 0.5;
  }

  .t1-logo-hero {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* dots decoration */
  .hero-graphic-inner .dots {
    position: absolute; top: 14px; left: 18px;
    display: flex; gap: 6px;
  }

  .hero-graphic-inner .dots span {
    width: 8px; height: 8px; border-radius: 50%;
  }

  .hero-graphic-inner .dots span:nth-child(1) { background: #ff5f57; }
  .hero-graphic-inner .dots span:nth-child(2) { background: #ffbd2e; }
  .hero-graphic-inner .dots span:nth-child(3) { background: #28ca41; }

  /* ── SECTION COMMON ── */
  section { padding: 80px clamp(1.5rem, 4vw, 4rem); }

  .section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 3rem;
  }

  /* ── CAPABILITIES ── */
  .capabilities {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .cap-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(15, 20, 41, 0.5);
    transition: all 0.35s;
  }

  .cap-card:hover {
    border-color: var(--cyan);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.08);
  }

  .cap-icon {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 77, 255, 0.08));
    border: 1.5px solid var(--cyan);
    display: flex; align-items: center; justify-content: center;
  }

  .cap-icon svg {
    width: 30px; height: 30px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cap-card h3 {
    font-size: 1rem; font-weight: 700;
    margin-bottom: 6px;
  }

  .cap-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
  }

  /* ── LOGO BAR ── */
  .logo-bar {
    padding: 28px clamp(1.5rem, 4vw, 4rem);
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    gap: clamp(20px, 4vw, 48px);
    flex-wrap: wrap;
    overflow: hidden;
  }

  .logo-bar-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex; align-items: center; gap: 8px;
  }

  .logo-bar-label svg { width: 16px; height: 16px; fill: var(--text-muted); }

  .client-logo {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    white-space: nowrap;
    letter-spacing: 0.04em;
    transition: opacity 0.3s;
  }

  .client-logo:hover { opacity: 1; }

  /* ── STATS ── */
  .stats {
    padding: 48px clamp(1.5rem, 4vw, 4rem);
    background: var(--bg-dark);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
    border: 1.5px solid var(--cyan);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(124, 77, 255, 0.03));
  }

  .stat-item {
    text-align: center;
    padding: 36px 20px;
  }

  .stat-item + .stat-item {
    border-left: 1px solid var(--border);
  }

  .stat-number {
    font-family: var(--font-mono);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--cyan);
    line-height: 1.2;
  }

  .stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 4px;
  }

  /* ── SERVICES (NEW SECTION) ── */
  .services {
    background: var(--bg-dark);
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .services .section-title span {
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .services-grid , .t1-grid.t1-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .service-card , .t1-pricing {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px 36px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .service-card::before , {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    opacity: 0;
    transition: opacity 0.4s;
  }

  .service-card:hover::before { opacity: 1; }

  .service-card:hover , .t1-pricing:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.08), 0 0 0 1px rgba(0, 229, 255, 0.06);
  }

  .service-badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .badge-starter {
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 229, 255, 0.2);
  }

  .badge-pro {
    background: rgba(124, 77, 255, 0.1);
    color: var(--purple);
    border: 1px solid rgba(124, 77, 255, 0.2);
  }

  .badge-enterprise {
    background: rgba(224, 64, 251, 0.1);
    color: var(--magenta);
    border: 1px solid rgba(224, 64, 251, 0.2);
  }

  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
  }

  .service-icon svg {
    width: 28px; height: 28px;
    fill: none; stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
  }

  .service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
    border: 1px solid rgba(0, 229, 255, 0.2);
  }
  .service-card:nth-child(1) .service-icon svg { stroke: var(--cyan); }

  .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(124, 77, 255, 0.05));
    border: 1px solid rgba(124, 77, 255, 0.2);
  }
  .service-card:nth-child(2) .service-icon svg { stroke: var(--purple); }

  .service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.15), rgba(224, 64, 251, 0.05));
    border: 1px solid rgba(224, 64, 251, 0.2);
  }
  .service-card:nth-child(3) .service-icon svg { stroke: var(--magenta); }

  .service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .service-card > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .service-features {
    list-style: none;
    margin-bottom: 28px;
  }

  .service-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex; align-items: center; gap: 10px;
  }

  .service-features li:last-child { border-bottom: none; }

  .service-features li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .service-card:nth-child(1) .service-features li::before { background: var(--cyan); }
  .service-card:nth-child(2) .service-features li::before { background: var(--purple); }
  .service-card:nth-child(3) .service-features li::before { background: var(--magenta); }

  .service-price {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .service-card:nth-child(1) .service-price { color: var(--cyan); }
  .service-card:nth-child(2) .service-price { color: var(--purple); }
  .service-card:nth-child(3) .service-price { color: var(--magenta); }

  .service-price-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .service-btn {
    display: block; width: 100%;
    padding: 13px;
    text-align: center;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .service-card:nth-child(1) .service-btn {
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
    border: 1.5px solid rgba(0, 229, 255, 0.25);
  }
  .service-card:nth-child(1) .service-btn:hover {
    background: var(--cyan); color: var(--bg-dark);
    box-shadow: 0 0 28px rgba(0, 229, 255, 0.3);
  }

  .service-card:nth-child(2) .service-btn {
    background: linear-gradient(135deg, var(--purple), var(--purple-dim));
    color: #fff;
  }
  .service-card:nth-child(2) .service-btn:hover {
    box-shadow: 0 0 28px rgba(124, 77, 255, 0.4);
    transform: translateY(-1px);
  }

  .service-card:nth-child(3) .service-btn {
    background: rgba(224, 64, 251, 0.1);
    color: var(--magenta);
    border: 1.5px solid rgba(224, 64, 251, 0.25);
  }
  .service-card:nth-child(3) .service-btn:hover {
    background: var(--magenta); color: #fff;
    box-shadow: 0 0 28px rgba(224, 64, 251, 0.3);
  }

  /* popular ribbon */
  .service-card.popular {
    border-color: rgba(124, 77, 255, 0.3);
    box-shadow: 0 0 40px rgba(124, 77, 255, 0.06);
  }

  .service-card.popular::before { opacity: 1; background: linear-gradient(90deg, var(--purple), var(--magenta)); }

  /* ── FOOTER ── */
  .footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 60px clamp(1.5rem, 4vw, 4rem) 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 48px;
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 14px 0 20px;
    line-height: 1.65;
  }

  .subscribe-form {
    display: flex; gap: 0;
  }

  .subscribe-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.3s;
  }

  .subscribe-form input:focus { border-color: var(--cyan); }

  .subscribe-form input::placeholder { color: var(--text-muted); }

  .subscribe-form button {
    padding: 10px 20px;
    background: var(--cyan);
    color: var(--bg-dark);
    border: none;
    border-radius: 0 8px 8px 0;
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
  }

  .subscribe-form button:hover { background: #00fff7; }

  .footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li { margin-bottom: 10px; }

  .footer-col ul a {
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: color 0.25s;
  }

  .footer-col ul a:hover { color: var(--cyan); }

  .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  .social-links {
    display: flex; gap: 12px;
  }

  .social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }

  .social-links a:hover {
    background: var(--cyan);
  }

  .social-links a svg {
    width: 16px; height: 16px;
    fill: var(--text-secondary);
    transition: fill 0.3s;
  }

  .social-links a:hover svg { fill: var(--bg-dark); }

  /* ── WAVE LINES ── */
  .wave-container {
    position: absolute; bottom: 5%; left: 0; right: 0; height: 60%;
    pointer-events: none; overflow: hidden;
  }

  .wave-svg {
    position: absolute; width: 100%; height: 100%;
  }

  .cards {
    text-align: center;
    background: #ffffff;
    padding: 20px;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    opacity: 0;
    animation: fadeUp 0.7s ease-out forwards;
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }
  .delay-5 { animation-delay: 0.5s; }

/*Form*/

label.formControlLabel {font-weight: bold !important;}

#fetures-grouplbl {
      color: #000;
    display: block;
    margin: 40px 0 10px;
    font-weight: bold;
}

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-graphic { display: none; }
    .cap-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid .service-card:nth-child(3) {
      grid-column: 1 / -1;
      max-width: 400px;
      margin: 0 auto;
    }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 72px; left: 0; right: 0;
      background: rgba(10, 14, 26, 0.97);
      backdrop-filter: blur(16px);
      padding: 20px;
      border-bottom: 1px solid var(--border);
    }

    .cap-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .services-grid .service-card:nth-child(3) { max-width: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); }
    .footer-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    .hero { min-height: 80vh; padding-top: 100px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; text-align: center; }
  }