:root {
    --primary-navy: #1e3a8a;
    --primary-teal: #0d9488;
    --secondary-amber: #f59e0b;
    --secondary-slate: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-900);
    background-color: var(--neutral-50);
}

/* Smooth scrolling enhancements */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0d9488, #1e3a8a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0f766e, #1e40af);
}

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

/* Header Section */
.hero {
    background: linear-gradient(to bottom right, #1e3a8a, rgba(30, 58, 138, 0.9), #0d9488);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.8), rgba(255, 255, 255, 0.6));
    border-radius: 1px;
    opacity: 0.7;
    animation: routeMove 15s linear infinite;
}

.route-line:nth-child(1) {
    top: 25%;
    left: 5%;
    width: 120px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.route-line:nth-child(2) {
    top: 55%;
    right: 10%;
    width: 100px;
    transform: rotate(-20deg);
    animation-delay: 3s;
}

.route-line:nth-child(3) {
    bottom: 35%;
    left: 15%;
    width: 140px;
    transform: rotate(45deg);
    animation-delay: 6s;
}

.route-line:nth-child(4) {
    top: 45%;
    right: 25%;
    width: 90px;
    transform: rotate(-30deg);
    animation-delay: 9s;
}

.route-line:nth-child(5) {
    top: 75%;
    left: 35%;
    width: 110px;
    transform: rotate(60deg);
    animation-delay: 12s;
}

.route-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(13, 148, 136, 1);
    border-radius: 50%;
    opacity: 0.8;
    animation: dotPulse 3s ease-in-out infinite;
}

.route-dot:nth-child(6) {
    top: 25%;
    left: 5%;
    animation-delay: 0s;
}

.route-dot:nth-child(7) {
    top: 55%;
    right: 10%;
    animation-delay: 1s;
}

.route-dot:nth-child(8) {
    bottom: 35%;
    left: 15%;
    animation-delay: 2s;
}

.route-dot:nth-child(9) {
    top: 45%;
    right: 25%;
    animation-delay: 3s;
}

.route-dot:nth-child(10) {
    top: 75%;
    left: 35%;
    animation-delay: 4s;
}

@keyframes routeMove {
    0% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-right {
    text-align: center;
    position: relative;
}

/* Map Animation */
.map-animation {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.map-container {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
    border-radius: 15px;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.road-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.road {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.3);
}

/* Main curved road network */
.road-horizontal {
    height: 12px;
    border-radius: 6px;
}

.road-vertical {
    width: 12px;
    border-radius: 6px;
}

/* Horizontal roads */
.road-1 {
    top: 20%;
    left: 5%;
    width: 70%;
    height: 12px;
    border-radius: 6px;
}

.road-2 {
    top: 65%;
    left: 20%;
    width: 75%;
    height: 12px;
    border-radius: 6px;
}

/* Vertical roads */
.road-3 {
    left: 25%;
    top: 15%;
    width: 12px;
    height: 55%;
    border-radius: 6px;
}

.road-4 {
    left: 65%;
    top: 25%;
    width: 12px;
    height: 45%;
    border-radius: 6px;
}

/* Road intersections */
.road-intersection {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.3);
}

.intersection-1 {
    top: 17%;
    left: 22%;
    width: 18px;
    height: 18px;
}

.intersection-2 {
    top: 62%;
    left: 22%;
    width: 18px;
    height: 18px;
}

.intersection-3 {
    top: 17%;
    left: 62%;
    width: 18px;
    height: 18px;
}

/* Curved road segments */
.road-curve {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.3);
}

.curve-1 {
    top: 35%;
    left: 22%;
    width: 18px;
    height: 32px;
    border-radius: 9px;
}

.curve-2 {
    top: 35%;
    left: 62%;
    width: 18px;
    height: 32px;
    border-radius: 9px;
}

/* Road lane markings */
.road-1::after,
.road-2::after,
.road-3::after,
.road-4::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
}

.road-1::after,
.road-2::after {
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 8px,
        rgba(255, 255, 255, 0.6) 8px,
        rgba(255, 255, 255, 0.6) 16px
    );
}

.road-3::after,
.road-4::after {
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 2px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 8px,
        rgba(255, 255, 255, 0.6) 8px,
        rgba(255, 255, 255, 0.6) 16px
    );
}

