/* =========================================================
   Schema Technologies Applied — Main Stylesheet
   Modern, Colourful, Mobile-First Design
   ========================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
    --navy:       #0A0F2C;
    --navy-light: #111836;
    --blue:       #2563EB;
    --blue-light: #3B82F6;
    --purple:     #7C3AED;
    --purple-light:#A855F7;
    --magenta:    #E91E8C;
    --magenta-light:#F06292;
    --orange:     #F59E0B;
    --orange-light:#FCD34D;
    --teal:       #06B6D4;
    --green:      #10B981;
    --white:      #FFFFFF;
    --off-white:  #F8F9FF;
    --text-main:  #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border:     rgba(255,255,255,0.1);
    --glass:      rgba(255,255,255,0.06);
    --glass-border:rgba(255,255,255,0.12);
    --shadow:     0 20px 60px rgba(0,0,0,0.3);
    --radius:     16px;
    --radius-sm:  8px;
    --radius-lg:  24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head:  'Space Grotesk', sans-serif;
    --font-body:  'Inter', sans-serif;
    --gradient-1: linear-gradient(135deg, #7C3AED 0%, #2563EB 50%, #06B6D4 100%);
    --gradient-2: linear-gradient(135deg, #E91E8C 0%, #7C3AED 100%);
    --gradient-3: linear-gradient(135deg, #F59E0B 0%, #E91E8C 100%);
    --gradient-hero: linear-gradient(135deg, #0A0F2C 0%, #1a1060 40%, #2d1b69 70%, #0A0F2C 100%);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.75; }

/* Hero headings — always white on dark background */
.hero h1,
.hero h2,
.page-hero h1,
.page-hero h2 {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ─── Navigation ─── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 15, 44, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 1rem;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 15, 44, 0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 13px;
    color: white;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(233,30,140,0.5);
    transition: var(--transition);
}
.nav-logo:hover { transform: scale(1.08); }
.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-brand-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-brand-sub {
    font-size: 10px;
    color: var(--magenta-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}
.nav-item {
    position: relative;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: white;
    background: rgba(255,255,255,0.08);
}
.nav-link.active { color: var(--magenta-light); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    z-index: 1001;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--gradient-2);
    color: white;
    transform: translateX(4px);
}
.dropdown-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.nav-cta {
    background: var(--gradient-2);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    box-shadow: 0 4px 15px rgba(233,30,140,0.4);
    transition: var(--transition) !important;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,140,0.5) !important;
    background: linear-gradient(135deg, #f06292, #9c27b0) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero Section ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}
.hero-canvas {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #7C3AED, transparent);
    top: -200px; right: -100px;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #E91E8C, transparent);
    bottom: -100px; left: -100px;
    animation-delay: -3s;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #06B6D4, transparent);
    top: 50%; left: 40%;
    animation-delay: -6s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Grid pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    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: 50px 50px;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 2rem 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233,30,140,0.15);
    border: 1px solid rgba(233,30,140,0.3);
    color: var(--magenta-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--magenta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    -webkit-text-fill-color: #ffffff;
    background: none;
}
.hero-title span,
.hero h1 span,
.page-hero h1 span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    display: inline;
}
.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--gradient-2);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(233,30,140,0.4);
    font-family: var(--font-body);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(233,30,140,0.5);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 580px;
}
.mockup-frame {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.mockup-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    align-items: center;
}
.mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.mockup-dot-1 { background: #FF5F57; }
.mockup-dot-2 { background: #FEBC2E; }
.mockup-dot-3 { background: #28C840; }
.mockup-img {
    border-radius: 12px;
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: #1a1060;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 6px;
    height: 100%;
    padding: 16px;
}
.mockup-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    padding: 4px;
    text-align: center;
}
.mockup-btn:hover { background: rgba(233,30,140,0.3); }
.hero-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.hero-stat-card {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.hero-stat-num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

/* ─── Page Hero (interior pages) ─── */
.page-hero {
    padding: 140px 2rem 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: left;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    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: 50px 50px;
}
.page-hero .hero-orb-1 { opacity: 0.2; }
.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 1rem;
}
.breadcrumb a { color: var(--magenta-light); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.5; }
.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ─── Sections ─── */
.section { padding: 100px 2rem; }
.section-dark { background: var(--navy); color: white; }
.section-light { background: var(--off-white); }
.section-white { background: white; }
.section-gradient { background: var(--gradient-1); color: white; }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title { margin-bottom: 1rem; }
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}
.section-header { margin-bottom: 3.5rem; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* ─── Cards ─── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.card:hover::before { transform: scaleX(1); }

.card-dark {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(10px);
}
.card-dark:hover { background: rgba(255,255,255,0.1); }

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.25rem;
}
.icon-blue    { background: rgba(37,99,235,0.1); }
.icon-purple  { background: rgba(124,58,237,0.1); }
.icon-magenta { background: rgba(233,30,140,0.1); }
.icon-orange  { background: rgba(245,158,11,0.1); }
.icon-teal    { background: rgba(6,182,212,0.1); }
.icon-green   { background: rgba(16,185,129,0.1); }
.card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.card p  { color: var(--text-muted); font-size: 0.9rem; }
.card-dark p { color: rgba(255,255,255,0.65); }

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.glass-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

/* ─── Stats Bar ─── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat-item {
    background: var(--navy-light);
    padding: 2rem;
    text-align: center;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 4px; }

/* ─── Module Features Grid ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.feature-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.feature-text h4 { margin-bottom: 4px; font-size: 15px; }
.feature-text p  { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

/* ─── Testimonials ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}
.testimonial-text {
    color: var(--text-main);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 14px;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-company { font-size: 12px; color: var(--text-muted); }

/* ─── Team ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.team-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem auto 1rem;
    box-shadow: 0 8px 20px rgba(124,58,237,0.3);
}
.team-header {
    height: 6px;
    background: var(--gradient-2);
}
.team-body { padding: 0 1.5rem 1.5rem; }
.team-name { font-size: 1.05rem; margin-bottom: 4px; }
.team-role { color: var(--magenta); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.team-region { color: var(--text-muted); font-size: 12px; }
.team-bio { color: var(--text-muted); font-size: 13px; margin-top: 0.75rem; line-height: 1.5; }

/* ─── FAQ Accordion ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--text-main);
    transition: color 0.2s;
    gap: 1rem;
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(124,58,237,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--purple);
}
.faq-item.open .faq-icon {
    background: var(--gradient-2);
    color: white;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
    padding-bottom: 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── Contact Form ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.contact-info-card {
    background: var(--gradient-hero);
    color: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: sticky;
    top: 100px;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-label { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-val { font-weight: 600; }
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-main);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--purple);
    background: white;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(233,30,140,0.4);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(233,30,140,0.5); }

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #065f46; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #7f1d1d; }

/* ─── CTA Banner ─── */
.cta-banner {
    background: var(--gradient-1);
    color: white;
    text-align: center;
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ─── Footer ─── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 80px 2rem 0;
}
.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 320px; }
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 13px;
    color: white;
    box-shadow: 0 0 20px rgba(233,30,140,0.4);
}
.footer-brand-name {
    font-family: var(--font-head);
    font-weight: 700;
    color: white;
    font-size: 14px;
}
.footer-brand-sub {
    font-size: 11px;
    color: var(--magenta-light);
    letter-spacing: 0.5px;
}
.footer-about {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}
.social-btn:hover { background: var(--gradient-2); border-color: transparent; color: white; transform: translateY(-2px); }
.footer-col h4 {
    font-family: var(--font-head);
    color: white;
    font-size: 14px;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--magenta-light); }
