/*
Theme Name: VVP AutoPlan Landing
Theme URI: https://vvp-vaktplan.no
Author: VVP
Author URI: https://vvp-vaktplan.no
Description: Landing page tema for VVP AutoPlan med SEO-optimaliserte lead magnets
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vvp-landing
Tags: landing-page, marketing, one-page, seo, lead-generation

Changelog v1.3.0 (2025):
- Refaktorert CSS - fjernet unødvendige !important
- Flyttet WordPress-overskrivinger fra topbar.css hit
- Ryddet opp i duplisert kode
*/

/* ============================================
   CRITICAL: WordPress App Header Override
   Skjuler tema-header på app-sider (innlogget)
   ============================================ */

/* Hide landing page headers on VVP app pages */
body.logged-in #site-header,
body.logged-in .site-header,
body.logged-in header.site-header,
body.logged-in header#site-header,
body.logged-in .main-header,
body.logged-in .landing-header,
body.logged-in nav.main-nav:not(.vvp-topbar-nav),
.vvp-layout #site-header,
.vvp-layout .site-header,
.vvp-manager #site-header,
.vvp-store-profile #site-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
}

/* HIDE WordPress page title on VVP app pages */
body.logged-in h1.entry-title,
body.logged-in .entry-title,
body.logged-in .entry-header,
body.page h1.entry-title,
body.page .entry-header,
.vvp-layout .entry-title,
.vvp-manager .entry-title,
.vvp-store-profile .entry-title,
.vvp-dashboard .entry-title {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: -9999px !important;
}

/* Remove theme padding on VVP app pages */
body.logged-in .entry-content,
body.page .entry-content,
body.logged-in .site-main,
body.logged-in #primary {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* WordPress admin bar offset for VVP topbar */
body.admin-bar .vvp-topbar {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .vvp-topbar {
        top: 46px !important;
    }
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Light Mode */
    --bg-primary: #F7F8FB;
    --bg-secondary: #FFFFFF;
    --text-primary: #0B0C0F;
    --text-secondary: #64748B;
    --accent: #125DFF;
    --accent-hover: #0d47cc;
    --success: #16A34A;
    --warning: #F59E0B;
    --error: #DC2626;
    --border: #E2E8F0;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Typography */
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 48px;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius: 12px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0B0C0F;
        --bg-secondary: #1F2937;
        --text-primary: #F9FAFB;
        --text-secondary: #9CA3AF;
        --border: #374151;
    }
}

body {
    font-family: var(--font-base);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-hover);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

.btn-large {
    padding: 18px 36px;
    font-size: var(--text-lg);
}

/* ============================================
   CARD
   ============================================ */

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* ============================================
   GRID
   ============================================ */

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--border) 25%,
        var(--bg-secondary) 50%,
        var(--border) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   TOP BAR - FREE TOOLS & LOGIN
   ============================================ */

.top-bar {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #10b981;
    white-space: nowrap;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    font-size: 13px;
}

.top-bar-link:hover {
    color: white;
}

.top-bar-link i {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-left {
        gap: 12px;
    }
    
    .top-bar-label {
        width: 100%;
        margin-bottom: 4px;
    }
    
    .top-bar-link {
        font-size: 12px;
    }
}

/* ============================================
   SITE HEADER - LANDING PAGE
   ============================================ */

