/* ========================================
   FASTCOM - RESPONSIVE CSS (NO FRAMEWORKS)
   Mobile-First Pure CSS - Pixel Perfect
   ======================================== */

/* Import Modern Font - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
   1. GLOBAL RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: padding-right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-weight: 600;
}

p {
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Accessibility - Focus States */
*:focus-visible {
    outline: 3px solid white;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
}

/* ========================================
   2. CONTAINER & UTILITIES
   ======================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ========================================
   3. HEADER / NAVBAR - MOBILE FIRST
   ======================================== */

.site-header {
    background: linear-gradient(135deg, #9D3294 0%, #B14DA0 100%);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Sticky Header State */
.site-header.sticky {
    background: rgba(157, 50, 148, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-nav {
    padding: 1rem 0;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.sticky .header-nav {
    padding: 0.75rem 0;
}

.header-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo - Professional Design with Icon */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    z-index: 1002;
    letter-spacing: -0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.logo-text-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.logo-text {
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-by {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.85em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-accent {
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Desktop Navigation Menu */
.header-menu {
    display: none;
    gap: 2rem;
    position: static;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    letter-spacing: 0.01em;
}

/* Header Actions - CTA Button Container */
.header-actions {
    display: none;
}

.header-btn {
    background-color: white;
    color: #9D3294;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.01em;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    width: 2rem;
    height: 2rem;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
    padding: 0.25rem;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger Active State - X Animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Active State */
.header-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #9D3294 0%, #7E2876 100%);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.header-menu.active .nav-link {
    font-size: 1.125rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   4. HERO SECTION - MOBILE FIRST
   ======================================== */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #9D3294 0%, #B14DA0 100%);
    padding: 0;
    padding-top: 4rem; /* Account for fixed header */
}

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

.hero-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* MOBILE: Image Second (Below Text) */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    order: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.hero-glow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    pointer-events: none;
}

.hero-glow-circle {
    width: 20rem;
    height: 20rem;
    background-color: white;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    max-width: none;
}

/* MOBILE: Text First (Above Image) */
.hero-content {
    order: 0;
    color: white;
    padding: 1rem;
    width: 100%;
}

.hero-heading {
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.hero-highlight {
    font-weight: 700;
    color: white;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: white;
    color: #9D3294;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
                0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #F9FAFB;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2),
                0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: white;
    color: #9D3294;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.3),
                0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.hero-logo {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 40;
}

.hero-logo-image {
    width: 5rem;
    opacity: 1;
}

/* ========================================
   5. PRICING SECTION - MOBILE FIRST
   ======================================== */

.pricing-section {
    width: 100%;
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.pricing-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
    margin-top: 20px;
}

.pricing-card {
    background-color: white;
    border-radius: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
                0 2px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(157, 50, 148, 0.08);
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(157, 50, 148, 0.1);
    border-color: rgba(157, 50, 148, 0.15);
}

.pricing-card-header {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #9D3294 0%, #C63FAE 100%);
}

.pricing-card-plan {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-card-price-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.pricing-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.pricing-card-currency {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-card-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.pricing-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #9D3294;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-feature-content h4 {
    font-weight: 700;
    color: #111827;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.pricing-feature-content p {
    font-size: 0.8125rem;
    color: #6B7280;
    line-height: 1.5;
}

.pricing-card-btn {
    width: 100%;
    color: white;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #9D3294 0%, #C63FAE 100%);
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(157, 50, 148, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
}

.pricing-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 50, 148, 0.4);
    background: linear-gradient(135deg, #8B2A84 0%, #B13A9E 100%);
}

.pricing-card-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(157, 50, 148, 0.3);
}

/* ========================================
   6. INNOVATION SECTION - MOBILE FIRST
   ======================================== */

.innovation-section {
    width: 100%;
    padding: 3rem 0 4rem;
    background-color: #9D3294;
}

.innovation-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.innovation-header-box {
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.innovation-badge {
    background-color: white;
    color: #9D3294;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.innovation-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.innovation-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.innovation-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.innovation-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 50vh;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.innovation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.innovation-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

/* ========================================
   7. FEATURES SECTION - MOBILE FIRST
   ======================================== */

.features-section {
    width: 100%;
    padding: 3rem 0;
    background-color: #F9FAFB;
}

.features-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.features-badge {
    color: #9D3294;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #9D3294;
    line-height: 1.2;
}

.features-subtitle {
    color: #6B7280;
    font-size: 0.875rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.feature-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
                0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(157, 50, 148, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(157, 50, 148, 0.1);
    border-color: rgba(157, 50, 148, 0.2);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9D3294 0%, #B14DA0 100%);
    box-shadow: 0 4px 12px rgba(157, 50, 148, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(157, 50, 148, 0.35);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #9D3294;
}

.feature-description {
    color: #4B5563;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* ========================================
   8. TESTIMONIALS SECTION - MOBILE FIRST
   ======================================== */

.testimonials-section {
    width: 100%;
    padding: 3rem 0;
    background-color: #9D3294;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.testimonials-badge {
    background-color: white;
    color: #9D3294;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.testimonials-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
                0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(157, 50, 148, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12),
                0 8px 16px rgba(157, 50, 148, 0.08);
    border-color: rgba(157, 50, 148, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #9D3294;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    background: linear-gradient(135deg, #9D3294 0%, #B14DA0 100%);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(157, 50, 148, 0.3);
}

.testimonial-author-name {
    font-weight: 700;
    color: #111827;
    font-size: 0.875rem;
}

.testimonial-author-role {
    font-size: 0.75rem;
    color: #6B7280;
}

/* ========================================
   9. FOOTER - MOBILE FIRST
   ======================================== */

.site-footer {
    width: 100%;
    background-color: white;
    padding: 3rem 0 2rem;
    border-top: 3px solid #9D3294;
    box-shadow: 0 -4px 20px rgba(157, 50, 148, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #9D3294;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-section-title {
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #9D3294;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact,
.footer-links,
.footer-social {
    color: #6B7280;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-contact p,
.footer-links li,
.footer-social li {
    margin-bottom: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links,
.footer-social {
    list-style: none;
}

.footer-links a,
.footer-social a {
    display: inline-block;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6B7280;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #9D3294;
    transform: translateX(4px);
}

.footer-copyright {
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-top: 1px solid rgba(157, 50, 148, 0.15);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright-brand {
    font-weight: 800;
    color: #9D3294;
}

/* ========================================
   10. RESPONSIVE - SMALL MOBILE (480px+)
   ======================================== */

@media (min-width: 480px) {
    .hero-image-container {
        height: 400px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn {
        width: auto;
        flex: 1;
        min-width: 180px;
    }

    .hero-logo-image {
        width: 6rem;
    }
}

/* ========================================
   11. RESPONSIVE - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Header - Desktop Navigation */
    .header-container {
        padding: 0 1.5rem;
    }

    .header-logo {
        font-size: 1.75rem;
    }

    /* Show Desktop Menu */
    .header-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        gap: 2rem;
        box-shadow: none;
        animation: none;
    }

    .header-menu .nav-link {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
        border-bottom: none;
    }

    /* Show CTA Button */
    .header-actions {
        display: block;
    }

    /* Hide Hamburger on Desktop */
    .hamburger {
        display: none;
    }

    /* Disable Mobile Overlay */
    .mobile-menu-overlay {
        display: none;
    }

    /* Pricing - 2 Column Grid on Tablet */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .pricing-card {
        max-width: none;
        min-height: 450px;
    }

    /* Hero - Still Single Column on Tablet */
    .hero-section {
        padding: 0;
        padding-top: 5rem; /* Account for larger header on tablet */
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-image-container {
        height: 450px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-logo-image {
        width: 7rem;
    }

    /* Pricing */
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    /* Innovation */
    .innovation-section {
        padding: 4rem 0 5rem;
    }

    .innovation-header {
        margin-bottom: 4rem;
    }

    .innovation-header-box {
        padding: 3rem;
    }

    .innovation-title {
        font-size: 2rem;
    }

    .innovation-description {
        font-size: 1rem;
    }

    .innovation-video-wrapper {
        height: 60vh;
        border-radius: 2rem;
        border: 6px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    }

    /* Features */
    .features-section {
        padding: 4rem 0;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    /* Footer */
    .site-footer {
        padding: 4rem 0 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
        gap: 3rem;
    }

    .footer-brand {
        font-size: 2.25rem;
    }
}

/* ========================================
   12. RESPONSIVE - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    /* Pricing - 3 Column Grid on Desktop */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }

    .pricing-card {
        min-height: 450px;
    }

    /* Hero - Switch to 2 Column */
    .hero-section {
        padding: 0;
        padding-top: 5.5rem; /* Account for desktop header */
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-grid {
        flex-direction: row;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
    }

    /* Desktop: Text First (Left) */
    .hero-content {
        order: 0;
        padding: 1rem 0;
        text-align: left;
        max-width: none;
    }

    /* Desktop: Image Second (Right) */
    .hero-image-container {
        order: 1;
        height: 500px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
        max-width: none;
        margin: 0;
    }

    .hero-logo {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .hero-logo-image {
        width: 8rem;
    }

    /* Pricing */
    .pricing-section {
        padding: 5rem 0;
    }

    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }

    /* Innovation */
    .innovation-section {
        padding: 5rem 0 6rem;
    }

    .innovation-header {
        margin-bottom: 5rem;
    }

    .innovation-title {
        font-size: 2.5rem;
    }

    .innovation-description {
        font-size: 1.125rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .innovation-video-wrapper {
        height: 70vh;
        max-width: 1400px;
        border-radius: 2.5rem;
        border: 8px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
    }

    /* Features */
    .features-section {
        padding: 5rem 0;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .feature-icon {
        width: 4rem;
        height: 4rem;
    }

    .feature-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-author-name {
        font-size: 1rem;
    }

    .testimonial-author-role {
        font-size: 0.875rem;
    }

    /* Footer */
    .site-footer {
        padding: 5rem 0 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }

    .footer-brand {
        font-size: 2.5rem;
    }

    .footer-section-title {
        font-size: 1.125rem;
    }

    .footer-contact,
    .footer-links,
    .footer-social {
        font-size: 1rem;
    }
}

/* ========================================
   13. RESPONSIVE - LARGE DESKTOP (1280px+)
   ======================================== */

@media (min-width: 1280px) {
    .hero-image-container {
        height: 100%;
    }

    /* .hero-title {
        font-size: 3.5rem;
    } */

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-logo-image {
        width: 9rem;
    }

    .innovation-title {
        font-size: 3rem;
    }

    .innovation-video-wrapper {
        height: 75vh;
        max-width: 1600px;
    }

    .features-title,
    .testimonials-title {
        font-size: 3rem;
    }
}

/* ========================================
   14. EXTRA SAFETY - PREVENT OVERFLOW
   ======================================== */

html {
    overflow-x: hidden;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
}

.hero-section,
.pricing-section,
.innovation-section,
.features-section,
.testimonials-section,
.site-footer {
    width: 100%;
    overflow-x: hidden;
}

/* ========================================
   END OF RESPONSIVE CSS
   ======================================== */
