/* =================================================================
   AgOpenGPS.de - Modern Landing Page Styles
   ================================================================= */

:root {
    /* AgrarMonitor Farbschema - Grün-Töne */
    --primary: #2D5016;
    --primary-light: #4A7C2C;
    --primary-dark: #1A3309;
    --accent: #7CB342;
    --accent-light: #9CCC65;
    
    /* Zusatzfarben */
    --secondary: #2196F3;
    --orange: #FF9800;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;
    
    /* Graustufen */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    --white: #FFFFFF;
    --black: #000000;
    
    /* Schatten */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* =================================================================
   Reset & Base Styles
   ================================================================= */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* =================================================================
   Navigation
   ================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo-accent {
    color: var(--accent);
}

.logo a:hover {
    color: var(--primary-light);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* =================================================================
   Hero Section
   ================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
    transform-origin: center center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 179, 66, 0.15) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.35) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(45, 80, 22, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 80px 0;
    transform: translateZ(0);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.4);
}

.text-accent {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
}

.hero-feature svg {
    flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* =================================================================
   Buttons
   ================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

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

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(124, 179, 66, 0.3), 0 0 30px rgba(124, 179, 66, 0.2);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4), 0 0 40px rgba(124, 179, 66, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
}

/* =================================================================
   Sections
   ================================================================= */

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* =================================================================
   Page Hero (für Unterseiten)
   ================================================================= */

.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    background: var(--gray-900);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    /* Später hier ein Screenshot-Bild einfügen */
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(0, 0, 0, 0.7));
}

.page-hero .container {
    position: relative;
    z-index: 10;
    padding-top: 90px; /* Mehr Abstand zur Navbar */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 600;
}

.page-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero {
        height: 350px;
    }
    
    .page-hero .container {
        padding-top: 100px; /* Noch mehr auf Mobile */
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
}

/* =================================================================
   Content Section (für Unterseiten)
   ================================================================= */

.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-intro {
    margin-bottom: 48px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--gray-700);
    font-weight: 500;
}

.content-block {
    margin-bottom: 32px;
}

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-top: 64px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.content-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.content-list li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.content-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-left: 4px solid var(--accent);
    padding: 40px;
    border-radius: 8px;
    margin: 48px 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.highlight-box h2 {
    margin-top: 0;
    color: var(--primary);
}

.highlight-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.highlight-list li {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-700);
}

.highlight-list svg {
    flex-shrink: 0;
    stroke: var(--accent);
    margin-top: 2px;
}

.content-cta {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid var(--gray-200);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .content-section {
        padding: 48px 0;
    }
    
    .content-wrapper {
        padding: 0 20px;
    }
    
    .lead-text {
        font-size: 19px;
    }
    
    .content-wrapper h2 {
        font-size: 26px;
        margin-top: 48px;
    }
    
    .content-wrapper h3 {
        font-size: 21px;
    }
    
    .content-wrapper p,
    .content-list li {
        font-size: 16px;
    }
    
    .highlight-box {
        padding: 24px;
        margin: 32px 0;
    }
    
    .content-cta {
        flex-direction: column;
        margin-top: 48px;
    }
}

/* =================================================================
   Page Transitions
   ================================================================= */

body {
    opacity: 0;
    animation: pageEnter 0.4s ease-in forwards;
}

@keyframes pageEnter {
    to {
        opacity: 1;
    }
}

body.page-exit {
    animation: pageExit 0.3s ease-out forwards;
}

@keyframes pageExit {
    to {
        opacity: 0;
    }
}

/* =================================================================
   Feature Sections (Bild-Text Wechsel)
   ================================================================= */

.feature-section {
    background: var(--white);
    padding: 100px 0;
}

.feature-section:nth-of-type(even) {
    background: var(--gray-50);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-section-reverse .feature-grid {
    direction: rtl;
}

.feature-section-reverse .feature-content,
.feature-section-reverse .feature-image {
    direction: ltr;
}

.feature-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border: 2px dashed var(--gray-300);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.image-placeholder p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.feature-content {
    max-width: 600px;
}

.feature-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-text {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--gray-700);
}

