/* ============================================
   BELBOTIKA MODERN HOMEPAGE - BLUSH THEME
   ============================================ */

:root {
    /* Soft Blue Color System */
    --primary-gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    --secondary-gradient: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    --accent-gradient: linear-gradient(135deg, #7dd3fc 0%, #0ea5e9 100%);
    --warm-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --dark-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    --container-max: 1400px;
    
    /* Base Colors */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --accent: #60a5fa;
    --success: #10b981;
    --warning: #f59e0b;
    
    /* Text Colors */
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #eff6ff;
    --bg-lighter: #dbeafe;
    --bg-blush: #e0f2fe;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(59, 130, 246, 0.08);
    --shadow-medium: 0 20px 60px rgba(59, 130, 246, 0.12);
    --shadow-strong: 0 30px 80px rgba(59, 130, 246, 0.18);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.25);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(-45deg, 
        rgba(236, 72, 153, 0.04), 
        rgba(251, 113, 133, 0.04), 
        rgba(244, 114, 182, 0.04), 
        rgba(252, 231, 243, 0.06)
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 9999;
}

/* ============================================
   HEADER - GLASSMORPHISM
   ============================================ */

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.logo-icon img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.25));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    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 0.3s ease;
}

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

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

.nav-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(251, 191, 36, 0.25);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
    text-decoration: none;
}

.nav-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
    padding: 0.5rem;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--bg-blush);
    color: var(--primary);
}

.dropdown-item i {
    width: 18px;
}

.dropdown-divider {
    height: 1px;
    background: #dbeafe;
    margin: 0.5rem 0;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-medium);
}

.btn-secondary:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    padding: 2rem;
    background: white;
    border-top: 1px solid #dbeafe;
}

.mobile-menu.active {
    display: block;
}

.mobile-dropdown {
    margin-bottom: 1.5rem;
}

.mobile-dropdown-header {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1rem;
    border-radius: var(--radius-md);
    color: #92400e;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-dropdown-header span {
    flex: 1;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #dbeafe;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 1.25rem;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #dbeafe;
}

.mobile-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 75vh;  /* Reduced from 80vh */
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;  /* Reduced top/bottom padding */
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle 30s infinite;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(80px, -120px); }
    50% { transform: translate(-60px, -240px); }
    75% { transform: translate(120px, -360px); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}


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

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;  /* Add margin for trust indicators */
}

.cta-primary,
.cta-secondary {
    padding: 1.25rem 2.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.cta-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::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;
}

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

.cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 50px rgba(59, 130, 246, 0.5);
}

.cta-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid #dbeafe;
}

.cta-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-blush);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-soft);
}

.trust-indicators {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    border: 1px solid rgba(59,130,246,0.15);
    backdrop-filter: blur(6px);
    transition: var(--transition-fast);
}

.trust-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.trust-item svg {
    color: var(--success);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

.video-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.2);
    background: var(--primary-gradient);
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

/* Soft SaaS-style glow behind video */
.video-frame::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(59,130,246,0.18) 0%, rgba(59,130,246,0.08) 35%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.7;
}

.video-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(59, 130, 246, 0.35);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: calc(var(--radius-xl) - 0.5rem);
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    animation: floatUpDown 3.5s ease-in-out infinite;
    border: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 10;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.float-1 {
    top: 5%;
    right: -14%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 5%;
    left: -14%;
    animation-delay: 1.75s;
}

.float-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.float-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.float-value .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 5rem 2rem;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   FEATURES - BENTO GRID
   ============================================ */

.features-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bento-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bento-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;
}

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

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card-inner {
    padding: 2.5rem;
}

.bento-large { 
    grid-column: span 1; 
}

.bento-medium { 
    grid-column: span 1; 
}

.bento-wide { 
    grid-column: span 3; 
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
    transition: var(--transition-bounce);
}

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

.feature-icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list li i {
    color: var(--success);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-list-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.feature-cta {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.feature-cta:hover {
    gap: 1rem;
}

/* ============================================
   GALLERY SECTION - HORIZONTAL CAROUSEL
   ============================================ */

.gallery-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Carousel Wrapper with Navigation */
.gallery-carousel-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

/* Horizontal Scroll Container */
.gallery-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    margin: 0 4rem; /* Space for nav buttons */
    
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.gallery-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Gallery Items */
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: white;
    flex-shrink: 0; /* Prevent items from shrinking */
    width: 280px; /* Fixed width for consistency */
    height: 380px; /* Fixed height (3:4 aspect ratio) */
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    position: relative;
    z-index: 2;
}

.gallery-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-bounce);
    z-index: 1;
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: white;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    z-index: 10;
    color: var(--primary);
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-left {
    left: 0;
}

