/* ===========================
   CSS VARIABLES & DESIGN TOKENS
   =========================== */
:root {
    /* Colors - INCODE GEN Palette */
    --primary-gradient: linear-gradient(135deg, #0D99FF 0%, #0A7FDB 100%);
    --secondary-gradient: linear-gradient(135deg, #0D99FF 0%, #0066CC 100%);
    --accent-gradient: linear-gradient(135deg, #0D99FF 0%, #00D4FF 100%);
    --warm-gradient: linear-gradient(135deg, #0D99FF 0%, #4DB8FF 100%);
    --cool-gradient: linear-gradient(135deg, #0066CC 0%, #0D99FF 100%);
    --soft-gradient: linear-gradient(135deg, #E6F4FF 0%, #B3DFFF 100%);

    --primary-color: #0D99FF;
    --secondary-color: #0A7FDB;
    --accent-color: #00D4FF;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;

    /* Dark mode colors */
    --bg-dark: #111827;
    --bg-dark-secondary: #1F2937;
    --bg-dark-card: #374151;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(13, 153, 255, 0.25);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.gradient-text {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Kinetic Typography - Animated Ultimate Text */
.animated-ultimate {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FFA500 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.4));
}

.animated-ultimate .letter {
    display: inline-block;
    position: relative;
    animation: kinetic-wave 2s ease-in-out infinite,
        kinetic-bounce 3s ease-in-out infinite,
        kinetic-rotate 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
    transform-origin: center;
}

/* Wave Animation - Vertical movement */
@keyframes kinetic-wave {

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

    25% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-8px);
    }
}

/* Bounce Animation - Scale effect */
@keyframes kinetic-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
    }

    60% {
        transform: scale(0.95);
    }
}

/* Rotate Animation - 3D rotation */
@keyframes kinetic-rotate {

    0%,
    100% {
        transform: rotateY(0deg) rotateZ(0deg);
    }

    25% {
        transform: rotateY(180deg) rotateZ(5deg);
    }

    50% {
        transform: rotateY(360deg) rotateZ(0deg);
    }

    75% {
        transform: rotateY(180deg) rotateZ(-5deg);
    }
}

/* Hover effect - Faster and more intense */
.animated-ultimate:hover .letter {
    animation: kinetic-wave 1s ease-in-out infinite,
        kinetic-bounce 1.5s ease-in-out infinite,
        kinetic-rotate 2s ease-in-out infinite,
        kinetic-glow 1s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.08s);
}

/* Glow effect on hover */
@keyframes kinetic-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(255, 140, 0, 1));
    }
}