.feature-list svg {
    flex-shrink: 0;
    stroke: var(--accent);
    margin-top: 2px;
}

@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-section-reverse .feature-grid {
        direction: ltr;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-text {
        font-size: 16px;
    }
}

/* =================================================================
   Video Sections (Fullwidth)
   ================================================================= */

.video-section {
    padding: 0;
    position: relative;
    background: var(--black);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.video-container-fullwidth video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-align: center;
    padding: 40px;
}

.video-placeholder svg {
    opacity: 0.5;
    margin-bottom: 24px;
}

.video-placeholder p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

.video-overlay-text {
    position: relative;
    z-index: 10;
    padding: 40px 0;
}

.video-overlay-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .video-section {
        min-height: 50vh;
    }
    
    .video-overlay-text {
        padding: 24px 0;
    }
}

/* =================================================================
   USPs Section
   ================================================================= */

.usps-section {
    background: var(--gray-50);
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.usp-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.usp-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.usp-icon-green {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: var(--white);
}

.usp-icon-blue {
    background: linear-gradient(135deg, #1976D2, var(--secondary));
    color: var(--white);
}

.usp-icon-orange {
    background: linear-gradient(135deg, #F57C00, var(--orange));
    color: var(--white);
}

.usp-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.usp-text {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.usp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.usp-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

/* Social Proof Stripe */
.social-proof-stripe {
    margin-top: 60px;
    padding: 32px 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.social-proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-proof-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    font-weight: 300;
}

.social-proof-message {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
}

.social-proof-message svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .social-proof-stripe {
        padding: 24px 20px;
        margin-top: 40px;
    }
    
    .social-proof-content {
        gap: 24px;
    }
    
    .social-proof-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* =================================================================
   How It Works Section
   ================================================================= */

.how-it-works {
    background: var(--white);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.step {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.step-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    left: 28px;
    top: 56px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--gray-300));
}

.step:last-child .step-connector {
    display: none;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-connector {
        display: none;
    }
}

/* =================================================================
   Products Section
   ================================================================= */

.products-teaser {
    background: var(--gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.product-badge-premium {
    background: linear-gradient(135deg, var(--orange), #F57C00);
}

.product-image {
    background: var(--gray-100);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder {
    color: var(--gray-400);
}

.product-content {
    padding: 32px;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-700);
    font-size: 14px;
}

.product-features svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--accent);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-label {
    color: var(--gray-600);
    font-size: 14px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.price-info {
    color: var(--gray-500);
    font-size: 13px;
}

/* =================================================================
   Trust Section
   ================================================================= */

.trust-section {
    background: var(--white);
}

.trust-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.trust-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.trust-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
}

.trust-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.trust-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

@media (max-width: 968px) {
    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-image {
        order: -1;
    }
}

/* =================================================================
   Support Section
   ================================================================= */

.support-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.support-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.support-item {
    display: flex;
    gap: 16px;
}

.support-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.support-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.support-item p {
    opacity: 0.9;
    font-size: 14px;
}

.support-guarantee {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.guarantee-icon {
    font-size: 32px;
}

.guarantee-text {
    line-height: 1.6;
}

/* Support Card Stack */
.support-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-card-item {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-900);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.support-card-item:hover {
    transform: translateX(8px);
}

.support-card-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.support-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.support-card-subtitle {
    font-size: 14px;
    color: var(--gray-600);
}

@media (max-width: 968px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   CTA Section
   ================================================================= */

.cta-section {
    background: var(--gray-50);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 60px 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 18px;
    }
}

/* =================================================================
   Footer
   ================================================================= */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-text {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
}

.footer-contact svg {
    flex-shrink: 0;
    stroke: var(--gray-500);
}

.footer-contact a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* =================================================================
   Utility Classes
   ================================================================= */

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
