/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #0d9488;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0f766e;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #0d9488;
    border: 2px solid #0d9488;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0d9488;
    border: 2px solid #0d9488;
}

.btn-outline:hover {
    background: #0d9488;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #0d9488;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Money-back guarantee styling */
.guarantee-text {
    text-align: center;
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    margin: 12px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.guarantee-text::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

/* Text Utilities */
.text-gradient {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.required {
    color: #ef4444;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    padding: 16px 0;
    min-height: 72px;
    width: 100%;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
}

/* iWebsiteDevelopers Logo Styles */
.iwd-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 0;
}

.iwd-logo:hover {
    transform: scale(1.02);
}

.iwd-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
    min-width: 56px;
    min-height: 56px;
}

.iwd-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 100%);
}

.iwd-i {
    font-size: 34px;
    font-weight: 900;
    color: white;
    font-family: 'Inter', 'Arial Black', Arial, sans-serif;
    position: relative;
    z-index: 1;
    font-style: italic;
    line-height: 1;
    display: block;
}

.iwd-bracket-left,
.iwd-bracket-right {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    font-family: 'Inter', 'Courier New', Consolas, monospace;
    line-height: 1;
}

.iwd-bracket-left {
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.iwd-bracket-right {
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.iwd-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    min-width: 0;
}

.iwd-name {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;
    display: block;
}

.iwd-website {
    font-weight: 600;
}

.iwd-developers {
    font-weight: 400;
    color: #10b981;
}

.iwd-tagline {
    font-size: 10px;
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 4px;
    margin-left: 2px;
    white-space: nowrap;
    display: block;
    line-height: 1.2;
}

/* Responsive sizing for logo */
@media (max-width: 768px) {
    .iwd-logo {
        gap: 12px;
    }
    
    .iwd-icon {
        width: 44px;
        height: 44px;
    }
    
    .iwd-i {
        font-size: 26px;
    }
    
    .iwd-bracket-left,
    .iwd-bracket-right {
        font-size: 16px;
    }
    
    .iwd-name {
        font-size: 22px;
    }
    
    .iwd-tagline {
        font-size: 9px;
    }
}
    line-height: 1;
/* Edge browser specific logo - use image instead of CSS logo */
@supports (-ms-ime-align: auto) {
    .iwd-logo {
        display: block;
        width: auto;
        height: 56px;
    }
    
    .iwd-icon,
    .iwd-text {
        display: none;
    }
    
    .iwd-logo::before {
        content: '';
        display: block;
        width: 280px;
        height: 56px;
        background-image: url('Website-Developers.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
    }
    
    /* Mobile adjustments for Edge */
    @media (max-width: 768px) {
        .iwd-logo {
            height: 44px;
        }
        
        .iwd-logo::before {
            width: 220px;
            height: 44px;
        }
    }
    
    @media (max-width: 480px) {
        .iwd-logo {
            height: 36px;
        }
        
        .iwd-logo::before {
            width: 180px;
            height: 36px;
        }
    }
}
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    margin-left: 4px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #0d9488;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

/* Pricing visual highlights */
.original-price {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 4px;
}

.discount-pricing {
    margin-bottom: 16px;
}

.discount-pricing .original-price {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 4px;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 4px;
}

.discounted-price span {
    font-size: 1rem;
    color: #64748b;
}

.discounted-price {
    color: #10b981;
    font-weight: 700;
}

.savings-text {
    display: block;
    color: #10b981;
    font-weight: 600;
    font-size: 0.8em;
    margin-top: 4px;
}

.discount-percent {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    margin-left: 8px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.price-period {
    font-size: 1rem;
    color: #64748b;
}

/* Tab Switcher */
.tab-switcher {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-button {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.tab-button.active {
    background: white;
    color: #0d9488;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Service Hero Sections */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.service-hero p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
}

.service-features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    border-radius: 16px;
    margin: 0 auto 24px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
    margin: 0;
}
.nav-menu {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 15px;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
}

.nav-link {
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: #0d9488;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0d9488;
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #0f172a;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
	float:left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
	font-size:bold;
}

.trust-item svg {
    color: #0d9488;
}

/* Trust Bar */
.trust-bar {
    padding: 18px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.trust-label {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    align-items: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tech-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

.tech-item span {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

/* Value Props */
.value-props {
    padding: 40px 0;
    /*background: #f8fafc;*/
	background: #f1f2f3;
	
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    border-radius: 20px;
    margin-bottom: 24px;
    color: white;
}

.value-card h3 {
    margin-bottom: 8px;
}

.value-desc {
    color: #0d9488;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.value-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 14px;
}

.value-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #0d9488;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Plans Snapshot */
.plans-snapshot {
    padding: 80px 0;
    background: white;
}

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

.plan-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-popular {
    border-color: #0d9488;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-header h3 {
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 8px;
}

.plan-price span {
    font-size: 1rem;
    color: #64748b;
}

.plan-header p {
    color: #64748b;
    margin-bottom: 16px;
}

.plan-sla {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 14px;
}

.plan-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

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

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 16px auto 24px;
    color: #0d9488;
}

.step-card h3 {
    margin-bottom: 8px;
}

.step-desc {
    color: #0d9488;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-details {
    color: #64748b;
    font-size: 14px;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: white;
}

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

.case-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    border-radius: 16px;
    color: white;
    margin-bottom: 16px;
}

.case-label {
    display: inline-block;
    background: #dcfdf7;
    color: #0d9488;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.case-card p {
    color: #64748b;
    margin-bottom: 16px;
}

.case-metrics {
    list-style: none;
}

.case-metrics li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #475569;
    font-size: 14px;
}

.case-metrics li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 32px;
}

.author-name {
    font-weight: 600;
    color: #0f172a;
}

.author-role {
    color: #64748b;
    font-size: 14px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #0d9488;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #64748b;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
}

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

.cta-content h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 16px;
	margin-left:40px;
}

.footer-section h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.contact-item svg {
    color: #0d9488;
}

.footer-links {
    list-style: none;
	margin-left:45px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

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

.social-links {
    margin-top: 24px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 10px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #0d9488;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    color: #64748b;
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 2px solid #0d9488;
}

.mobile-cta.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

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

.cookie-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: #64748b;
}

/* Pricing Specific Styles */
.pricing-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
}

.pricing-note {
    background: #dcfdf7;
    border: 1px solid #5eead4;
    border-radius: 16px;
    padding: 20px;
    display: inline-block;
}

.pricing-note p {
    margin: 0;
    color: #0d9488;
    font-weight: 500;
}

.pricing-plans {
    padding: 80px 0;
    background: white;
}

.plan-cta {
    margin-bottom: 16px;
}

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

.plan-note p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.plan-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.paypal-btn {
    background: #0070ba;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.paypal-btn:hover {
    background: #005ea6;
    color: white;
    transform: translateY(-2px);
}

.feature-comparison {
    padding: 80px 0;
    background: #f8fafc;
}

.comparison-header {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-header h3 {
    font-size: 2rem;
    color: #0f172a;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.feature-column {
    width: 40%;
}

.plan-column {
    width: 20%;
    text-align: center;
}

.plan-popular-header {
    background: linear-gradient(135deg, #dcfdf7 0%, #f0fdfa 100%);
    color: #0d9488;
    position: relative;
}

.popular-badge {
    font-size: 12px;
    font-weight: 500;
    color: #0d9488;
}

.category-row {
    background: #f1f5f9;
}

.category-header {
    font-weight: 600;
    color: #0f172a;
    background: white;
    border-radius: 8px;
    margin: 4px;
    padding: 12px 16px;
}

.feature-name {
    color: #475569;
}

.feature-check {
    text-align: center;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.feature-cross {
    text-align: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 18px;
}

.pricing-info {
    padding: 80px 0;
    background: white;
}

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

.info-card {
    background: #dcfdf7;
    border: 1px solid #5eead4;
    border-radius: 16px;
    padding: 24px;
}

.info-card h4 {
    color: #0d9488;
    margin-bottom: 12px;
}

.info-card p {
    color: #0f766e;
    margin: 0;
    font-size: 14px;
}

.pricing-faq {
    padding: 80px 0;
    background: #f8fafc;
}

/* Audit Form Styles */
.audit-form-section {
    padding: 120px 0 80px;
    background: white;
}

.audit-content {
    max-width: 600px;
    margin: 0 auto;
}

.audit-header {
    text-align: center;
    margin-bottom: 48px;
}

.audit-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.audit-header p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
}

.audit-benefits {
    background: #dcfdf7;
    border: 1px solid #5eead4;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.audit-benefits h3 {
    color: #0d9488;
    margin-bottom: 16px;
}

.audit-benefits ul {
    list-style: none;
    margin: 0;
}

.audit-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #0f766e;
    font-size: 14px;
}

.audit-benefits li::before {
    content: '•';
    color: #0d9488;
    font-weight: 700;
}

.audit-form-container {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.audit-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d9488;
}

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

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #0d9488;
    border-color: #0d9488;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.checkbox-text {
    color: #64748b;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    background: white;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    margin: 0 auto 32px;
    color: white;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.thank-you-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
}

.deliverables {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.deliverables h3 {
    text-align: center;
    color: #0f172a;
    margin-bottom: 24px;
}

.deliverables-list {
    list-style: none;
    margin: 0;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #475569;
}

.deliverables-list svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-buttons {
    margin-bottom: 16px;
}

.cta-note {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.book-call-section {
    padding: 120px 0 80px;
    background: white;
}

.book-call-content {
    max-width: 600px;
    margin: 0 auto;
}

.book-call-header {
    text-align: center;
    margin-bottom: 48px;
}

.book-call-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.book-call-header p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
}

.call-benefits {
    background: #dcfdf7;
    border: 1px solid #5eead4;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.call-benefits h3 {
    color: #0d9488;
    margin-bottom: 16px;
}

.call-benefits ul {
    list-style: none;
    margin: 0;
}

.call-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #0f766e;
    font-size: 14px;
}

.call-benefits li::before {
    content: '•';
    color: #0d9488;
    font-weight: 700;
}

.book-call-form-container {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.book-call-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 80px;
    background: white;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.legal-wrapper h2 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #0d9488;
}

.legal-wrapper ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-wrapper li {
    margin-bottom: 8px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Enhanced mobile navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 16px;
        border-top: 1px solid #e2e8f0;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        animation: fadeInDown 0.3s ease-out;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-buttons {
        display: none;
    }
    
    .btn-whatsapp {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .btn-whatsapp svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Mobile typography improvements */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 24px;
    }
    
    /* Mobile card layouts */
    .value-grid,
    .plans-grid,
    .steps-grid,
    .case-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-card,
    .plan-card,
    .case-card,
    .testimonial-card {
        padding: 24px;
        margin-bottom: 16px;
    }
    
    .plan-popular {
        transform: none;
        margin-bottom: 24px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Mobile form improvements */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 16px;
    }
    
    .audit-form-container,
    .book-call-form-container {
        padding: 24px;
        margin: 0 -4px;
    }
    
    /* Mobile section spacing */
    .section-header {
        margin-bottom: 40px;
        padding: 0 8px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Mobile pricing table */
    .comparison-table-wrapper {
        margin: 0 -16px;
        border-radius: 0;
    }
    
    .tab-switcher {
        margin: 0 8px 32px;
        max-width: none;
    }
    
    .tab-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Mobile logo adjustments */
    .logo-line-1,
    .logo-line-2 {
        font-size: 16px;
    }
    
    .logo-caption {
        font-size: 10px;
    }
    
    /* Show mobile CTA */
    .mobile-cta {
        display: none;
    }
    
    body.scrolled .mobile-cta {
        display: block;
    }
    
    /* Mobile cookie banner */
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }
    
    .cookie-buttons {
        align-self: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    /* Mobile footer improvements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Mobile FAQ improvements */
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Mobile typography scale */
    h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    /* Mobile button improvements */
    .btn {
        min-height: 48px; /* Better touch target */
        font-size: 16px;
    }
    
    .btn-large {
        min-height: 52px;
        font-size: 17px;
    }
    
    /* Mobile spacing adjustments */
    .hero {
        padding: 100px 0 60px;
    }
    
    .value-props,
    .plans-snapshot,
    .how-it-works,
    .case-studies,
    .testimonials,
    .faq,
    .final-cta {
        padding: 60px 0;
    }
    
    .trust-bar {
        padding: 32px 0;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .audit-header h1 {
        font-size: 2.5rem;
    }
    