/* =========================================================================
   SOLTECTOS CSS ARCHITECTURE — Premium Mobile-First Design
   ========================================================================= */

/* --- 1. DESIGN TOKENS --- */
:root {
    --blue-primary: #1E3A8A;
    --blue-secondary: #3B82F6;
    --orange-accent: #F97316;
    --orange-accent-hover: #EA580C;
    --dark-text: #1F2937;
    --gray-mid: #6B7280;
    --bg-dim: #F9FAFB;
    --bg-white: #FFFFFF;

    --font-display: 'Playfair Display', serif;
    --font-sans: 'Source Sans 3', sans-serif;

    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
    --text-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --text-xxl: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);

    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 64px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-float: 0 10px 40px rgba(30, 58, 138, 0.08);
    --shadow-glow: 0 10px 25px rgba(249, 115, 22, 0.25);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
    --blue-primary: #93C5FD;
    --blue-secondary: #60A5FA;
    --orange-accent: #F97316;
    --orange-accent-hover: #EA580C;
    --dark-text: #F3F4F6;
    --gray-mid: #9CA3AF;
    --bg-dim: #111827;
    --bg-white: #1F2937;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-float: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Base body transition for smooth dark mode swapping */
body {
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

/* Navigation button overrides in dark mode */
[data-theme="dark"] .btn-secondary-action {
    background: #374151;
    color: var(--blue-primary);
    box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.3), -6px -6px 14px rgba(75, 85, 99, 0.2);
}

[data-theme="dark"] .btn-secondary-action:hover {
    background: #4B5563;
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.3), -6px -6px 14px rgba(75, 85, 99, 0.3);
}

