:root {
    --primary: #0f4c81; /* Deep Business Blue */
    --primary-light: #2a69ac;
    --primary-dark: #0a365c;
    --accent: #0070f3; /* Bright tech blue */
    --accent-glow: rgba(0, 112, 243, 0.4);
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 12px 24px -6px rgba(15, 76, 129, 0.1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green {
    color: var(--success);
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 243, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    /*border: 2px solid var(--border-color);*/
    border: 2px solid #0066CC;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: var(--bg-light);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 24px 120px;
    background: #f9fafb; /* Light slate background */
    overflow: hidden;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Animation on layer 1 */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(249, 250, 251, 0.2) 100%);
    z-index: 2; /* Overlay on layer 2 */
    pointer-events: none; /* Let clicks pass through to content */
}

.hero-content {
    position: relative;
    z-index: 10; /* Content on top (layer 10) */
    max-width: 900px;
    margin: 0 auto;
}

.trust-chips {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-chips.left-align {
    justify-content: flex-start;
}

.chip {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-white);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chip i {
    color: var(--accent);
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 16px 32px;
    justify-content: center;
    margin-bottom: 48px;
    text-align: left;
}

.bullet-item {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-item i {
    color: var(--success);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Sections Global */
section {
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Server Toggle */
.server-toggle-container {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.server-toggle {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 50px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    z-index: 5; /* Ensure toggle is above other pricing elements */
}

.toggle-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.toggle-btn img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.toggle-btn.active {
    color: var(--primary);
}

.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: white;
    border-radius: 40px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.server-toggle[data-active="us"] .toggle-slider {
    transform: translateX(100%);
}

/* Pricing Section */
.pricing-section {
    background: radial-gradient(circle at top right, rgba(0, 112, 243, 0.03) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(15, 76, 129, 0.03) 0%, transparent 40%);
    background-color: var(--bg-white);
    position: relative;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-glow);
}

.pricing-card.best-value {
    border-color: var(--accent);
    box-shadow: var(--shadow-card);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.best-value:hover {
    transform: scale(1.03) translateY(-8px);
}

.best-value-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.card-header {
    margin-bottom: 16px;
}

.plan-name {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.plan-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-billing-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.pricing-details {
    margin-bottom: 32px;
    position: relative;
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.current-price {
    display: flex;
    align-items: flex-end;
}

.current-price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    margin-right: 2px;
}

.current-price .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    letter-spacing: -2px;
}

.current-price .period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 6px;
    margin-left: 4px;
}

.savings-badge {
    display: inline-block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.badge-high {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.plan-actions {
    margin-bottom: 32px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 112, 243, 0.4);
}

.plan-features {
    list-style: none;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-muted);
}

.plan-features li i {
    color: var(--accent);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.plan-features li last-child {
    margin-bottom: 0;
}

.addons-note {
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
    color: var(--text-muted);
}

.gst-note {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Why Choose Section */
.why-choose-section {
    background-color: var(--bg-white);
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-panel {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 112, 243, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-panel h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-panel p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Comparison Section */
.comparison-section {
    background-color: var(--bg-white);
}

.table-container {
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--primary);
}

.highlight-col {
    background-color: rgba(0, 112, 243, 0.05) !important;
    border-top-right-radius: var(--border-radius-md);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-main);
}

.comparison-table td:last-child {
    background-color: rgba(0, 112, 243, 0.02);
}

.weak-val {
    color: var(--text-light);
}

.strong-val {
    font-weight: 600;
    color: var(--text-main);
}

/* Essentials Section */
.essentials-section {
    background-color: var(--bg-light);
}

.essentials-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.essential-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.essential-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.ess-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.essential-card:hover .ess-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.essential-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.essential-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Social Proof Section */
.social-proof-section {
    /* background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%); */
    background-color: var(--bg-light);
    position: relative;
}

.section-badge {
    display: table;
    margin: 0 auto 16px;
    background: rgba(0, 112, 243, 0.08);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Unified Trust Badge */
.trust-badge-unified {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: var(--bg-white);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px -5px rgba(15, 76, 129, 0.1);
    border: 1px solid var(--border-color);
    position: absolute;
    bottom: 3vh;
}

.trust-google-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-score {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
}

.trust-score span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.trust-stars {
    color: #fbbc04;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.trust-reviews {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

.trust-partner-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-icon {
    font-size: 20px;
    background: linear-gradient(to bottom, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .trust-badge-unified {
        flex-direction: column;
        border-radius: var(--border-radius-md);
        gap: 16px;
        padding: 24px;
    }
    .trust-divider {
        width: 80%;
        height: 1px;
    }
}

.reviews-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.avatar-2 { background-color: #8b5cf6; }
.avatar-3 { background-color: #f59e0b; }
.avatar-4 { background-color: #10b981; }

.reviewer-info h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.stars {
    color: #fbbc04;
    font-size: 12px;
}

.google-icon {
    width: 24px;
    margin-left: auto;
}

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-tag {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== FINAL TESTIMONIAL FIX (POLISHED) ===== */

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px; /* space for arrows */
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    padding: 10px 3px 0;
}

/* CARD */
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-height: 260px;

    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 32px;
    font-size: 80px;
    font-family: serif;
    color: rgba(0, 112, 243, 0.05);
    line-height: 1;
}

/* hover polish */
.testimonial-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px -10px rgba(15, 76, 129, 0.15);
    border-color: var(--accent);
}

.testimonial-rating {
    color: #fbbc04;
    font-size: 14px;
    margin-bottom: 8px;
}

/* TEXT */
.review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 12px 0 20px;
}

/* AUTHOR FIX */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

/* AVATAR FIX (IMPORTANT) */
.author-avatar {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;

    border-radius: 50%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    color: white;
    background: var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME */
.author-info h4 {
    font-size: 14px;
    margin: 0;
}

.author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* LINKS FIX */
.testimonial-card a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAV BUTTON FIX (CRITICAL) ===== */

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

/* bring INSIDE instead of outside */
.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }

.carousel-nav:hover {
    background: var(--accent);
    color: white;
}

/* fix click issue */
.carousel-nav i {
    pointer-events: none;
}
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .testimonials-carousel-wrapper {
        padding: 0 20px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }
}
/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 112, 243, 0.02);
}

.faq-question h3 {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Consultation Section */
.consultation-section {
    background-color: var(--bg-white);
}

.consultation-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.03) 0%, rgba(0, 112, 243, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    padding: 64px;
    border: 1px solid var(--border-color);
}

.consultation-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.consultation-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.highlight-box {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    padding: 16px 24px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin-bottom: 32px;
}

.highlight-box p {
    color: #b45309;
}

.benefit-points {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--text-main);
}

.benefit-points li i {
    color: var(--success);
}

.consultation-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
    background-color: var(--bg-white);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .pricing-container {
        display: flex;
        flex-direction: column;
        max-width: 500px;
    }
    
    .pricing-card.best-value {
        transform: scale(1);
    }
    .pricing-card.best-value:hover {
        transform: scale(1) translateY(-8px);
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .consultation-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-bullets {
        grid-template-columns: 1fr;
    }
    .hero-ctas {
        flex-direction: column;
    }

    
    .essentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links, .nav-actions {
        display: none; /* Assuming mobile menu script will be used normally */
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .table-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .trust-badge-unified {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
        text-align: center;
        position: unset;
    }

    .trust-google-info {
        flex-direction: column;
        gap: 6px;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }

    .trust-partner-info {
        justify-content: center;
        flex-direction: column;
        gap: 6px;
    }

    .partner-text {
        font-size: 12px;
    }

    .trust-score {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .essentials-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* HIGH PRIORITY: Comparison Table Mobile Stack */
@media (max-width: 768px) {
    .comparison-section .table-container {
        border: none !important;
        box-shadow: none !important;
        overflow-x: visible !important;
    }
    
    .comparison-table {
        display: block !important;
        width: 100% !important;
    }
    
    .comparison-table thead {
        display: none !important;
    }
    
    .comparison-table tbody, 
    .comparison-table tr {
        display: block !important;
        width: 100% !important;
        margin-bottom: 30px !important;
        border: 1px solid #eee !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        background: white !important;
    }
    
    .comparison-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 20px !important;
        border: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
        text-align: right !important;
        font-size: 14px !important;
    }
    
    .comparison-table td:first-child {
        background: #f1f5f9 !important;
        justify-content: center !important;
        font-weight: 800 !important;
        color: var(--primary) !important;
        text-align: center !important;
        font-size: 16px !important;
    }
    
    .comparison-table td:before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-muted);
        text-align: left;
        flex: 1;
    }
    
    .comparison-table td:last-child {
        background: rgba(0, 112, 243, 0.04) !important;
        font-weight: 800 !important;
        color: var(--accent) !important;
    }
}