/* ============================================
   DIGITAL TIRUPATI MEDIA — LANDING PAGE
   Main Stylesheet
   ============================================ */

:root {
    --purple: #8B2FC9;
    --purple-dark: #6B21A8;
    --magenta: #C026D3;
    --orange: #FF8C00;
    --gradient-logo: linear-gradient(135deg, #8B2FC9, #C026D3);
    --gradient-cta: linear-gradient(135deg, #8B2FC9, #C026D3 50%, #FF8C00);
    --bg-base: #FFFFFF;
    --bg-surface: #FAFAFB;
    --bg-surface-light: #F4F4F7;
    --text-primary: #1A1A1F;
    --text-secondary: #555560;
    --text-muted: #888896;
    --border-color: #E5E5EB;
    --shadow-sm: 0 2px 8px rgba(139, 47, 201, 0.06);
    --shadow-md: 0 8px 24px rgba(139, 47, 201, 0.12);
    --shadow-lg: 0 20px 50px rgba(139, 47, 201, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-base: #0F0A1F;
    --bg-surface: #1A1428;
    --bg-surface-light: #221A35;
    --text-primary: #F5F0FF;
    --text-secondary: #B8B0C8;
    --text-muted: #807890;
    --border-color: #2E2544;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.gradient-text {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

[data-theme="dark"] .site-nav {
    background: rgba(15, 10, 31, 0.85);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.nav-logo img {
    width: 40px; height: 40px;
    object-fit: contain;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--purple);
    background: rgba(139, 47, 201, 0.06);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-nav-login {
    padding: 9px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.btn-nav-login:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.btn-nav-cta {
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    color: white;
    background: var(--gradient-logo);
    box-shadow: 0 4px 15px rgba(139, 47, 201, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 47, 201, 0.45);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 140px 30px 60px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-a {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #8B2FC9, transparent);
    top: -100px; right: -100px;
}
.orb-b {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #FF8C00, transparent);
    bottom: -100px; left: -80px;
    animation-delay: 2s;
}
.orb-c {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #C026D3, transparent);
    top: 40%; left: 40%;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(139, 47, 201, 0.08);
    border: 1px solid rgba(139, 47, 201, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 25px;
    font-family: 'Sora', sans-serif;
}

.pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--purple);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 14px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-hero-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 47, 201, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 47, 201, 0.5);
}

.btn-hero-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
}

.btn-hero-secondary:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hs-value {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}

.hs-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Platform Marquee */
.hero-marquee {
    margin-top: 60px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.hero-track {
    display: flex;
    gap: 20px;
    animation: scrollHero 40s linear infinite;
    width: max-content;
    padding: 10px 0;
}

@keyframes scrollHero {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-platform {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.hero-platform img {
    width: 100%; height: 100%;
    object-fit: contain;
}

.hero-platform:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--purple);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 47, 201, 0.08);
    border: 1px solid rgba(139, 47, 201, 0.2);
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Sora', sans-serif;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 30px;
    background: var(--bg-surface);
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-logo);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 47, 201, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-card p strong {
    color: var(--purple);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-list i {
    color: #10B981;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   DISTRIBUTION
   ============================================ */
.distribution {
    padding: 100px 30px;
    background: var(--bg-base);
}

.dist-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.dist-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: var(--transition);
    cursor: default;
}

.dist-platform img {
    width: 30px; height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.dist-platform span {
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dist-platform:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple);
}

.dist-cta {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.dist-cta strong {
    color: var(--purple);
    font-weight: 700;
}

/* ============================================
   TEAM
   ============================================ */
.team {
    padding: 100px 30px;
    background: var(--bg-surface);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 47, 201, 0.3);
}

.team-photo {
    width: 140px; height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-base);
    box-shadow: 0 8px 25px rgba(139, 47, 201, 0.2);
    position: relative;
}

.team-photo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-logo);
    z-index: -1;
}

.team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.82rem;
    color: var(--purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: 100px 30px;
    background: var(--bg-base);
}

.reviews-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px; right: 20px;
    font-size: 5rem;
    font-family: 'Sora', sans-serif;
    color: rgba(139, 47, 201, 0.08);
    line-height: 1;
    font-weight: 800;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(139, 47, 201, 0.2);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    color: #FBBF24;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-logo);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.review-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 30px;
    background: var(--bg-surface);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--purple);
    transform: translateX(4px);
}

.ci-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient-logo);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
    margin-bottom: 4px;
}

.contact-item p, .contact-item a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--purple);
}

.contact-form {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-family: 'Sora', sans-serif;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-base);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(139, 47, 201, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-contact {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: var(--gradient-cta);
    color: white;
    border: none;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(139, 47, 201, 0.3);
    transition: var(--transition);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139, 47, 201, 0.45);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #1A0E2E 0%, #0F0A1F 100%);
    color: #C4B5E0;
    padding: 70px 30px 20px;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: 60px; height: 60px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #B8B0C8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #C4B5E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--gradient-logo);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 47, 201, 0.4);
}