.vehicle {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.vehicle-icon {
    font-size: 20px;
    animation: vehicleBounce 2s ease-in-out infinite;
}

.vehicle-1 {
    top: 18%;
    left: 8%;
    animation: moveVehicle1 10s linear infinite;
}

.vehicle-2 {
    top: 63%;
    left: 25%;
    animation: moveVehicle2 12s linear infinite;
    animation-delay: 2s;
}

.vehicle-3 {
    top: 35%;
    left: 25%;
    animation: moveVehicle3 8s linear infinite;
    animation-delay: 4s;
}

.vehicle-4 {
    top: 45%;
    left: 65%;
    animation: moveVehicle4 9s linear infinite;
    animation-delay: 6s;
}

.map-pin {
    position: absolute;
    font-size: 16px;
    z-index: 3;
    animation: pinPulse 3s ease-in-out infinite;
}

.pin-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.pin-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.pin-3 {
    bottom: 25%;
    left: 60%;
    animation-delay: 2s;
}

.tracking-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--neutral-800);
    font-size: 0.75rem;
    animation: popupFloat 4s ease-in-out infinite;
    z-index: 20;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.popup-title {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-navy);
}

.popup-status {
    color: var(--primary-teal);
    font-size: 0.6rem;
    animation: statusBlink 2s ease-in-out infinite;
}

.tracking-items {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tracking-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--neutral-700);
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-teal);
    flex-shrink: 0;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.status-indicator.active {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

/* Vehicle Movement Animations - Following Realistic Roads */
@keyframes moveVehicle1 {
    0% { top: 18%; left: 8%; }    /* Start on road-1 */
    25% { top: 18%; left: 25%; }  /* Reach intersection-1 */
    50% { top: 18%; left: 65%; }  /* Travel to intersection-3 */
    75% { top: 35%; left: 65%; }  /* Move down on road-4 */
    100% { top: 18%; left: 8%; }  /* Return via top road */
}

@keyframes moveVehicle2 {
    0% { top: 63%; left: 25%; }   /* Start on road-2 */
    30% { top: 63%; left: 50%; }  /* Travel along bottom road */
    60% { top: 63%; left: 85%; }  /* Reach end of road-2 */
    80% { top: 63%; left: 50%; }  /* Return direction */
    100% { top: 63%; left: 25%; } /* Back to start */
}

@keyframes moveVehicle3 {
    0% { top: 35%; left: 25%; }   /* Start on road-3 middle */
    25% { top: 20%; left: 25%; }  /* Move up to intersection-1 */
    50% { top: 45%; left: 25%; }  /* Move down */
    75% { top: 63%; left: 25%; }  /* Reach intersection-2 */
    100% { top: 35%; left: 25%; } /* Return to middle */
}

@keyframes moveVehicle4 {
    0% { top: 45%; left: 65%; }   /* Start on road-4 */
    30% { top: 25%; left: 65%; }  /* Move up toward intersection-3 */
    60% { top: 60%; left: 65%; }  /* Move down on road-4 */
    100% { top: 45%; left: 65%; } /* Return to middle */
}

@keyframes vehicleBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pinPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

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

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0 auto 2rem auto;
    }
    
    .map-animation {
        height: 300px;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

.hero-icon {
    margin-bottom: 2.5rem;
    display: block;
    animation: pulse-slow 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.hero-icon svg {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /*text-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);*/
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(13, 148, 136, 0.5), 0 8px 20px -5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(13, 148, 136, 0.6), 0 12px 25px -8px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
    transition: transform 0.1s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -10px rgba(255, 255, 255, 0.15);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: white;
}

.section:nth-child(odd) {
    background-color: var(--neutral-50);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-teal);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--neutral-600);
    line-height: 1.7;
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy/90) 100%);
    color: white;
}

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

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: var(--neutral-900);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--neutral-700);
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--neutral-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

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

.form-submit {
    background: var(--primary-teal);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: var(--primary-teal/90);
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: var(--success);
    color: white;
    border: 1px solid var(--success);
    opacity: 1 !important;
    font-weight: 600;
}

.form-message.error {
    background: var(--danger);
    color: white;
    border: 1px solid var(--danger);
}

