/* Navigation alignment fix - v6.4 - FINAL ALIGNMENT FIX */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #86efac;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    animation: slideUp 0.3s ease-out;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-link {
    color: var(--primary-light);
    text-decoration: underline;
    margin-left: 10px;
    white-space: nowrap;
}

.cookie-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-link {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    flex-shrink: 0;
    white-space: nowrap;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.brand-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.brand-solutions {
    color: #d97706; /* Fallback color */
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

/* Add a subtle glow effect for supported browsers */
.brand-solutions::before {
    content: 'Solutions';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: rgba(217, 119, 6, 0.3);
    filter: blur(1px);
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin: 0 1rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    line-height: 1.2;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    flex-shrink: 0;
    margin-left: 0.8rem;
    display: flex;
    align-items: center;
    min-width: fit-content;
}

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

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

/* Selector Container */
.selector-container {
    display: flex;
    align-items: center;
    margin-left: 0.8rem;
    gap: 0.5rem;
}


.language-select,
.currency-select {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-secondary);
    padding: 0.3rem 1rem 0.3rem 0.4rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.3rem center;
    background-repeat: no-repeat;
    background-size: 0.7rem;
    height: 32px;
    line-height: 1;
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.language-select,
.currency-select {
    width: fit-content;
}

.language-select:hover,
.currency-select:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.language-select:focus,
.currency-select:focus {
    outline: none;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--background-alt);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 1px;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    border: none;
    touch-action: manipulation;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    line-height: 1.2;
    min-height: 44px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #15803d);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--background-alt);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    min-height: 56px;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(45deg);
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.3em;
    background: var(--primary-light);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Professional Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(10deg);
    animation: float 8s ease-in-out infinite;
    width: 100%;
    max-width: 500px;
    border: 1px solid #e2e8f0;
}

.preview-header {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ef4444; }
.control.minimize { background: #f59e0b; }
.control.maximize { background: #22c55e; }

.address-bar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    font-size: 0.8rem;
    color: #64748b;
}

.secure-icon {
    font-size: 0.7rem;
}

.preview-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 300px;
}

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

.logo-placeholder {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 8px;
}

.nav-items {
    display: flex;
    gap: 1rem;
}

.nav-item {
    width: 60px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
}

.hero-section {
    margin-bottom: 2rem;
}

.hero-text {
    margin-bottom: 1.5rem;
}

.title-line {
    height: 12px;
    background: linear-gradient(90deg, #1e293b, #64748b);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.title-line.large { width: 80%; }
.title-line.medium { width: 60%; }

.subtitle-line {
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
    margin-bottom: 0.25rem;
}

.subtitle-line.short { width: 40%; }

.preview-cta-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.preview-btn-primary {
    width: 80px;
    height: 24px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 8px;
}

.preview-btn-secondary {
    width: 60px;
    height: 24px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

.feature-text {
    flex: 1;
}

.feature-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 0.25rem;
    width: 100%;
}

.feature-line.short {
    width: 70%;
}

@keyframes float {
    0%, 100% { 
        transform: perspective(1000px) rotateY(-5deg) rotateX(10deg) translateY(0px);
    }
    50% { 
        transform: perspective(1000px) rotateY(-5deg) rotateX(10deg) translateY(-15px);
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.guarantee-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--text-primary);
}

.check-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .guarantee-features {
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;
    }
    
    .guarantee-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Referral Program Section */
.referral-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-top: 1px solid var(--border-light);
}

.referral-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.referral-header {
    margin-bottom: 3rem;
}

.referral-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.referral-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.referral-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.referral-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.referral-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.referral-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--background);
}

/* Main Package */
.main-package {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 2px solid var(--primary-color);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.package-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.main-package h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 0;
}

.package-content {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 2rem;
    align-items: start;
}

.package-features h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
}

