:root {
    --color-deep-blue: #00459B;
    --color-ocean-blue: #0356A7;
    --color-tech-blue: #0B82C6;
    --color-bright-blue: #12ABE3;
    --color-light-cyan: #93DDFE;
    --color-navy: #003399;
    --color-teal: #0099CC;
    
    --color-white: #FFFFFF;
    --color-light-gray: #F8F9FA;
    --color-medium-gray: #6B7280;
    --color-dark-gray: #1F2937;
    --color-charcoal: #111827;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-charcoal);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-intro {
    max-width: 60%;
    margin: 0 0 3rem 0;
    font-size: 1.1rem;
    color: var(--color-medium-gray);
}

.subsection-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-deep-blue);
}

.section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--color-medium-gray);
}

.white-text {
    color: var(--color-white);
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-tech-blue));
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 69, 155, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 69, 155, 0.4);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-deep-blue);
    border: 2px solid var(--color-deep-blue);
}

.btn-secondary:hover {
    background: var(--color-deep-blue);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-deep-blue);
}

.btn-white:hover {
    background: var(--color-light-gray);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-deep-blue);
}

.logo-accent {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-dark-gray);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.main-nav a:hover {
    color: var(--color-tech-blue);
}

.header-phone {
    font-weight: 600;
    color: var(--color-deep-blue);
    text-decoration: none;
    font-size: 1.125rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-deep-blue);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

.hero-section {
    margin-top: 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 80vh;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem 4rem 4rem;
    background: var(--color-white);
}

.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-tech-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-tech-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--color-light-gray), var(--color-white));
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-tech-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-deep-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-medium-gray);
    font-weight: 500;
}

.hero-image {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 69, 155, 0.75), rgba(147, 221, 254, 0.3)),
                url('../images/hero-business-owner.jpg');
    background-size: cover;
    background-position: center;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(45deg, transparent, rgba(18, 171, 227, 0.4));
}

.trust-ticker {
    background: var(--color-light-gray);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    color: var(--color-tech-blue);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0 2rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.problem-section {
    background: linear-gradient(135deg, var(--color-navy), var(--color-deep-blue));
    padding: 5rem 0;
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

.problem-card h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.solution-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-image {
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 69, 155, 0.2), rgba(18, 171, 227, 0.2)),
                var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 5rem;
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
}

.feature-stat {
    color: var(--color-tech-blue);
    font-weight: 700;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.comparison-callout {
    background: linear-gradient(135deg, rgba(147, 221, 254, 0.15), rgba(18, 171, 227, 0.05));
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.comparison-callout h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.comparison-column {
    text-align: center;
}

.comparison-column h4 {
    color: var(--color-medium-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

.comparison-box {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-box.highlight {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-tech-blue));
    color: var(--color-white);
}

.comparison-amount {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.comparison-label {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.comparison-box.highlight .comparison-amount,
.comparison-box.highlight .comparison-label {
    color: var(--color-white);
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--color-tech-blue);
    font-weight: bold;
}

.comparison-percentage {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-deep-blue);
    margin-top: 2rem;
}

.process-section {
    background: var(--color-light-gray);
    padding: 5rem 0;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.process-image {
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 69, 155, 0.1), rgba(18, 171, 227, 0.1)),
                var(--color-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-icon {
    font-size: 6rem;
}

.process-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-tech-blue));
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-content h3 {
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
}

.process-timeline-badge {
    display: inline-block;
    background: var(--color-light-cyan);
    color: var(--color-deep-blue);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 1rem 1rem 1rem 0;
}

.process-detail-badge {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-tech-blue);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--color-tech-blue);
}

.advantage-callout {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 6px solid var(--color-tech-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

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

.advantage-callout h3 {
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
}

.batch-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.batch-visual {
    max-width: 900px;
    margin: 3rem auto;
}

.batch-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.batch-single, .batch-multiple {
    text-align: center;
    padding: 2rem;
    background: var(--color-light-gray);
    border-radius: 16px;
    flex: 1;
}

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

.batch-icons {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.batch-label {
    font-weight: 600;
    color: var(--color-medium-gray);
    margin-bottom: 0.5rem;
}

.batch-power {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-deep-blue);
    font-family: var(--font-heading);
}

.batch-vs {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-tech-blue);
}

.batch-stat {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-tech-blue);
}

.why-section {
    background: var(--color-light-gray);
    padding: 5rem 0;
}

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

.why-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-card.large {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-tech-blue));
    color: var(--color-white);
}

.why-card.large h3,
.why-card.large p {
    color: var(--color-white);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-stat {
    color: var(--color-light-cyan);
    font-weight: 700;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.attorney-banner {
    background: linear-gradient(135deg, var(--color-navy), var(--color-deep-blue));
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--color-white);
}

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

.attorney-content h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.attorney-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.testimonials-section {
    background: linear-gradient(180deg, rgba(240, 249, 255, 1), rgba(255, 255, 255, 1));
    padding: 5rem 0;
}

.testimonial-hero {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border-left: 6px solid var(--color-tech-blue);
}

.testimonial-hero blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-dark-gray);
    line-height: 1.6;
}

