/* ==============================================
   AppTeky — Main Stylesheet
   Author: AppTeky
   Updated: 2026
   ============================================== */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary:       #6F15E5;
    --primary-dark:  #5510b8;
    --primary-light: #8c3ef7;
    --secondary:     #00D9FF;
    --dark:          #0A0E27;
    --dark-light:    #1a1f3a;
    --text:          #E8E9F3;
    --text-dim:      #A0A3BD;
    --accent:        #FF6B9D;
    --success:       #00E5A0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Header ───────────────────────────────── */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(111, 21, 229, 0.2);
    transition: all 0.3s ease;
}

/* Gradient accent line */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

header.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: white;
    background: rgba(111, 21, 229, 0.15);
}

/* ── Buttons ──────────────────────────────── */
.cta-button {
    padding: 0.65rem 1.4rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(111, 21, 229, 0.5);
}

.cta-button.secondary {
    background: transparent;
    border: 1.5px solid rgba(111, 21, 229, 0.6);
    color: var(--text);
}

.cta-button.secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ── Mobile Hamburger ─────────────────────── */
.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(111, 21, 229, 0.15);
    border: 1px solid rgba(111, 21, 229, 0.3);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(111, 21, 229, 0.3);
}

/* ── Hero Section ─────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(111, 21, 229, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark) 0%, #0d1130 100%);
    position: relative;
    overflow: hidden;
}

/* Animated mesh grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(111, 21, 229, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 21, 229, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Eyebrow pill */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 30px;
    padding: 0.35rem 1rem;
    margin-bottom: 1.25rem;
}

.hero-eyebrow span {
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #c8ccf7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Highlighted word in headline */
.hero-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-weight: 400;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* Chip tags */
.hero-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(111, 21, 229, 0.12);
    border: 1px solid rgba(111, 21, 229, 0.25);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Trust indicators */
.hero-trust {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-dim);
}

.hero-trust-item i {
    color: var(--success);
    font-size: 0.75rem;
}

/* ── Hero Animation Visual ────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 21, 229, 0.18) 0%, transparent 70%);
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1);    opacity: 0.7; }
    50%       { transform: scale(1.12); opacity: 1;   }
}

/* Phone frame */
.phone-frame {
    position: relative;
    width: 200px;
    height: 400px;
    background: linear-gradient(145deg, #1e2448, #131730);
    border-radius: 36px;
    border: 2px solid rgba(111, 21, 229, 0.5);
    box-shadow:
        0 0 0 6px rgba(111, 21, 229, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 60px rgba(111, 21, 229, 0.2);
    animation: phoneFloat 6s ease-in-out infinite;
    z-index: 2;
    overflow: hidden;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0)   rotate(-2deg); }
    50%       { transform: translateY(-18px) rotate(2deg); }
}

/* Phone notch */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(111, 21, 229, 0.4);
    border-radius: 3px;
    z-index: 3;
}

/* Phone screen */
.phone-screen {
    position: absolute;
    inset: 28px 8px 8px;
    border-radius: 24px;
    background: linear-gradient(160deg, #0f1228 0%, #1a1548 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px;
}

/* Animated screen content bars */
.screen-bar {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(111, 21, 229, 0.6), rgba(0, 217, 255, 0.4));
    animation: barLoad 2.5s ease-in-out infinite;
}

