/* ============================================
   MODERNE STARTSEITE - ROGHOST
   Complete Stylesheet with all base styles
   ============================================ */

/* ============================================
   CSS RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #1a202c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-green: #48bb78;
    --primary-green-dark: #38a169;
    --secondary-green: #68d391;
    --light-green: #9ae6b4;
    --dark-green: #2f855a;
    --primary-gray: #e2e8f0;
    --secondary-gray: #cbd5e0;
    --light-gray: #4a5568;
    --dark-gray: #1a202c;
    --darker-gray: #171923;
    --card-bg: #2d3748;
    --white: #ffffff;
    --background: #1a202c;
    --background-light: #2d3748;
    --surface: #2d3748;
    --surface-light: #4a5568;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);
    --border-color: #4a5568;
    --text-muted: #718096;
}

/* ============================================
   GENERAL SECTIONS
   ============================================ */

section {
    padding: 100px 0;
    position: relative;
}

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

.section-header.centered {
    text-align: center;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(72, 187, 120, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(72, 187, 120, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(72, 187, 120, 0.03) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--secondary-gray);
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Moderne Buttons mit Icons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 14px rgba(72, 187, 120, 0.4);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.5);
}

.btn-glow {
    position: relative;
}

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

.btn-glow:hover::before {
    transform: translateX(100%);
}

.btn-secondary {
    background: rgba(45, 55, 72, 0.8);
    color: var(--white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(72, 187, 120, 0.1);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Trust Stats */
.hero-trust {
    margin-top: 3rem;
}

.trust-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    filter: grayscale(0.5);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--secondary-gray);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

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

.visual-card {
    position: relative;
    background: rgba(45, 55, 72, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(72, 187, 120, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(72, 187, 120, 0.1), transparent 70%);
    border-radius: 20px;
    animation: pulse 3s ease-in-out infinite;
}

.server-illustration {
    position: relative;
    z-index: 1;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-unit {
    width: 100%;
    height: 50px;
    background: rgba(74, 85, 104, 0.6);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.server-unit::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--secondary-gray);
    border-radius: 50%;
}

.server-unit.pulse::before {
    animation: blink 1.5s ease-in-out infinite;
}

.server-unit.active {
    background: linear-gradient(90deg, rgba(72, 187, 120, 0.3), rgba(104, 211, 145, 0.3));
    border: 1px solid rgba(72, 187, 120, 0.5);
}

.server-unit.active::before {
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
}

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

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    animation: lineFlow 3s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    width: 80%;
    left: 10%;
}

.line-2 {
    top: 50%;
    width: 60%;
    left: 20%;
    animation-delay: 1s;
}

.line-3 {
    top: 75%;
    width: 70%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes lineFlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

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

.metric-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(23, 25, 35, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(72, 187, 120, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    animation: float 4s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    right: -10%;
}

.bubble-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1.5s;
}

.bubble-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 3s;
}

.bubble-icon {
    font-size: 1.25rem;
}

/* ============================================
   PRODUCTS OVERVIEW SECTION
   ============================================ */

.products-overview {
    background: var(--background);
    padding: 100px 0;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(72, 187, 120, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.product-card.featured {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.05), rgba(45, 55, 72, 1));
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.product-card > p {
    color: var(--secondary-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary-gray);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.check {
    color: var(--primary-green);
    font-weight: 700;
}

.btn-product {
    width: 100%;
    justify-content: center;
    background: transparent;
    color: var(--primary-green);
    border: 1px solid var(--border-color);
}

.btn-product:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* ============================================
   STATISTICS SECTION
   ============================================ */

.statistics {
    background: var(--darker-gray);
    padding: 100px 0;
}

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

.statistic-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.statistic-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-icon-wrapper {
    margin-bottom: 1.5rem;
}

.stat-icon {
    font-size: 3rem;
    display: inline-block;
    filter: grayscale(0.5);
    transition: all 0.3s ease;
}

.statistic-card:hover .stat-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.statistic-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.statistic-suffix {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.statistic-card > p {
    color: var(--secondary-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(74, 85, 104, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.stat-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 10px;
    animation: progressLoad 1.5s ease-out;
}

@keyframes progressLoad {
    from {
        width: 0;
    }
}

.stats-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stats-info p {
    color: var(--secondary-gray);
    font-size: 0.875rem;
}

.stats-info small {
    opacity: 0.7;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    background: var(--background);
    padding: 100px 0;
}

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

.feature-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    filter: grayscale(0.5);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.3), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--secondary-gray);
    line-height: 1.6;
}

/* ============================================
   INFRASTRUCTURE SECTION
   ============================================ */

.infrastructure {
    background: var(--darker-gray);
    padding: 100px 0;
}

.infrastructure-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.server-rack-display {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rack-unit {
    background: rgba(74, 85, 104, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.rack-unit:hover {
    border-color: var(--primary-green);
    background: rgba(72, 187, 120, 0.05);
}

.rack-unit.active {
    border-color: var(--primary-green);
    background: linear-gradient(90deg, rgba(72, 187, 120, 0.1), rgba(104, 211, 145, 0.1));
}

.rack-lights {
    display: flex;
    gap: 0.5rem;
}

.light {
    width: 12px;
    height: 12px;
    background: var(--light-gray);
    border-radius: 50%;
}

.light.active {
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
}

.light.pulse-light {
    animation: blink 1.5s ease-in-out infinite;
}

.rack-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-gray);
}

.infra-specs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-category {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.header-icon {
    font-size: 2rem;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--secondary-gray);
}

.spec-value {
    font-weight: 600;
    color: var(--primary-green);
}

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

.testimonials {
    background: var(--background);
    padding: 100px 0;
}

.testimonials-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--background-light);
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.testimonials-placeholder h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.testimonials-placeholder p {
    font-size: 1.125rem;
    color: var(--secondary-gray);
    margin-bottom: 2rem;
}

.trustpilot-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-trustpilot {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00b67a 0%, #005128 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-trustpilot:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 182, 122, 0.3);
}

.btn-trustpilot svg {
    width: 20px;
    height: 20px;
}

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

.testimonial-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--secondary-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 0.875rem;
    color: var(--secondary-gray);
}

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

.contact {
    background: var(--darker-gray);
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    gap: 3rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--secondary-gray);
    margin-bottom: 1rem;
}

.info-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--secondary-green);
}

.contact-form-wrapper {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    background: rgba(23, 25, 35, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 80px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.cta-section .btn-primary:hover {
    background: var(--darker-gray);
    color: white;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

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

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-stats {
        justify-content: center;
    }
    
    .infrastructure-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .floating-metrics {
        display: none;
    }
}