.testimonial-hero footer {
    margin-top: 2rem;
    font-style: normal;
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
}

.testimonial-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--color-light-gray);
    color: var(--color-dark-gray);
}

.badge.highlight {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-tech-blue));
    color: var(--color-white);
}

.trustpilot-banner {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trustpilot-content h3 {
    color: #FFB800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--color-light-gray);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-tech-blue);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-medium-gray);
    line-height: 1.7;
}

.contact-section {
    background: var(--color-light-gray);
    padding: 5rem 0;
}

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

.contact-form-container {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--color-medium-gray);
    margin-bottom: 2rem;
}

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

.form-section h3 {
    font-size: 1.25rem;
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

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

.required {
    color: #DC2626;
}

.optional-label {
    font-weight: 400;
    color: var(--color-medium-gray);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-tech-blue);
    box-shadow: 0 0 0 3px rgba(11, 130, 198, 0.1);
}

.consent-section {
    background: var(--color-light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.consent-box {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

.checkbox-label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    align-items: flex-start;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    flex: 1;
    line-height: 1.6;
}

.privacy-notice {
    padding: 1rem;
    background: rgba(11, 130, 198, 0.05);
    border-left: 3px solid var(--color-tech-blue);
    border-radius: 4px;
}

.privacy-notice a {
    color: var(--color-tech-blue);
    text-decoration: underline;
}

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

.form-message.success {
    display: block;
    background: #DEF7EC;
    color: #03543F;
    border: 1px solid #84E1BC;
}

.form-message.error {
    display: block;
    background: #FDE8E8;
    color: #9B1C1C;
    border: 1px solid #F98080;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-trust-elements {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-tech-blue));
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--color-white);
}

.trust-item {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-item:last-child {
    margin-bottom: 0;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.trust-item h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.trust-item h3 a {
    color: var(--color-white);
    text-decoration: none;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.9);
}

.trust-list {
    list-style: none;
    text-align: left;
}

.trust-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list li:before {
    content: "✓ ";
    margin-right: 0.5rem;
}

.alternative-contact {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.alternative-contact h3 {
    color: var(--color-deep-blue);
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.contact-method:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-method a {
    color: var(--color-tech-blue);
    text-decoration: none;
    font-weight: 600;
}

.main-footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--color-light-cyan);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

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

.compliance-statement {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.6;
}

.site-credit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
}

.site-credit a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-credit a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 3rem 2rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-image {
        min-height: 400px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .process-step {
        grid-template-columns: 1fr;
    }
    
    .process-step.reverse {
        direction: ltr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-card.large {
        grid-column: span 2;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
    
    .main-nav.active ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav.active li {
        border-bottom: 1px solid var(--color-light-gray);
        padding: 1rem 0;
    }
    
    .header-phone {
        display: none;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .section-intro {
        max-width: 100%;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card.large {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .batch-comparison {
        flex-direction: column;
    }
    
    .batch-vs {
        transform: rotate(90deg);
    }
    
    .sticky-cta {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .comparison-percentage {
        font-size: 2rem;
    }
}

/* ============================================
   PROFESSIONAL ICON SYSTEM - NO EMOJIS
   ============================================ */

/* Icon Circle Containers - LARGER FOR BETTER VISIBILITY */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-circle-medium {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-circle-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Icon Circle Color Variants */
.icon-circle.red, .icon-circle.dark-red {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
}

.icon-circle.orange {
    background: linear-gradient(135deg, #F97316, #EA580C);
}

.icon-circle.red-orange {
    background: linear-gradient(135deg, #EF4444, #F97316);
}

.icon-circle-medium.blue, .icon-circle-large.blue {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-tech-blue));
}

.icon-circle-medium.white, .icon-circle-large.white {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--color-white);
}

.icon-circle-large.gray {
    background: linear-gradient(135deg, #9CA3AF, #6B7280);
}

/* Icon Shapes - Abstract Professional Designs */
.icon-arrow-down::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 25px solid white;
}

.icon-refresh::before {
    content: "";
    width: 35px;
    height: 35px;
    border: 4px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(-45deg);
}

.icon-chart-up::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid white;
    transform: rotate(-30deg);
}

.icon-phone-ring::before {
    content: "";
    width: 30px;
    height: 30px;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.icon-lock::before {
    content: "";
    width: 25px;
    height: 20px;
    border: 4px solid white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: none;
    position: relative;
}

.icon-lock::after {
    content: "";
    width: 30px;
    height: 15px;
    background: white;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.icon-scale::before {
    content: "";
    width: 40px;
    height: 4px;
    background: white;
    position: relative;
}

.icon-scale::after {
    content: "";
    width: 4px;
    height: 20px;
    background: white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icon-trend-down::before {
    content: "";
    width: 35px;
    height: 4px;
    background: white;
    transform: rotate(-30deg);
    position: relative;
}

.icon-trend-down::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid white;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-30deg);
}

.icon-dollar-decrease::before {
    content: "$";
    font-size: 48px;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.icon-check-circle::before {
    content: "✓";
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.icon-lightbulb::before {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50% 50% 0 0;
    position: relative;
}

.icon-lightbulb::after {
    content: "";
    width: 12px;
    height: 8px;
    background: white;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-building::before,
.icon-building-small::before {
    content: "";
    width: 30px;
    height: 35px;
    background: white;
    position: relative;
    border-radius: 2px;
}

.icon-building::after,
.icon-building-small::after {
    content: "";
    width: 25px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 0 rgba(255, 255, 255, 0.5), 0 16px 0 rgba(255, 255, 255, 0.5);
}

.icon-building-small {
    display: inline-block;
    width: 20px;
    height: 25px;
    position: relative;
    margin: 2px;
}

.icon-building-small::before {
    width: 20px;
    height: 25px;
    background: var(--color-tech-blue);
}

.icon-target::before {
    content: "";
    width: 50px;
    height: 50px;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
}

.icon-target::after {
    content: "";
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-trend-up::before {
    content: "";
    width: 35px;
    height: 4px;
    background: white;
    transform: rotate(30deg);
    position: relative;
}

.icon-trend-up::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid white;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
}

.icon-dollar-zero::before {
    content: "$0";
    font-size: 36px;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.icon-clipboard::before {
    content: "";
    width: 28px;
    height: 35px;
    background: white;
    border-radius: 2px;
    position: relative;
}

.icon-clipboard::after {
    content: "";
    width: 18px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2), 0 12px 0 rgba(0, 0, 0, 0.2);
}

.icon-handshake::before {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: relative;
    box-shadow: 20px 0 0 white;
}

.icon-handshake::after {
    content: "";
    width: 15px;
    height: 25px;
    background: white;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 8px 8px;
}

.icon-scales::before {
    content: "";
    width: 50px;
    height: 4px;
    background: white;
    position: relative;
}

.icon-scales::after {
    content: "";
    width: 4px;
    height: 30px;
    background: white;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-phone::before {
    content: "";
    width: 25px;
    height: 25px;
    border: 4px solid white;
    border-radius: 6px;
    transform: rotate(-135deg);
}

.icon-phone::after {
    content: "";
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-clock::before {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
}

.icon-clock::after {
    content: "";
    width: 2px;
    height: 15px;
    background: white;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom center;
}

.icon-check::before {
    content: "✓";
    font-size: 48px;
    font-weight: 700;
    color: white;
}

/* Star Rating System */
.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.stars.large {
    gap: 8px;
    justify-content: center;
}

.star {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.stars.large .star {
    width: 32px;
    height: 32px;
}

.star::before {
    content: "★";
    position: absolute;
    font-size: 20px;
    color: #E5E7EB;
}

.stars.large .star::before {
    font-size: 32px;
}

.star.filled::before {
    color: #FFB800;
}

/* Image Overlays */
.hero-image {
    background-size: cover;
    background-position: center;
}

.feature-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 69, 155, 0.7), rgba(18, 171, 227, 0.4));
}

.process-image {
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-hero {
    background-size: cover;
    background-position: center;
    color: white;
}

.testimonial-hero p,
.testimonial-hero footer {
    color: white;
}

/* Batch Icons Grid */
.batch-icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 1rem;
}

/* Professional Adjustments */
.problem-icon {
    font-size: 0;
    margin: 0 auto 1.5rem;
}

@media (max-width: 768px) {
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .icon-circle-medium {
        width: 64px;
        height: 64px;
    }
    
    .icon-circle-large {
        width: 100px;
        height: 100px;
    }
}

/* Simple Text-Based Icons - ENHANCED VISIBILITY */
.icon-simple {
    font-size: 56px;
    font-weight: 900;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .icon-simple {
        font-size: 42px;
    }
}

/* Medium version for why-choose cards - MAXIMUM VISIBILITY */
.icon-simple-medium {
    font-size: 42px;
    font-weight: 900;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .icon-simple-medium {
        font-size: 32px;
    }
}

/* Larger version for feature cards - MAXIMUM VISIBILITY */
.icon-simple-large {
    font-size: 68px;
    font-weight: 900;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .icon-simple-large {
        font-size: 50px;
    }
}

/* Fix navigation spacing for tablet/smaller desktop */
@media (max-width: 1200px) and (min-width: 769px) {
    .header-nav ul {
        gap: 1.5rem;
    }
    
    .header-nav li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .header-nav ul {
        gap: 1rem;
    }
    
    .header-nav li a {
        font-size: 0.85rem;
    }
}

/* Bold text-only icons (no symbols/emojis) - MAXIMUM VISIBILITY */
.icon-simple-bold {
    font-size: 52px;
    font-weight: 900;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .icon-simple-bold {
        font-size: 38px;
    }
}