.screen-bar:nth-child(1) { width: 70%; animation-delay: 0s; }
.screen-bar:nth-child(2) { width: 50%; animation-delay: 0.2s; height: 6px; opacity: 0.6; }
.screen-bar:nth-child(3) {
    width: 100%; height: 50px; border-radius: 12px; animation: none;
    background: linear-gradient(135deg, rgba(111, 21, 229, 0.25), rgba(0, 217, 255, 0.1));
    border: 1px solid rgba(111, 21, 229, 0.2);
}
.screen-bar:nth-child(4) { width: 85%; height: 6px; animation-delay: 0.4s; opacity: 0.5; }
.screen-bar:nth-child(5) { width: 60%; height: 6px; animation-delay: 0.6s; opacity: 0.4; }
.screen-bar:nth-child(6) {
    width: 100%; height: 40px; border-radius: 10px; animation: none; margin-top: 4px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(111, 21, 229, 0.1));
    border: 1px solid rgba(0, 217, 255, 0.15);
}
.screen-bar:nth-child(7) { width: 40%; height: 6px; animation-delay: 0.8s; opacity: 0.3; }
.screen-bar:nth-child(8) {
    width: 90%; height: 30px; border-radius: 8px; animation: none;
    background: rgba(255, 107, 157, 0.12);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

@keyframes barLoad {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1;   }
}

/* Orbit rings */
.orbit-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px dashed rgba(111, 21, 229, 0.2);
    animation: orbitRotate 18s linear infinite;
    z-index: 1;
}

.orbit-ring-2 {
    width: 430px;
    height: 430px;
    border-color: rgba(0, 217, 255, 0.12);
    border-style: dotted;
    animation: orbitRotate 28s linear infinite reverse;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Orbit badges */
.orbit-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e2448, #131730);
    border: 1px solid rgba(111, 21, 229, 0.4);
    border-radius: 10px;
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.orbit-badge i { color: var(--primary-light); font-size: 0.8rem; }

/* Counter-rotate so badges stay upright */
.orbit-ring .orbit-badge  { animation: orbitRotate 18s linear infinite reverse; }
.orbit-ring-2 .orbit-badge { animation: orbitRotate 28s linear infinite; }

/* Badge positions on inner ring */
.orbit-ring .b1 { top: -18px; left: 50%; }
.orbit-ring .b2 { top: 50%; left: -52px; transform: translateY(-50%); animation: orbitRotate 18s linear infinite reverse; }
.orbit-ring .b3 { bottom: -18px; top: auto; left: 50%; transform: translateX(-50%); animation: orbitRotate 18s linear infinite reverse; }
.orbit-ring .b4 { top: 50%; right: -52px; left: auto; transform: translateY(-50%); animation: orbitRotate 18s linear infinite reverse; }

/* Badge positions on outer ring */
.orbit-ring-2 .b5 { top: -18px; left: 50%; }
.orbit-ring-2 .b6 { bottom: -18px; top: auto; left: 50%; transform: translateX(-50%); animation: orbitRotate 28s linear infinite; }

/* ── General Section Styles ───────────────── */
section {
    padding: 5rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2,
.section-header h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white, var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-dim);
}

/* ── About Section ────────────────────────── */
.about {
    background: var(--dark-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    background: var(--dark);
    border: 1px solid rgba(111, 21, 229, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(111, 21, 229, 0.2);
    transform: translateY(-4px);
}

.stat-card .stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ── Packages Section ─────────────────────── */
.packages {
    background: var(--dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
    padding-top: 1.5rem;
}

.package-card {
    background: linear-gradient(145deg, #1a1f3a 0%, #13182e 100%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.75rem 2.5rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(111, 21, 229, 0.06) 0%, rgba(0, 217, 255, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.package-card.featured {
    border-color: var(--primary);
    transform: scale(1.04);
    box-shadow: 0 25px 70px rgba(111, 21, 229, 0.35), inset 0 0 0 1px rgba(111, 21, 229, 0.5);
    background: linear-gradient(145deg, #1f1548 0%, #1a1f3a 100%);
}

.package-card:hover {
    transform: translateY(-12px);
    border-color: rgba(111, 21, 229, 0.7);
    box-shadow: 0 30px 60px rgba(111, 21, 229, 0.4), 0 0 80px rgba(111, 21, 229, 0.1);
}

.package-card.featured:hover {
    transform: scale(1.04) translateY(-12px);
}

/* Glowing top strip */
.package-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.6;
}

.package-card.featured .package-strip { opacity: 1; }

/* "MOST POPULAR" badge */
.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B9D, #ff4081);
    color: white;
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
    white-space: nowrap;
    z-index: 10;
}

.package-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.icon-starter  { background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(0, 217, 255, 0.05)); color: var(--secondary); }
.icon-business { background: linear-gradient(135deg, rgba(111, 21, 229, 0.3), rgba(140, 62, 247, 0.15)); color: var(--primary-light); }
.icon-maintain { background: linear-gradient(135deg, rgba(0, 229, 160, 0.15), rgba(0, 229, 160, 0.05)); color: var(--success); }

.package-header {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: -0.3px;
}

.package-price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, #ffffff, #c8caff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price span {
    font-size: 1rem;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-dim);
    color: var(--text-dim);
}