.carousel-nav-right {
    right: 0;
}

/* Empty State */
.gallery-empty {
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.gallery-empty svg {
    margin-bottom: 1rem;
    opacity: 0.4;
}

/* CTA Section */
.gallery-cta-wrapper {
    text-align: center;
}

.cta-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--primary);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition-smooth);
}

.cta-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.gallery-cta-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-carousel {
        margin: 0 3rem; /* Smaller space for nav buttons on mobile */
    }
    
    .gallery-item {
        width: 240px; /* Smaller cards on mobile */
        height: 320px;
    }
    
    .carousel-nav {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-carousel {
        margin: 0 2.5rem;
        gap: 1rem;
    }
    
    .gallery-item {
        width: 200px;
        height: 280px;
    }
    
    .carousel-nav {
        width: 2rem;
        height: 2rem;
    }
}

/* ============================================
   AI SECTION
   ============================================ */

.ai-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%233b82f6' stroke-width='0.5' opacity='0.04'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='%233b82f6' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
}

.ai-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-badge-light {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}

.section-title-light {
    color: white;
}

.gradient-text-light {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.75);
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ai-feature {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.ai-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.ai-feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.ai-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ai-feature-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* AI Features Responsive */
@media (max-width: 1200px) {
    .ai-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FLOW SECTION
   ============================================ */

.flow-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.flow-container {
    max-width: 1400px;
    margin: 0 auto;
}

.flow-timeline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.flow-step {
    flex: 1;
    min-width: 180px;
    min-height: 240px;  /* NEW - Force equal height */
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.flow-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.flow-connector {
    flex: 0 0 50px;
    position: relative;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #eff6ff 0%, #e0f2fe 100%);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(59, 130, 246, 0.06);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.pricing-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Pricing Header - Centered above cards */
.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Grid - 5 columns */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(59, 130, 246, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary);
}

/* Popular Badge */
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Plan Header */
.plan-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    min-height: 3.2rem;
}

/* Plan Price */
.plan-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-lighter);
    text-align: center;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-medium);
}

.amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.billing-note {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Plan CTA */
.plan-cta {
    margin-bottom: 1.5rem;
}

.plan-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.plan-button:hover {
    background: var(--text-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular .plan-button {
    background: var(--primary-gradient);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.pricing-card.popular .plan-button:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.45);
}

/* Plan Features */
.plan-features {
    list-style: none;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.85rem;
    line-height: 1.4;
}

.plan-features li i,
.plan-features li svg {
    color: var(--success);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.plan-features li.disabled {
    opacity: 0.4;
}

.plan-features li.disabled i,
.plan-features li.disabled svg {
    color: var(--text-muted);
}

/* Responsive Pricing */
@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .pricing-section {
        padding: 4rem 1rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: contactPulse 6s ease infinite;
    pointer-events: none;
}

@keyframes contactPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.quick-drafts {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.quick-drafts-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: block;
}

.quick-drafts-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-draft-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-lighter);
    border: 2px solid #dbeafe;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.quick-draft-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #dbeafe;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.hidden {
    display: none;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: slideDown 0.4s ease;
    position: relative;
    z-index: 1;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-success::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.alert-error::before {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-gradient);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34h-2v4h-4v2h4v4h2v-4h4v-2h-4v-4z' fill='%233b82f6' opacity='0.02'/%3E%3C/svg%3E");
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: none;  /* Remove filter to show original logo colors */
    flex-shrink: 0;
}

.footer-logo span {
    color: white;
    font-weight: 800;
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    color: white;
    font-weight: 800;
}

.footer-description {
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-links i {
    width: 18px;
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }
    
    .float-1 {
        right: -8%;
    }
    
    .float-2 {
        left: -8%;
    }
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        padding: 4rem 2rem 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .float-1, .float-2 {
        display: none;
    }

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

    .bento-wide {
        grid-column: span 2;
    }

    .bento-large,
    .bento-medium {
        grid-column: span 1;
    }

    .flow-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .flow-connector {
        width: 2px;
        height: 40px;
        transform: rotate(90deg);
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 7rem 1.5rem 3rem;
    }

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

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

    .hero-cta {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

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

    .bento-large,
    .bento-medium,
    .bento-wide {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .stat-number-large {
        font-size: 3rem;
    }

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

    .quick-drafts-buttons {
        flex-direction: column;
    }

    .quick-draft-btn {
        width: 100%;
        justify-content: center;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .section-subtitle {
        font-size: 1.05rem;
    }

    .feature-list-inline {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-icon img {
        width: 34px;
        height: 34