.site-header {
    background: white;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.nav-brand {
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    line-height: 0;
}

html body .logo-link img,
html body .logo-image {
    height: 48px;
    width: auto;
    display: block;
    max-height: 48px;
}

/* Navigation Links - Desktop */
.nav-menu {
    display: flex;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    padding: 10px 16px;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover {
    background: #f1f5f9;
    color: var(--accent);
}

/* CTA Buttons in Header */
.nav-cta {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

html body .nav-cta .btn-dashboard,
html body .nav-cta .btn-primary {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

html body .nav-cta .btn-primary,
html body .site-header .btn-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

html body .nav-cta .btn-primary:hover,
html body .site-header .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(18, 93, 255, 0.3);
}

html body .nav-cta .btn-dashboard,
html body .site-header .btn-dashboard {
    background: white;
    color: var(--accent);
    border: 2px solid var(--accent);
}

html body .nav-cta .btn-dashboard:hover,
html body .site-header .btn-dashboard:hover {
    background: var(--accent);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    order: 3;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0F172A;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   RESPONSIVE NAVIGATION
   ============================================ */

/* Desktop */
@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* Tablet/Mobile */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    html body .logo-link img,
    html body .logo-image {
        height: 44px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 0;
    }
    
    .site-header .container {
        padding: 0 16px;
    }
    
    .main-nav {
        gap: 16px;
    }
    
    .nav-cta {
        display: none; /* Move to hamburger menu */
    }
    
    .nav-brand {
        flex: 1;
    }
    
    html body .logo-link img,
    html body .logo-image {
        height: 40px;
        max-width: 180px;
    }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu::before {
    content: '';
    display: block;
    background: url('https://www.shyft.no/wp-content/uploads/2025/11/Shyft.no_.png') no-repeat center;
    background-size: contain;
    height: 50px;
    margin: 20px 0 30px 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #0F172A;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    color: #0F172A;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
}

.mobile-nav-links .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* ============================================
   HERO 2026 - MODERN DESIGN
   ============================================ */

.hero-2026 {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 80px 20px;
}

/* Animated gradient orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(18,93,255,0.4) 0%, transparent 70%);
    top: -300px;
    right: -200px;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.3) 0%, transparent 70%);
    bottom: -250px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Live badge with pulse */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 32px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Hero content */
.hero-2026 .hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.hero-2026 .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: #475569;
    margin-bottom: 32px;
}

/* Trust row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
}

.trust-item i {
    color: #10b981;
    flex-shrink: 0;
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(18, 93, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(18, 93, 255, 0.4);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: white;
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    border-color: var(--accent);
    background: #F8FAFC;
}

/* Hero promo banner */
.hero-promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.promo-icon {
    flex-shrink: 0;
    color: #92400e;
}

.promo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-title {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
}

.promo-subtitle {
    font-size: 13px;
    color: #78350f;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: white;
    color: #1e293b;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-promo:hover {
    background: #f59e0b;
    color: white;
}

/* Product preview card */
.hero-visual {
    margin-top: 64px;
}

.product-preview-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.05);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.preview-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Hero section mobile styling */
.hero-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #E0EDFF 0%, #E0F7F5 100%);
}

.hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0F172A;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #6B7280;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.hero-trust span {
    color: #0F172A;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */

.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #E2E8F0;
    padding: 12px 16px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: none;
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-cta-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
}

.mobile-cta-text span {
    font-size: 13px;
    color: #64748B;
}

.mobile-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(18, 93, 255, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(18, 93, 255, 0.4);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: block;
    }
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */

.integrations-section {
    position: relative;
}

.integration-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.integration-card img {
    transition: transform 0.3s ease;
}

.integration-card:hover img {
    transform: scale(1.05);
}

/* Integration badge animations */
@keyframes badge-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

.integration-card [style*="background: #D1FAE5"] {
    animation: badge-pulse 3s ease-in-out infinite;
}

/* ============================================
   USP CARDS (LOVDATA & AI)
   ============================================ */

.usp-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.usp-feature-list li {
    transition: transform 0.2s ease;
}

.usp-feature-list li:hover {
    transform: translateX(4px);
}

.usp-badge {
    transition: all 0.3s ease;
}

.usp-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        width: 100%;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero-2026 {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    html body .hero-cta .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        text-align: center;
    }
    
    .trust-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-promo-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-promo {
        width: 100%;
        justify-content: center;
    }
    
    .product-preview-card {
        padding: 12px;
    }
}

@media (max-width: 640px) {
    .integrations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-2026 {
        padding: 48px 16px;
    }
    
    .section-title {
        font-size: var(--text-xl);
    }
}