.package-old-price {
    font-size: 0.95rem;
    color: var(--text-dim);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.package-savings {
    display: inline-block;
    background: rgba(0, 229, 160, 0.15);
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 1.75rem;
}

.package-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text);
    font-size: 0.975rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.package-features .feature:last-child { border-bottom: none; }

.package-features .feature i {
    color: var(--success);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-value-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.package-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: rgba(111, 21, 229, 0.12);
    border: 1px solid rgba(111, 21, 229, 0.25);
    border-radius: 12px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.package-button {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.package-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.package-button:hover::after { left: 100%; }

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(111, 21, 229, 0.6);
}

.package-button.secondary {
    background: transparent;
    border: 2px solid rgba(111, 21, 229, 0.6);
    color: var(--primary-light);
}

.package-button.secondary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ── Process Flow ─────────────────────────── */
.process-flow {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--dark-light);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-flow h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-light);
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    background: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text);
    border: 2px solid var(--primary);
    min-width: 120px;
}

.flow-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ── Services Section ─────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(111, 21, 229, 0.4);
    box-shadow: 0 20px 50px rgba(111, 21, 229, 0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(111, 21, 229, 0.2), rgba(0, 217, 255, 0.1));
    color: var(--primary-light);
    flex-shrink: 0;
}

.service-card h4 { font-size: 1.2rem; font-weight: 700; color: white; margin: 0; }
.service-card p  { color: var(--text-dim); line-height: 1.7; font-size: 0.975rem; margin: 0; }