[data-theme="dark"] .navbar {
    background-color: rgba(31, 41, 55, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .mobile-overlay {
    background: var(--bg-dim);
}

[data-theme="dark"] .mobile-link {
    background: transparent;
    color: var(--dark-text);
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .mobile-link:hover {
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .close-menu-btn {
    background: #374151;
    box-shadow: none;
}

[data-theme="dark"] .hero-badge {
    background-color: rgba(147, 197, 253, 0.1);
}

[data-theme="dark"] .price-box,
[data-theme="dark"] .service-card-full {
    background: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .feature-list li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--dark-text);
}

[data-theme="dark"] .tag-label {
    background: rgba(255, 255, 255, 0.1);
}

/* End Dark Mode overrides */

/* --- 2. RESETS --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-sans);
    color: var(--dark-text);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html.menu-open {
    overflow: hidden;
    height: 100%;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--blue-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

#precios .container {
    max-width: 1440px;
    padding: 0 16px;
}

.bg-dim {
    background-color: var(--bg-dim);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--bg-white) !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* --- 3. BUTTONS (Neumorphic Design) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: 16px;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-large {
    padding: 18px 40px;
    font-size: var(--text-lg);
}

.btn-block {
    width: 100%;
}

/* Neumorphic Primary (Orange CTA) */
.btn-primary-action {
    background: linear-gradient(145deg, #fa8132, #e0670e);
    color: var(--bg-white);
    box-shadow:
        6px 6px 14px rgba(234, 88, 12, 0.35),
        -4px -4px 10px rgba(255, 180, 120, 0.25);
}

.btn-primary-action:hover {
    background: linear-gradient(145deg, #e0670e, #fa8132);
    transform: translateY(-2px);
    box-shadow:
        8px 8px 18px rgba(234, 88, 12, 0.4),
        -4px -4px 12px rgba(255, 180, 120, 0.3);
}

.btn-primary-action:active {
    transform: translateY(1px);
    box-shadow:
        inset 3px 3px 8px rgba(180, 60, 0, 0.3),
        inset -2px -2px 6px rgba(255, 180, 120, 0.15);
}

/* Neumorphic Secondary */
.btn-secondary-action {
    background: #f0f2f5;
    color: var(--blue-primary);
    border: none;
    box-shadow:
        6px 6px 14px rgba(0, 0, 0, 0.08),
        -6px -6px 14px rgba(255, 255, 255, 0.9);
}

.btn-secondary-action:hover {
    background: #e8eaef;
    transform: translateY(-2px);
    box-shadow:
        8px 8px 18px rgba(0, 0, 0, 0.1),
        -6px -6px 14px rgba(255, 255, 255, 1);
}

.btn-secondary-action:active {
    transform: translateY(1px);
    box-shadow:
        inset 3px 3px 8px rgba(0, 0, 0, 0.08),
        inset -3px -3px 8px rgba(255, 255, 255, 0.7);
}

.shadow-pop:hover {
    box-shadow:
        8px 8px 20px rgba(234, 88, 12, 0.4),
        -4px -4px 12px rgba(255, 180, 120, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* --- 4. FLOATING NAVBAR --- */
.navbar-wrapper {
    position: fixed;
    top: 16px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    transition: transform var(--transition-smooth);
}

.navbar-wrapper.hide-nav {
    transform: translateY(-150%);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-soft);
    border-radius: 100px;
    width: 100%;
    max-width: 1000px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.theme-icon {
    font-size: 1.25rem;
    display: inline-block;
    transition: transform var(--transition-smooth);
}

.btn-theme-toggle:hover .theme-icon {
    transform: scale(1.1) rotate(10deg);
}

.menu-btn {
    background: transparent;
    border: none;
    color: var(--dark-text);
    cursor: pointer;
}

/* Mobile Backdrop */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.mobile-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Drawer (Right Side) */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(calc(100% + 24px));
    pointer-events: none;
    overflow: hidden;
    overscroll-behavior: contain;
    scrollbar-width: none;
    transition: transform var(--transition-smooth);
}

.mobile-overlay::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.mobile-overlay.active {
    transform: translateX(0);
    pointer-events: auto;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f2f5;
    border: none;
    color: var(--blue-primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        4px 4px 10px rgba(0, 0, 0, 0.08),
        -4px -4px 10px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.close-menu-btn:active {
    box-shadow:
        inset 2px 2px 6px rgba(0, 0, 0, 0.08),
        inset -2px -2px 6px rgba(255, 255, 255, 0.7);
}

.mobile-logo-container {
    position: absolute;
    top: 24px;
    left: 24px;
}

.mobile-nav-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 32px;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark-text);
    text-align: left;
    padding: 12px 16px;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s;
}

.mobile-link:hover,
.mobile-link:active {
    background: rgba(0, 0, 0, 0.03);
}

/* --- 5. HERO --- */
.hero {
    padding: 160px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--blue-primary);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: var(--text-xxl);
    margin-bottom: 24px;
}

.hero-lead {
    font-size: var(--text-lg);
    color: var(--gray-mid);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.mascot-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.hero-mascot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(30, 58, 138, 0.25));
}

.float-slow {
    animation: hoverfloat 6s ease-in-out infinite;
}

@keyframes hoverfloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-background-glow {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* --- 6. SECTIONS --- */
.section {
    padding: 80px 0;
}

.section-heading {
    font-size: var(--text-xl);
    margin-bottom: 16px;
}

.section-subheading {
    font-size: var(--text-lg);
    color: var(--gray-mid);
    margin-bottom: 48px;
}

/* --- 7. SERVICE CARD (Full Width) --- */
.service-card-full {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card-content h3 {
    font-family: var(--font-display);
    color: var(--blue-primary);
    font-size: var(--text-xl);
    margin-bottom: 12px;
}

.service-desc {
    font-size: var(--text-base);
    color: var(--gray-mid);
    margin-bottom: 24px;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    font-size: var(--text-base);
    color: var(--dark-text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.check {
    color: #22c55e;
    font-weight: bold;
    flex-shrink: 0;
}

.service-price-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.price-tag {
    background: rgba(30, 58, 138, 0.04);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.price-tag.secondary {
    background: rgba(249, 115, 22, 0.04);
    border-color: rgba(249, 115, 22, 0.15);
}

.price-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-mid);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blue-primary);
}

.price-tag.secondary .price-amount {
    color: var(--orange-accent);
}

.service-note {
    font-size: var(--text-xs);
    color: var(--gray-mid);
    font-style: italic;
}

.service-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-mascot {
    max-height: 250px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-full:hover .service-mascot {
    transform: scale(1.05) translateY(-10px);
}

/* --- 8. EDU SHOWCASE --- */
.edu-card {
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.edu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg opacity="0.05" xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="2" cy="2" r="2" fill="%23FFFFFF"/></svg>');
    background-size: 20px 20px;
    z-index: 0;
}

.edu-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tag-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: var(--text-xs);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.edu-content h2 {
    color: var(--bg-white);
    font-size: var(--text-xl);
    margin-bottom: 20px;
}

.edu-lead {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.edu-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-base);
    text-align: left;
}

.edu-pricing {
    margin-top: 16px;
    text-align: center;
}

.edu-price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.edu-currency {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--orange-accent);
}

.edu-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1;
    font-family: var(--font-display);
}

.edu-period {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.edu-note {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Edu Mockup */
.edu-card.has-mockup {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.edu-mockup-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.edu-mockup-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transform: rotateX(15deg) scale(0.95);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.edu-card:hover .edu-mockup-img {
    transform: rotateX(5deg) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* --- 9. PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.price-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-box {
    background: var(--blue-primary);
    color: white;
    box-shadow: var(--shadow-float);
    border: none;
}

.premium-box .price-title,
.premium-box .price-desc,
.premium-box .price-details li,
.premium-box .currency,
.premium-box .amount,
.premium-box .period {
    color: rgba(255, 255, 255, 0.9);
}

.premium-box .amount {
    color: #fff;
}

.pop-flag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-accent);
    color: white;
    font-size: var(--text-xs);
    font-weight: bold;
    padding: 6px 20px;
    border-radius: 100px;
    box-shadow: var(--shadow-glow);
    white-space: nowrap;
}

.price-header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.premium-box .price-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.price-title {
    font-size: var(--text-lg);
    margin-bottom: 8px;
}

.price-desc {
    font-size: var(--text-base);
    color: var(--gray-mid);
    margin-bottom: 24px;
}

.price-cost {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-sans);
}

.amount {
    font-size: clamp(2.2rem, 2vw, 3.5rem);
    font-weight: 700;
    color: var(--blue-primary);
    line-height: 1;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    line-height: 1;
    font-family: var(--font-sans);
}

.period {
    font-size: var(--text-xs);
    color: var(--gray-mid);
    font-weight: 600;
}

.price-renewal {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--orange-accent);
}

.price-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-details ul {
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-details li {
    margin-bottom: 12px;
    font-size: var(--text-base);
}

/* --- 10. FOOTER --- */
.global-footer {
    background: var(--bg-dim);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo-box {
    background: white;
    padding: 5px 10px;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 1px;
    box-shadow: var(--shadow-soft);
}

.footer-logo {
    height: 180px;
    display: block;
}

.footer-mission {
    color: var(--gray-mid);
    max-width: 400px;
    font-size: var(--text-base);
}

.footer-title {
    font-size: var(--text-base);
    margin-bottom: 20px;
}

.footer-address p {
    margin-bottom: 10px;
    color: var(--gray-mid);
    font-size: var(--text-base);
}

.footer-link {
    color: var(--blue-primary);
    font-weight: 600;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--orange-accent);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-link {
    color: var(--gray-mid);
    font-size: var(--text-base);
    transition: color 0.3s;
}

.footer-nav-link:hover {
    color: var(--blue-primary);
}

.footer-legal {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #9CA3AF;
    font-size: var(--text-xs);
}

.relative-container {
    position: relative;
}

.footer-mascot {
    width: 180px;
    height: auto;
    position: absolute;
    top: -200px;
    right: 5vw;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    display: none;
}

/* --- 11. WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* --- 12. ANIMATIONS --- */
.section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 13. UTILITIES --- */
.hide-mobile {
    display: none !important;
}

/* --- 14. RESPONSIVE --- */
@media (min-width: 768px) {
    .hero-cta-group {
        flex-direction: row;
    }

    .service-card-full {
        flex-direction: row;
        padding: 48px;
        align-items: center;
    }

    .service-card-content {
        flex: 1.5;
    }

    .service-card-image {
        flex: 1;
    }

    .service-mascot {
        max-height: 350px;
    }

    .edu-card {
        padding: 60px 40px;
    }

    .edu-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-box {
        transform: scale(1.03);
        z-index: 2;
        border: 4px solid var(--orange-accent);
    }

    .price-box {
        padding: 40px;
    }

    .footer-layout {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-mascot {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hide-mobile {
        display: inline-flex !important;
    }

    .menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .nav-item {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--dark-text);
        transition: color 0.3s;
    }

    .nav-item:hover {
        color: var(--blue-primary);
    }

    .navbar .btn-primary-action {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        flex: 1;
        max-width: 600px;
    }

    .hero-visual {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .edu-card.has-mockup {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        overflow: visible;
        padding: 80px;
    }

    .edu-content {
        flex: 1;
        max-width: 500px;
    }

    .edu-features {
        justify-content: flex-start;
    }

    .edu-mockup-wrapper {
        flex: 1.25;
        margin: 0 -120px 0 0;
    }
}

/* --- 15. E-COMMERCE & SOFTWARE CARD ACCENTS --- */
.ecommerce-card {
    margin-top: 32px;
    border-left: 4px solid var(--orange-accent);
}

.software-card {
    margin-top: 32px;
    border-left: 4px solid #7c3aed;
}

/* --- 16. PRICING GRIDS --- */
.pricing-grid.three-col {
    grid-template-columns: 1fr;
    gap: 32px;
}

.pricing-grid.four-col {
    grid-template-columns: 1fr;
    gap: 24px;
}

.software-box {
    border: 2px solid #7c3aed;
}

.software-flag {
    background: #7c3aed !important;
}

.popular-box {
    background: linear-gradient(145deg, #065f46, #047857);
    color: white;
    box-shadow: var(--shadow-float);
    border: none;
}

.popular-box .price-title,
.popular-box .price-desc,
.popular-box .price-details li,
.popular-box .currency,
.popular-box .amount,
.popular-box .period,
.popular-box .price-renewal {
    color: rgba(255, 255, 255, 0.9);
}

.popular-box .amount {
    color: #fff;
}

.popular-box .price-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.delivery-time {
    font-size: var(--text-xs);
    color: var(--gray-mid);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 8px 0;
}

/* --- 17. PROCESS STEPS --- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    padding-top: 48px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--blue-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.step-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-mid);
    font-size: var(--text-base);
}

.step-times {
    margin-top: 12px;
}

.step-times li {
    padding: 6px 0;
    font-size: var(--text-base);
    color: var(--dark-text);
}

/* --- 18. TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--blue-primary);
    font-size: var(--text-base);
}

.testimonial-author span {
    color: var(--gray-mid);
    font-size: var(--text-xs);
}

/* --- 19. FAQ ACCORDION --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--blue-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--blue-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--gray-mid);
    font-size: var(--text-base);
    line-height: 1.7;
}

/* --- 20. RESPONSIVE NEW COMPONENTS --- */
@media (min-width: 768px) {
    .pricing-grid.three-col {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-box {
        z-index: 2;
        border: 4px solid var(--orange-accent);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid.four-col {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
[data-theme="dark"] .feature-pill { color: var(--dark-text); }