.footer-contact-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    margin-bottom: 10px;
}
.footer-contact-item span:first-child { color: var(--magenta-light); margin-top: 2px; }
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom a { color: var(--magenta-light); }

/* ─── Scroll to Top ─── */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 20px rgba(233,30,140,0.4);
    font-size: 18px;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(233,30,140,0.5); }

/* ─── Reveal Animation ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Module Page Layout ─── */
.module-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.module-layout.reverse { direction: rtl; }
.module-layout.reverse > * { direction: ltr; }
.module-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.module-screenshot {
    width: 100%;
    height: 340px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.module-screen-inner {
    width: 90%;
    height: 80%;
    background: #1a0e40;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
}
.module-screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    height: 100%;
}
.msb {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 9px;
    font-family: var(--font-head);
    font-weight: 600;
    text-align: center;
    padding: 3px;
}

/* ─── Requirements List ─── */
.req-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.req-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
}
.req-item::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── 404 Page ─── */
.not-found {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.not-found-num {
    font-size: 8rem;
    font-family: var(--font-head);
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.not-found h2 { color: white; margin: 1rem 0; }
.not-found p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* ─── Colours Highlight ─── */
.text-gradient {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-1 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-magenta { color: var(--magenta); }
.text-white   { color: white; }
.text-muted   { color: var(--text-muted); }
.fw-bold      { font-weight: 700; }
.mb-0         { margin-bottom: 0 !important; }

/* ─── Ribbon Badge ─── */
.ribbon {
    display: inline-block;
    background: var(--gradient-3);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

/* ─── Two-Col About Layout ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img-block {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.about-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    background: var(--gradient-2);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(233,30,140,0.4);
}
.about-img-accent-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
}
.about-img-accent-label { font-size: 12px; opacity: 0.9; }

/* ─── Process Steps ─── */
.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.step-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateX(4px); }
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}
.step-content h4 { font-size: 15px; margin-bottom: 4px; }
.step-content p  { font-size: 13px; color: var(--text-muted); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
    .module-layout { grid-template-columns: 1fr; }
    .module-layout.reverse { direction: ltr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-accent { display: none; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(10, 15, 44, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        overflow-x: hidden;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-link { padding: 14px 16px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-item:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }
    .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
        display: none !important;
        padding: 6px 8px;
        margin: 6px 12px 10px;
        min-width: auto;
        width: auto;
    }
    .nav-item.dropdown-open > .dropdown-menu {
        display: block !important;
    }
    .dropdown-item {
        padding: 10px 12px;
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.9);
        white-space: normal;
        border-radius: 6px;
    }
    .dropdown-item:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.12);
    }
    .nav-toggle { display: flex; }
    .nav-cta { margin: 8px 0; text-align: center; }
    .section { padding: 60px 1.25rem; }
    .page-hero { padding: 110px 1.25rem 60px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cards-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; }
    .nav-brand-text { display: none; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* ─── Floating WhatsApp Button ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: white;
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}
.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ─── Scroll Top Button ─── */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    z-index: 9990;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-light);
    color: white;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--purple);
    transform: translateY(-3px);
}

/* ─── Utility ─── */
.d-flex    { display: flex; }
.gap-1     { gap: 1rem; }
.mt-2      { margin-top: 2rem; }
.mt-3      { margin-top: 3rem; }
.text-center { text-align: center; }
.w-100     { width: 100%; }