/* ── Why Us Section ───────────────────────── */
.why-us {
    background: var(--dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.feature-item {
    background: var(--dark);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(0, 217, 255, 0.05));
    color: var(--secondary);
}

.feature-item h4 { font-size: 1.2rem; font-weight: 700; color: white; margin: 0; }
.feature-item p  { color: var(--text-dim); line-height: 1.7; font-size: 0.975rem; margin: 0; }

/* ── FAQ / Accordion ──────────────────────── */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after { transform: rotate(45deg); }
.accordion-header:hover { color: var(--primary-light); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content { max-height: 500px; }

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* ── Contact Section ──────────────────────── */
.contact {
    background: linear-gradient(135deg, #12163a 0%, var(--dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(111, 21, 229, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact .section-header p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-detail-strip {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-detail-strip a,
.contact-detail-strip span {
    color: var(--text-dim);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-detail-strip a:hover { color: var(--primary-light); }
.contact-detail-strip i { color: var(--primary-light); }

/* ── Footer ───────────────────────────────── */
footer {
    background: #080b1e;
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo img { width: 28px; height: 28px; object-fit: contain; }

.footer-logo span {
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copyright p { color: var(--text-dim); font-size: 0.9rem; }

/* ============================================
   RESPONSIVE — TABLET 1024px
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1         { font-size: 2.8rem; }
    .hero-text p          { max-width: 100%; }
    .hero-eyebrow,
    .hero-trust           { justify-content: center; }
    .hero-buttons         { justify-content: center; }
    .hero-text h2         { justify-content: center; }

    .hero-visual {
        height: 380px;
        order: -1;
    }

    .phone-frame   { width: 165px; height: 330px; }
    .orbit-ring    { width: 260px; height: 260px; }
    .orbit-ring-2  { width: 350px; height: 350px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .package-card.featured          { transform: scale(1); }
    .package-card.featured:hover    { transform: translateY(-10px); }
}

/* ============================================
   RESPONSIVE — MOBILE 768px
   ============================================ */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        max-height: 0;
        background: rgba(13, 17, 48, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
        border-bottom: 1px solid rgba(111, 21, 229, 0.2);
        padding: 0 1rem;
        gap: 0;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 400px;
        padding: 0.75rem 1rem 1rem;
    }

    .nav-links li a {
        display: block;
        padding: 0.85rem 1rem;
        border-radius: 10px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child a { border-bottom: none; }

    .menu-toggle { display: flex; }
    .nav-container > .cta-button { display: none; }

    /* Hero */
    section { padding: 3.5rem 1.25rem; }
    .hero   { padding: 5rem 1.25rem 3.5rem; }

    .hero-eyebrow { font-size: 0.72rem; }

    .hero-text h1 { font-size: 2.1rem; line-height: 1.2; }
    .hero-text h2 { font-size: 0.82rem; gap: 0.4rem; }

    .hero-tag { font-size: 0.72rem; padding: 0.2rem 0.55rem; }

    .hero-text p { font-size: 0.975rem; line-height: 1.75; }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .hero-buttons .cta-button {
        justify-content: center;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .hero-trust      { gap: 0.75rem; }
    .hero-trust-item { font-size: 0.8rem; }

    .hero-visual { height: 300px; }

    .phone-frame  { width: 140px; height: 280px; border-radius: 28px; }
    .orbit-ring   { width: 210px; height: 210px; }
    .orbit-ring-2 { width: 280px; height: 280px; }
    .orbit-badge  { font-size: 0.65rem; padding: 0.3rem 0.55rem; }

    /* Sections */
    .section-header           { margin-bottom: 2.5rem; }
    .section-header h2,
    .section-header h3        { font-size: 1.75rem; }
    .section-header p         { font-size: 1rem; }

    /* About */
    .about-stats      { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-card        { padding: 1.25rem 1rem; }
    .stat-card .stat-num { font-size: 2rem; }

    /* Packages */
    .packages-grid        { grid-template-columns: 1fr; gap: 1.25rem; padding-top: 1.5rem; }
    .package-card         { padding: 2rem 1.5rem; }
    .package-card.featured { transform: scale(1); }

    /* Services & Features */
    .services-grid,
    .features-grid        { grid-template-columns: 1fr; gap: 1rem; }
    .service-card,
    .feature-item         { padding: 1.5rem; }

    /* Process Flow */
    .flow-steps   { flex-direction: column; align-items: center; gap: 0.5rem; }
    .flow-arrow   { transform: rotate(90deg); }
    .process-flow { padding: 2rem 1.25rem; }

    /* FAQ */
    .accordion-header { padding: 1.25rem; font-size: 0.975rem; }

    /* Contact */
    .contact-buttons           { flex-direction: column; align-items: stretch; }
    .contact-buttons .cta-button { justify-content: center; }
    .contact-detail-strip      { gap: 1rem; flex-direction: column; align-items: center; }

    /* Footer */
    .footer-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
}

/* ============================================
   RESPONSIVE — SMALL 480px
   ============================================ */
@media (max-width: 480px) {
    .nav-container { padding: 0.75rem 1rem; }
    .logo img      { width: 30px; height: 30px; }
    .logo h1       { font-size: 1.2rem; }

    .hero          { padding: 4.5rem 1rem 3rem; }
    .hero-text h1  { font-size: 1.85rem; }

    .section-header h2,
    .section-header h3 { font-size: 1.6rem; }

    .package-card { padding: 1.75rem 1.25rem; }
    .packages-grid { gap: 1rem; }

    .contact-detail-strip { font-size: 0.85rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }
}

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
