/* ===================================
   Blue Streak Domains - Design System Compliant
   Based on Blue Streak Group Design System v1.0
   =================================== */

/* ===================================
   CSS Variables - Brand Colors
   =================================== */
:root {
    /* Blue Streak Brand Colors */
    --primary-blue: #0066CC;
    --dark-blue: #003D7A;
    --light-blue: #4A90E2;
    --accent-blue: #00A3FF;
    
    /* Neutral Colors - Dark Theme */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --bg-primary: #0A0E1A;
    --bg-secondary: #111827;
    --bg-tertiary: #1A1F35;
    --bg-card: #141B2D;
    --text-primary: #FFFFFF;
    --text-secondary: #B4B8C5;
    --text-muted: #6B7280;
    --border-color: #1F2937;
    --border-hover: #2D3748;
    
    /* Gradient Colors */
    --gradient-1: linear-gradient(135deg, #0066CC 0%, #00A3FF 100%);
    --gradient-2: linear-gradient(135deg, #003D7A 0%, #0066CC 100%);
    --gradient-3: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 163, 255, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Typography */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* ===================================
   Global 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', sans-serif;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.75rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-blue);
}

/* ===================================
   Navigation - Design System Compliant
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(15, 20, 40, 0.85) 0%, rgba(10, 15, 30, 0.95) 100%);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0, 102, 204, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

/* Logo Box (180×48px) */
.logo {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 48px;
    z-index: 10;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-full {
    height: 36px;
    width: auto;
}

/* Centered Menu Items */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

/* CTA Button (180×48px) */
.nav-cta {
    z-index: 10;
}

.nav-cta .btn-primary {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    min-width: 180px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
    color: var(--white);
    font-weight: 500;
    transition: var(--transition-fast);
    border: none;
}

.nav-cta .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.35);
    background: linear-gradient(135deg, #0052A3 0%, #004080 100%);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   Hero Section - Design System Compliant
   =================================== */
.hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.65) 100%),
        url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(10, 14, 26, 0.8) 70%, #0a0e1a 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 1) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-image-container-fullwidth {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
}

/* Hero Main Headline */
.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 30px rgba(0, 102, 204, 0.4), 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* Hero Company Name */
.hero-company-name {
    font-size: 1.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 3px 20px rgba(0, 102, 204, 0.3), 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-text-below {
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Subtitle */
.hero-subtitle-below {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 2rem auto 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

/* Hero Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 12rem;
    margin-top: 3rem;
    justify-content: center;
}

/* Hero Stats Section */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Buttons - Design System Compliant
   =================================== */
.btn-primary {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.35);
    background: linear-gradient(135deg, #0052A3 0%, #004080 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

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

.service-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.3);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.service-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li i {
    color: var(--primary-blue);
    font-size: 0.875rem;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.pricing-category-title {
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

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

.pricing-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.pricing-period {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--primary-blue);
}

.pricing-button {
    width: 100%;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-benefits {
    list-style: none;
    margin-top: 2rem;
}

.contact-benefits li {
    color: var(--text-secondary);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-benefits li i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.form-container {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

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

/* ===================================
   SuiteDash Embedded Forms
   =================================== */
#suitedash-contact-form iframe {
    border: none;
    width: 100%;
    height: 1300px;
    min-height: 1300px;
}

#suitedash-contact-form {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Form Fallback */
.form-fallback {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-fallback p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-fallback .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.form-fallback .btn-primary i {
    font-size: 0.9rem;
}

/* ===================================
   Footer - Design System Compliant
   =================================== */
.footer {
    background: #2B4C7E;
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.65rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a i {
    font-size: 0.9rem;
    width: 16px;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

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

/* ===================================
   Toast Notification
   =================================== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--bg-card);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition-normal);
    z-index: 9999;
    border: 1px solid var(--primary-blue);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* ===================================
   Cookie Consent
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--primary-blue);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--white);
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
    cursor: pointer;
}

/* ===================================
   Policy Pages
   =================================== */
.policy-section {
    min-height: 100vh;
    padding: 140px 0 80px;
    background-color: var(--bg-primary);
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.policy-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.policy-block {
    margin-bottom: 50px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-blue);
}

.policy-block h3 {
    font-size: 1.5rem;
    color: var(--light-blue);
    margin: 30px 0 15px;
}

.policy-block p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-block ul,
.policy-block ol {
    margin: 20px 0 20px 30px;
    color: var(--text-secondary);
}

.policy-block li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-block strong {
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.policy-block a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.policy-block a:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.policy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.policy-footer p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
}

.policy-footer .btn {
    display: inline-block;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-tertiary);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: var(--transition-normal);
        transform: none;
        box-shadow: var(--shadow-xl);
        align-items: flex-start;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Hero */
    .hero-image-container-fullwidth {
        padding: 2rem 2rem 2rem 2rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-company-name {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-below {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        margin-bottom: 6rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Policy Pages */
    .policy-content {
        padding: 30px 25px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    /* Cookie Consent */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-company-name {
        font-size: 1.25rem;
    }
    
    .logo,
    .nav-cta .btn-primary {
        min-width: 140px;
        height: 40px;
    }
    
    .toast {
        right: 20px;
        left: 20px;
        bottom: 20px;
    }
}