/* Turnstile */
.turnstile-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, var(--neutral-50) 0%, white 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--neutral-200);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-teal);
}



.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal/90) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.3);
    z-index: 10;
}



.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--neutral-600);
    margin-left: 0.25rem;
}

.price-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
}

.pricing-description {
    color: var(--neutral-600);
    font-size: 1.1rem;
    margin: 0;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
}

.pricing-features .feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: var(--primary-teal);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item span:last-child {
    color: var(--neutral-700);
    font-size: 1rem;
    line-height: 1.5;
}

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

.pricing-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.pricing-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #0f766e 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.3);
}

.pricing-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(13, 148, 136, 0.4);
}

.pricing-btn.btn-secondary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #0f766e 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.3);
}

.pricing-btn.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(13, 148, 136, 0.4);
}

.pricing-btn.btn-enterprise {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #0f766e 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.3);
}

.pricing-btn.btn-enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(13, 148, 136, 0.4);
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: 0;
}

/* Pricing FAQ */
.pricing-faq {
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-teal);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .price-text {
        font-size: 2rem;
    }
    
    .pricing-faq {
        margin-top: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-text {
        font-size: 1.75rem;
    }
    
    .pricing-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        font-size: 1.125rem;
    }
}

/* Legal Pages Styling */
.legal-header {
    background: var(--primary-navy);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.header-content .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.header-content nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.header-content nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
    line-height: 1.6;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    color: var(--neutral-600);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--neutral-200);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 600;
    padding-top: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--neutral-700);
}

.legal-section ul, .legal-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
}

.legal-section a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    color: var(--primary-navy);
    font-weight: 600;
}

/* Cookie Table Styling */
.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background: var(--primary-navy);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
}

.cookie-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--neutral-200);
    font-size: 0.875rem;
    color: var(--neutral-700);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: var(--neutral-50);
}

/* Cookie Consent Section */
.cookie-consent-section {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid var(--neutral-200);
}

.cookie-settings-btn {
    background: var(--primary-teal);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cookie-settings-btn:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* Legal Footer */
.legal-footer {
    background: var(--neutral-800);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.legal-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-table {
        font-size: 0.75rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .legal-content h1 {
        font-size: 1.75rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .cookie-consent-section {
        padding: 1.5rem;
    }
}

/* Platform Screenshots Showcase */
.platform-showcase {
    background: linear-gradient(135deg, var(--neutral-50) 0%, white 100%);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.screenshot-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.screenshot-item:nth-child(even) {
    direction: rtl;
}

.screenshot-item:nth-child(even) .screenshot-content {
    direction: ltr;
}

.screenshot-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
}

.screenshot-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.2);
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-container:hover .screenshot-image {
    transform: scale(1.02);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-container:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-badge {
    background: white;
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.screenshot-container:hover .screenshot-badge {
    transform: translateY(0);
}

.screenshot-content {
    padding: 1rem 0;
}

.screenshot-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.screenshot-description {
    font-size: 1.125rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.screenshot-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.screenshot-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--neutral-700);
}

.screenshot-features li::before {
    content: "✓";
    width: 1.25rem;
    height: 1.25rem;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Responsive Design for Screenshots */
@media (max-width: 768px) {
    .screenshot-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .screenshot-item:nth-child(even) {
        direction: ltr;
    }
    
    .screenshot-title {
        font-size: 1.5rem;
    }
    
    .screenshot-description {
        font-size: 1rem;
    }
    
    .screenshot-grid {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .screenshot-item {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .screenshot-title {
        font-size: 1.25rem;
    }
    
    .screenshot-description {
        font-size: 0.925rem;
    }
    
    .screenshot-grid {
        gap: 2rem;
    }
}

/* Main Footer Styling */
.main-footer {
    background: var(--neutral-800) !important;
    color: white;
    padding: 3rem 0 1rem 0 !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--neutral-600);
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-tagline {
    color: var(--neutral-400);
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--neutral-400);
    font-size: 0.875rem;
}

.footer-compliance {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.footer-compliance span:nth-child(even) {
    color: var(--neutral-600);
}

/* Responsive Design for Main Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-compliance {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 2rem 0 1rem 0 !important;
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 1.25rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-compliance {
        font-size: 0.625rem;
        gap: 0.5rem;
    }
}