/* Individual letter colors for variety */
.animated-ultimate .letter:nth-child(odd) {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animated-ultimate .letter:nth-child(even) {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary,
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(13, 153, 255, 0.08);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(13, 153, 255, 0.15);
}

.btn-hero-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-hero-secondary {
    background: white;
    color: var(--primary-color);
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(13, 153, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(13, 153, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.375rem;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    min-width: 120px;
    object-fit: contain;
    transition: var(--transition-base);
    display: block;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Logo Text Fallback - jika gambar tidak ter-load */
.logo-text-fallback {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    display: none;
    white-space: nowrap;
}

/* Hide broken image icon */
img.logo-image {
    position: relative;
}

img.logo-image::before {
    content: '';
    display: block;
}

img.logo-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Logo SVG specific styling */
.logo-svg {
    filter: drop-shadow(0 2px 4px rgba(13, 153, 255, 0.2));
}

/* Logo PNG specific styling */
.logo-png {
    filter: brightness(1.05);
}

.logo-icon {
    font-size: 1.75rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

/* ===========================
   HERO SECTION - REDESIGNED
   =========================== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1628 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Gradient Mesh Background */
.gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 20% 30%, rgba(13, 153, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(0, 212, 255, 0.12) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(77, 184, 255, 0.1) 0px, transparent 50%);
    animation: mesh-shift 20s ease-in-out infinite;
}

@keyframes mesh-shift {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Enhanced Animated Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: float-orb 30s ease-in-out infinite;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(13, 153, 255, 0.5) 0%, transparent 70%);
    top: -20%;
    right: -15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    bottom: -15%;
    left: -15%;
    animation-delay: 10s;
}

.orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(77, 184, 255, 0.35) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation-delay: 20s;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.25) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(60px, -60px) scale(1.15) rotate(90deg);
    }

    50% {
        transform: translate(-40px, 40px) scale(0.85) rotate(180deg);
    }

    75% {
        transform: translate(50px, 50px) scale(1.1) rotate(270deg);
    }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(13, 153, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(13, 153, 255, 0.8);
    animation: particle-float 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 50%;
    top: 60%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 30%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 80%;
    top: 70%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    left: 90%;
    top: 50%;
    animation-delay: 2.5s;
}

.particle:nth-child(8) {
    left: 60%;
    top: 90%;
    animation-delay: 4.5s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Enhanced Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    background: rgba(13, 153, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(13, 153, 255, 0.4);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 10px 40px rgba(13, 153, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float-badge 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 153, 255, 0.2), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes float-badge {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes badge-shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.badge-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

/* Badge Pulse Effect */
.badge-pulse {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Enhanced Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    line-height: 1.15;
    color: #FFFFFF;
    animation: slide-up 0.8s ease-out 0.2s both;
    text-shadow: 0 4px 30px rgba(13, 153, 255, 0.4);
}

/* Typing Subtitle Animation */
.hero-subtitle-wrapper {
    margin-bottom: var(--spacing-xl);
    animation: slide-up 0.8s ease-out 0.4s both;
}

.hero-subtitle-static {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.hero-subtitle-animated {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 3rem;
}

.typing-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00D4FF 0%, #0D99FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-cursor {
    font-size: 2rem;
    font-weight: 300;
    color: #00D4FF;
    animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Enhanced Description */
.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-2xl);
    animation: slide-up 0.8s ease-out 0.6s both;
    font-weight: 400;
    line-height: 1.8;
}

.hero-description strong {
    color: #00D4FF;
    font-weight: 700;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    animation: slide-up 0.8s ease-out 0.8s both;
}

/* Enhanced CTA Buttons */
.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #0D99FF 0%, #00D4FF 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 153, 255, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover .btn-shine {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 60px rgba(13, 153, 255, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 2;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(13, 153, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 2px solid rgba(13, 153, 255, 0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary:hover {
    transform: translateY(-4px);
    background: rgba(13, 153, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(13, 153, 255, 0.3);
}

/* Enhanced stats section */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(13, 153, 255, 0.2);
    box-shadow: 0 20px 60px rgba(13, 153, 255, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slide-up 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(13, 153, 255, 0.3), transparent);
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-description {
    font-size: 1.375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(13, 153, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
}

.step-card {
    position: relative;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px solid rgba(13, 153, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.step-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 70px rgba(13, 153, 255, 0.25),
        0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 153, 255, 0.3);
}

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

.step-number {
    position: absolute;
    top: -15px;
    right: var(--spacing-xl);
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(13, 153, 255, 0.15), rgba(0, 212, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-icon {
    margin-bottom: var(--spacing-lg);
    font-size: 3rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(-10px);
    }
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 800;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-2xl);
}

.feature-card {
    position: relative;
    padding: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(13, 153, 255, 0.1);
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(13, 153, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(13, 153, 255, 0.2),
        0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(13, 153, 255, 0.3);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    margin-bottom: var(--spacing-lg);
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.625rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 800;
}

.feature-subtitle {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-md);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-size: 1.0625rem;
}

.feature-tag {
    display: inline-flex;
    padding: 0.625rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(13, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-tag {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 153, 255, 0.4);
}

/* ===========================
   TEMPLATES SECTION
   =========================== */
.templates {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.template-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
}

.category-btn {
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(13, 153, 255, 0.2);
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
}

.category-btn:hover {
    background: rgba(13, 153, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(13, 153, 255, 0.4);
    transform: translateY(-2px);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.template-card {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid rgba(13, 153, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.template-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(13, 153, 255, 0.2);
    background: white;
    border-color: var(--primary-color);
}

.template-badge {
    display: inline-block;
    padding: 0.5rem 1.125rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(13, 153, 255, 0.3);
}

.template-name {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 800;
}

.template-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   ADDITIONAL FEATURES
   =========================== */
.additional-features {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.additional-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.additional-card {
    padding: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.additional-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.additional-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.additional-card:hover::before {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

.additional-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.additional-card:hover .additional-icon {
    transform: scale(1.15) rotate(10deg);
}

.additional-title {
    font-size: 1.75rem;
    color: white;
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.additional-subtitle {
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-md);
}

.additional-desc {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ===========================
   FEATURES LIST SECTION
   =========================== */
.features-list {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.features-list .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.features-list-badge {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.features-list .section-title {
    display: block;
    text-align: center;
}

.template-categories-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-md) 0;
}

.category-tab {
    padding: 0.75rem 1.75rem;
    background: white;
    border: 2px solid rgba(13, 153, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--bg-dark);
    color: white;
    border-color: var(--bg-dark);
    box-shadow: var(--shadow-md);
}

.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.platform-feature-card {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(13, 153, 255, 0.1);
    text-align: center;
    transition: all var(--transition-base);
}

.platform-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: white;
}

.platform-feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.platform-feature-title {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.platform-feature-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Detailed Templates Grid */
.detailed-templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.detailed-template-card {
    position: relative;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(13, 153, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Gradient border effect on hover */
.detailed-template-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #0D99FF, #00D4FF, #0A7FDB);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.detailed-template-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 153, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.detailed-template-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(13, 153, 255, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 153, 255, 0.3);
}

.detailed-template-card:hover::before {
    opacity: 1;
}

.detailed-template-card:hover::after {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.detailed-template-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #0D99FF 0%, #00D4FF 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(13, 153, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detailed-template-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.detailed-template-card:hover .detailed-template-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 153, 255, 0.4);
}

.detailed-template-card:hover .detailed-template-badge::before {
    left: 100%;
}

.detailed-template-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    transition: all 0.3s ease;
    position: relative;
}

.detailed-template-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0D99FF, #00D4FF);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detailed-template-card:hover .detailed-template-title {
    color: var(--primary-color);
    transform: translateX(4px);
}

.detailed-template-card:hover .detailed-template-title::after {
    width: 60px;
}

.detailed-template-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.detailed-template-card:hover .detailed-template-desc {
    color: var(--text-primary);
}

/* Stagger animation for cards */
.detailed-template-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.detailed-template-card:nth-child(1) {
    animation-delay: 0.05s;
}

.detailed-template-card:nth-child(2) {
    animation-delay: 0.1s;
}

.detailed-template-card:nth-child(3) {
    animation-delay: 0.15s;
}

.detailed-template-card:nth-child(4) {
    animation-delay: 0.2s;
}

.detailed-template-card:nth-child(5) {
    animation-delay: 0.25s;
}

.detailed-template-card:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden-template {
    display: none;
}

.hidden-template.show {
    display: block;
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Show More Button */
.show-more-container {
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    background: var(--bg-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.show-more-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.show-more-btn svg {
    transition: transform var(--transition-base);
}

.show-more-btn.active svg {
    transform: rotate(180deg);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 153, 255, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-subtitle {
    font-size: 1.75rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    font-weight: 600;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1.5rem 3.5rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(13, 153, 255, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 70px rgba(13, 153, 255, 0.5),
        0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover::before {
    left: 100%;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo-image {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand .logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(13, 153, 255, 0.5));
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: white;
    font-weight: 800;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    font-size: 1.0625rem;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 20px;
}

.footer-link:hover::before {
    left: 0;
    opacity: 1;
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #00D4FF;
    text-decoration: underline;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

@media (max-width: 768px) {

    /* Logo responsive untuk tablet */
    .logo-image {
        height: 36px;
    }

    .logo-text-fallback {
        font-size: 1.25rem;
    }

    .nav-wrapper {
        padding: 1rem 0;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

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

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    /* Footer logo responsive */
    .footer-brand .logo-image {
        height: 36px;
    }
}

@media (max-width: 480px) {

    /* Logo responsive untuk smartphone kecil */
    .logo-image {
        height: 32px;
    }

    .logo-text-fallback {
        font-size: 1.125rem;
    }

    .nav-wrapper {
        padding: 0.875rem 0;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }

    /* Footer logo responsive untuk smartphone kecil */
    .footer-brand .logo-image {
        height: 32px;
    }
}

/* Smartphone sangat kecil (iPhone SE, dll) */
@media (max-width: 360px) {

    /* Logo responsive untuk smartphone sangat kecil */
    .logo-image {
        height: 28px;
        min-width: 100px;
    }

    .logo-text-fallback {
        font-size: 1rem;
    }

    .nav-wrapper {
        padding: 0.75rem 0;
    }

    .container {
        padding: 0 0.75rem;
    }

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

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

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Footer logo responsive untuk smartphone sangat kecil */
    .footer-brand .logo-image {
        height: 28px;
    }
}