.package-addons {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.package-addons h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.addon-name {
    color: var(--text-primary);
    font-weight: 500;
}

.addon-price {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.package-pricing {
    background: var(--background-alt);
    padding: 1.25rem;
    border-radius: var(--border-radius);
}

.main-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.main-price .price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.main-price .price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.addon-bullets {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.addon-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.addon-bullet:last-child {
    margin-bottom: 0;
}

.addon-bullet span:first-child {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.complete-package {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.complete-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.complete-price {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.complete-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Add-ons Section */
.addons-section {
    margin-top: 4rem;
}

.addons-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.addon-card {
    background: var(--background-alt);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.addon-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

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

.addon-icon {
    font-size: 1.5rem;
}

.addon-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.addon-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
}

/* Package Total */
.package-total {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.total-breakdown p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.total-price {
    margin-top: 1.5rem;
}

.total-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.total-label {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.services-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.service-option {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 2px solid var(--border-light);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-option.featured {
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-option.premium {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fefbf3 0%, #fff9e6 100%);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-option.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.service-option.premium:hover {
    transform: scale(1.02) translateY(-5px);
}

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

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

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

.service-option h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

.service-features {
    flex-grow: 1;
}

.service-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.service-extra {
    background: var(--background-alt);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.service-note {
    background: var(--background-alt);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.service-pricing {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-light);
}

.price-from {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    font-family: 'Space Grotesk', sans-serif;
}

.price-amount .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price-amount .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.included-features {
    background: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

.included-features h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Fast Delivery Section - Updated */
.fast-delivery-section {
    padding: 5rem 0;
    background: var(--background);
}

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

.fast-delivery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.speed-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.fast-delivery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.fast-delivery-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.delivery-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.timeline-item {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.timeline-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(34, 197, 94, 0.2);
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.timeline-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.fast-delivery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    background: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border);
}

.stat-item {
    color: var(--text-primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Fast Delivery Mobile Responsive */
@media (max-width: 768px) {
    .fast-delivery-section {
        padding: 3rem 0;
    }
    
    .fast-delivery-title {
        font-size: 2rem;
    }
    
    .fast-delivery-subtitle {
        font-size: 1.1rem;
    }
    
    .delivery-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
    
    .timeline-time {
        font-size: 1.25rem;
    }
    
    .fast-delivery-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Projects Hero Section */
.projects-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

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

.projects-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.projects-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Navigation active state */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Projects Section - Redesigned */
.projects-section {
    padding: 5rem 0;
    background: var(--background);
}

.projects-header {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-item {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.project-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 197, 94, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-image-real {
    transform: scale(1.05);
}

.project-view-btn {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-info {
    padding: 2rem;
}

.project-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--background-alt);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.projects-note {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.projects-note-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.8;
}

.projects-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.projects-cta-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Projects Mobile Responsive */
@media (max-width: 768px) {
    .projects-section {
        padding: 3rem 0;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-image-container {
        height: 200px;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .project-name {
        font-size: 1.25rem;
    }
    
    .project-desc {
        font-size: 0.9rem;
    }
    
    .projects-cta {
        padding: 2rem 1rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Legacy Features Section (keeping for compatibility) */
.features {
    padding: 6rem 0;
    background: var(--background);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--background-alt);
}


.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    justify-items: center;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

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

.pricing-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 2rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

.cta-buttons .btn-primary:hover {
    background: var(--background-alt);
}

/* Contact Section - UX Optimized */
.contact {
    padding: 6rem 0;
    background: var(--background-alt);
}

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

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.contact-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.languages-note-inline {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.languages-note-inline p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    opacity: 0.95;
}

.languages-note-inline strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

/* Primary CTA - Hero Booking Section */
.primary-cta-section {
    margin-bottom: 4rem;
}

.hero-booking {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 25px 50px rgba(16, 185, 129, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.booking-content h3 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    line-height: 1.2;
    animation: title-glow 2s ease-in-out infinite alternate;
}

.highlight-pop {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.5));
    animation: pop-bounce 1.5s ease-in-out infinite;
    display: inline-block;
    transform-origin: center;
}

@keyframes title-glow {
    0% {
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

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

.booking-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-hero-booking {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.btn-hero-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s;
}

.btn-hero-booking:hover::before {
    left: 100%;
}
.btn-hero-booking:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(255, 255, 255, 0.5);
    color: var(--primary-color);
    text-decoration: none;
    animation: bounce-pulse 0.6s ease-in-out;
}

@keyframes bounce-pulse {
    0%, 100% { transform: translateY(-5px) scale(1.05); }
    50% { transform: translateY(-8px) scale(1.08); }
}

.booking-benefits {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    position: relative;
    z-index: 2;
}

.booking-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.languages-note-compact {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    margin: 1.5rem 0;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.languages-note-compact p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.booking-languages {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.booking-languages .languages-note-inline {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    width: 100%;
    text-align: center;
    height: fit-content;
    align-self: start;
    margin-top: 0.5rem;
}

.booking-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.meeting-preview {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 280px;
}

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

.preview-dots {
    display: flex;
    gap: 0.25rem;
}

.preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.preview-title {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

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

.preview-content > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Alternative Contact Methods */
.contact-alternatives {
    margin-top: 3rem;
}

.alternatives-header {
    text-align: center;
    margin-bottom: 3rem;
}

.alternatives-header h4 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.alternatives-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-options-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.option-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--background-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-header h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-option p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Expanded Form */
.expanded-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.expanded-form input,
.expanded-form select,
.expanded-form textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: white;
}

.expanded-form input:focus,
.expanded-form select:focus,
.expanded-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.btn-expanded {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
}

.btn-expanded:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* WhatsApp Dropdown */
.whatsapp-container {
    position: relative;
}

.whatsapp-dropdown {
    margin-top: 0.75rem;
}

.dropdown-toggle {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.dropdown-toggle:hover {
    background: white;
    border-color: var(--primary-color);
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    margin-top: 0.25rem;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.dropdown-item:hover {
    background: #25d366;
    color: white;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

/* Direct Contact Links */
.direct-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.direct-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    font-weight: 500;
}

.direct-link:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    text-decoration: none;
}

.direct-link.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.link-icon {
    font-size: 1.25rem;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

/* Mobile Responsive Styles for Contact Section */
@media (max-width: 1024px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .hero-booking {
        padding: 2.5rem 2rem;
    }
    
    .booking-content h3 {
        font-size: 2.4rem;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expanded-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .primary-cta-section {
        margin-bottom: 3rem;
    }
    
    .hero-booking {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .booking-content h3 {
        font-size: 2rem;
    }
    
    .booking-content p {
        font-size: 1rem;
    }
    
    .btn-hero-booking {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
        width: 100%;
        justify-content: center;
    }
    
    .booking-benefits {
        gap: 1rem;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .meeting-preview {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .languages-note-inline {
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .languages-note-inline p {
        font-size: 0.9rem;
    }
    
    .alternatives-header h4 {
        font-size: 1.5rem;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-option {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .send-details.expanded {
        background: var(--background-alt);
        border: 2px solid var(--primary-color);
    }
    
    .option-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .option-header h5 {
        font-size: 1.1rem;
    }
    
    .compact-form input,
    .compact-form select,
    .compact-form textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn-compact {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .quick-btn {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        text-align: center;
        min-height: 48px;
        border-radius: 8px;
    }
    
    .direct-link {
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
        min-height: 48px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .whatsapp-dropdown {
        margin-top: 0.5rem;
    }
    
    .dropdown-menu {
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--border);
    }
    
    .dropdown-item {
        padding: 1rem;
        min-height: 48px;
        font-size: 0.95rem;
        border-radius: 6px;
        margin: 0.25rem;
    }
    
    .link-icon {
        font-size: 1.5rem;
        width: 36px;
    }
    
    /* Calendly mobile responsiveness */
    .calendly-popup {
        background: transparent !important;
    }
    
    .calendly-inline-widget {
        min-height: 500px !important;
        height: 80vh !important;
        max-height: 600px !important;
        width: 90vw !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        border-radius: 8px !important;
    }
    
    .calendly-popup .calendly-popup-close {
        top: 10px !important;
        right: 10px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
}

.whatsapp-options {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.whatsapp-btn {
    background: var(--primary-light);
    color: var(--text-primary);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.whatsapp-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

/* Contact Form */
.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-top: 0;
}

/* Booking Actions */
.booking-actions {
    text-align: center;
}

.booking-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
}

.booking-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
    text-decoration: none;
}

.booking-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

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

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

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

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

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Calendly Popup Customization - Transparent Background */
.calendly-popup-wrapper {
    z-index: 9999 !important;
    background: rgba(0, 0, 0, 0.5) !important; /* Semi-transparent backdrop */
}

.calendly-popup {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.calendly-popup-content {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

.calendly-inline-widget {
    min-height: 600px !important;
    height: 600px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    background: white !important;
}

/* Override Calendly's default spacing */
.calendly-popup .calendly-popup-content {
    padding: 0 !important;
    background: transparent !important;
}

.calendly-popup .calendly-popup-close {
    top: 20px !important;
    right: 20px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 20px !important;
    z-index: 10001 !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    cursor: pointer !important;
}

.calendly-popup .calendly-popup-close:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.05) !important;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--background-alt);
}

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

.team-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: var(--transition);
}

.team-member:hover .avatar-placeholder {
    transform: scale(1.1);
}

.member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.team-stats .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.team-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .language-switcher {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        height: auto;
        min-height: 70px;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.mobile-menu-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        gap: 1rem;
        z-index: 1000;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.mobile-menu-open a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
        text-align: center;
        font-size: 1rem;
    }
    
    .nav-links.mobile-menu-open a:last-of-type {
        border-bottom: none;
    }
    
    .nav-links.mobile-menu-open .selector-container {
        margin-left: 0;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .nav-links.mobile-menu-open .language-select,
    .nav-links.mobile-menu-open .currency-select {
        font-size: 0.85rem;
        padding: 0.5rem;
        min-width: 80px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero .container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        padding: 0 1.5rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-cta {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .hero-content {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        min-height: 48px;
        font-weight: 600;
        border-radius: 12px;
    }
    
    .hero-visual {
        order: -1;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .dashboard-preview {
        max-width: 100%;
        transform: none !important;
        animation: none !important;
    }
    
    .floating-card {
        width: 100%;
        max-width: 280px;
        transform: rotate(0deg);
        margin: 0 auto;
    }
    
    .services-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-option {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .service-option.featured {
        transform: none;
        border: 2px solid var(--primary-color);
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }
    
    .service-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
        font-weight: 700;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-methods-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-quick-link {
        justify-content: center;
        padding: 1rem;
    }
    
    /* Calendly mobile responsiveness */
    .calendly-popup {
        background: transparent !important;
    }
    
    .calendly-inline-widget {
        min-height: 500px !important;
        height: 80vh !important;
        max-height: 600px !important;
        width: 90vw !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        border-radius: 8px !important;
    }
    
    .calendly-popup .calendly-popup-close {
        top: 10px !important;
        right: 10px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
    
    .contact-main-unified {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-left {
        gap: 1.5rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    /* Team Section Mobile */
    .team-section {
        padding: 4rem 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .team-stats .stat-number {
        font-size: 2rem;
    }

    .quick-start-section {
        padding: 1.5rem;
    }
    
    .booking-section {
        padding: 2rem;
    }
    
    .additional-options {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expanded-form input,
    .expanded-form select,
    .expanded-form textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 48px;
    }
    
    .expanded-form textarea {
        min-height: 120px;
    }
    
    .btn-expanded {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .calendly-widget-container {
        padding: 1rem;
    }
    
    .calendly-inline-widget {
        height: 550px !important;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .included-features {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .included-features h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
        margin: 0;
    }
    
    .feature-item {
        padding: 1rem;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .feature-item .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.75rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero .container {
        text-align: center !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        width: 100% !important;
        display: block !important;
    }
    
    .selector-container {
        gap: 0.3rem;
    }
    
    .included-features {
        padding: 1.5rem 0.75rem;
        margin-top: 1.5rem;
    }
    
    .included-features h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        max-width: 280px;
    }
    
    .feature-item .feature-icon {
        font-size: 1.75rem;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
}

/* Professional Value Comparison */
.value-comparison {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid #e2e8f0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.comparison-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
}

.comparison-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.time-selector,
.plan-selector,
.competitor-selector {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.time-selector label,
.plan-selector label,
.competitor-selector label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.range-input {
    position: relative;
    margin-bottom: 1rem;
}

#timeRange {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

#timeRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #22c55e;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
    transition: all 0.2s ease;
}

#timeRange::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

#timeRange::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #22c55e;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.time-display {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

#competitorSelect,
#planSelect {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 0.95rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

#competitorSelect:hover,
#planSelect:hover {
    border-color: #22c55e;
}

#competitorSelect:focus,
#planSelect:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.cost-card {
    background: white;
    border-radius: 20px;
    padding: 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 transparent;
    transition: all 0.3s ease;
    position: relative;
}

.cost-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cost-card.frogbit {
    border-color: #22c55e;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.cost-card.competitor {
    border-color: #ef4444;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

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

.provider-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.provider-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.provider-info span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.cost-breakdown {
    text-align: center;
    margin-bottom: 2rem;
}

.total-cost {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.total-cost .currency {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 600;
}

.total-cost .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e;
    letter-spacing: -0.025em;
}

.cost-card.competitor .total-cost .amount {
    color: #ef4444;
}

.payment-type {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.benefit svg {
    flex-shrink: 0;
}

.limitations .benefit {
    color: #7f1d1d;
}

.savings-summary {
    text-align: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px -5px rgba(34, 197, 94, 0.25);
}

.savings-amount {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.savings-amount .currency {
    color: inherit;
}

.savings-percent {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-comparison {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .comparison-title {
        font-size: 1.8rem;
    }
    
    .comparison-controls {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cost-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .total-cost .amount {
        font-size: 2rem;
    }
    
    .savings-summary {
        text-align: center;
        padding: 1.5rem;
        background: var(--primary-color);
        color: white;
        border-radius: 12px;
        margin: 0 1rem;
    }
    
    .savings-amount {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .total-cost .amount {
        font-size: 2.5rem;
    }
    
    .savings-amount {
        font-size: 1.5rem;
    }
}

/* Professional Value Proposition Section */
.value-proposition {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.value-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.value-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item: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);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid #bbf7d0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: scale(1.1);
}

.value-item:hover .value-icon svg path,
.value-item:hover .value-icon svg circle {
    stroke: white;
}

.value-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .value-proposition {
        padding: 3rem 0;
    }
    
    .value-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .value-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .value-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .value-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
    }
}


/* Service Icons Enhancement */
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid #bbf7d0;
}

/* Feature Icons Enhancement */
.included-features .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid #bbf7d0;
}

/* Fix Competitor Dropdown Font */
#competitorSelect {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 0.95rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

/* Final mobile accessibility and performance improvements */
@media (max-width: 768px) {
    /* Prevent horizontal scroll and improve touch */
    html, body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }
    
    /* Better focus states for mobile navigation */
    button:focus,
    .btn:focus,
    input:focus,
    select:focus,
    textarea:focus,
    a:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Improve mobile menu performance */
    .nav-links.mobile-menu-open {
        will-change: transform, opacity;
    }
    
    /* Better mobile typography baseline */
    h1, h2, h3, h4, h5, h6 {
        word-break: break-word;
        hyphens: auto;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px;
    }
}

/* MOBILE HERO BANNER FIX - ABSOLUTE OVERRIDE */
@media (max-width: 768px) {
    /* Disable all animations and transforms on mobile */
    .hero *,
    .hero-visual *,
    .dashboard-preview,
    .hero-booking,
    .hero-title,
    .highlight-pop {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
    
    .hero {
        padding: 4rem 0 3rem !important;
        min-height: auto !important;
        overflow: hidden !important;
    }
    
    .hero .container {
        max-width: 100vw !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: calc(100vw - 40px) !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
        line-height: 1.3 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1rem auto !important;
        padding: 0 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        line-height: 1.5 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 2rem auto !important;
        padding: 0 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-cta {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 0 !important;
    }
    
    .hero-visual {
        width: 100% !important;
        order: -1 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 20px !important;
    }
    
    /* Make dashboard preview squared and optimized for mobile */
    .dashboard-preview {
        max-width: 300px !important;
        height: 300px !important;
        margin: 0 auto !important;
        transform: scale(0.75) !important;
        border-radius: 16px !important;
        object-fit: cover !important;
    }
    
    /* Ensure the preview content fits squared format */
    .dashboard-preview .preview-content {
        object-fit: cover !important;
        height: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Disable all animations and transforms on small mobile */
    .hero *,
    .hero-visual *,
    .dashboard-preview,
    .hero-booking,
    .hero-title,
    .highlight-pop {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
    
    .hero .container {
        padding: 0 15px !important;
    }
    
    .hero-content {
        max-width: calc(100vw - 30px) !important;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem) !important;
    }
    
    .hero-visual {
        padding: 0 15px !important;
        margin-bottom: 1rem !important;
    }
    
    /* Optimized dashboard preview for small mobile */
    .dashboard-preview {
        max-width: 250px !important;
        height: 250px !important;
        transform: scale(0.65) !important;
        border-radius: 14px !important;
        object-fit: cover !important;
    }
    
    /* Ensure the preview content fits squared format on small mobile */
    .dashboard-preview .preview-content {
        object-fit: cover !important;
        height: 100% !important;
    }
}