.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: #B8B0C8;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--magenta);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.86rem;
    color: #B8B0C8;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--magenta);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact a {
    color: #B8B0C8;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.82rem;
    color: #807890;
}

.footer-bottom a {
    color: #B8B0C8;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--magenta);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px; right: 25px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* Theme toggle */
.theme-toggle {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 1001;
    width: 60px; height: 30px;
    border-radius: 30px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    transition: var(--transition);
}

.theme-toggle .toggle-knob {
    position: absolute;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--gradient-logo);
    transition: var(--transition);
    left: 3px;
}

[data-theme="dark"] .theme-toggle .toggle-knob {
    left: 33px;
}

.theme-toggle i {
    font-size: 0.7rem;
    color: var(--text-muted);
    z-index: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--bg-base);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        gap: 4px;
        align-items: stretch;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 16px;
        text-align: left;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .btn-nav-login {
        display: none;
    }
    
    .nav-logo span {
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 120px 20px 50px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .team-grid,
    .reviews-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .dist-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .dist-platform {
        padding: 10px 12px;
    }
    
    .dist-platform span {
        font-size: 0.75rem;
    }
    
    .contact-form {
        padding: 22px;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s;
    min-width: 260px;
    max-width: 400px;
    pointer-events: auto;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.toast-success {
    border-left: 4px solid #10B981;
}
.toast-success i { color: #10B981; }

.toast-error {
    border-left: 4px solid #DC2626;
}
.toast-error i { color: #DC2626; }

.toast-info {
    border-left: 4px solid var(--purple);
}
.toast-info i { color: var(--purple); }

@media (max-width: 640px) {
    .toast-container {
        left: 15px;
        right: 15px;
        bottom: 90px;
    }
    .toast {
        width: 100%;
        max-width: none;
    }
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    padding: 140px 30px 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(139,47,201,0.12), transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 15px 0;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SECTIONS — Consistent Padding
   ============================================ */
.section {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--gradient-cta);
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(139,47,201,0.3);
    transition: var(--transition);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139,47,201,0.45);
}

/* ============================================
   SERVICE CARD LINK
   ============================================ */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: var(--purple);
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-card {
    background: var(--gradient-cta);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(139,47,201,0.35);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SERVICE FULL CARD (Services Page)
   ============================================ */
.services-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-full-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.service-full-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gradient-logo);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.service-full-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139,47,201,0.25);
}

.service-full-card:hover::before {
    transform: scaleY(1);
}

.service-full-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.service-full-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-full-content > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.service-features i {
    color: #10B981;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--gradient-logo);
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-service-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(139,47,201,0.35);
}

/* ============================================
   PLATFORM CATEGORIES (Platforms Page)
   ============================================ */
.platform-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-primary);
}

.platforms-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: var(--transition);
}

.platform-card-icon {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.platform-card-icon img {
    width: 100%; height: 100%;
    object-fit: contain;
}

.platform-card span {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple);
}

.platform-cta {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.platform-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.platform-cta p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* ============================================
   TEAM FULL CARD (Team Page)
   ============================================ */
.team-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card-full {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.team-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139,47,201,0.3);
}

.team-photo-full {
    width: 160px; height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-base);
    box-shadow: 0 10px 30px rgba(139,47,201,0.25);
    position: relative;
}

.team-photo-full::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-logo);
    z-index: -1;
}

.team-photo-full img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.team-card-full h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.team-social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.team-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gradient-logo);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.about-stat {
    text-align: center;
}

.as-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.as-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    padding: 30px 25px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple);
}

.value-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--gradient-logo);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(139,47,201,0.3);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: rotate(15deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .service-full-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-full-icon {
        margin: 0 auto;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 110px 20px 40px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .cta-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons > * {
        width: 100%;
        justify-content: center;
    }
    
    .service-full-card {
        padding: 25px 20px;
    }
    
    .platforms-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .team-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NAV LOGO TEXT
   ============================================ */
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text span {
    font-size: 1rem;
    font-weight: 800;
}

.nav-logo-text small {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   NAV LINKS ACTIVE STATE
   ============================================ */
.nav-links a.active {
    color: var(--purple);
    background: rgba(139, 47, 201, 0.08);
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--gradient-logo);
    border-radius: 2px;
}
/* Reveal animation */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Nav scrolled state */
.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
[data-theme="dark"] .site-nav.scrolled {
    background: rgba(15, 10, 31, 0.95);
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s;
    min-width: 260px;
    pointer-events: auto;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { border-left: 4px solid #10B981; }
.toast-success i { color: #10B981; }
.toast-error { border-left: 4px solid #DC2626; }
.toast-error i { color: #DC2626; }
.toast-info { border-left: 4px solid var(--purple); }
.toast-info i { color: var(--purple); }

@media (max-width: 640px) {
    .toast-container { left: 15px; right: 15px; bottom: 90px; }
    .toast { width: 100%; }
}