:root {
    --primary-teal: #00B8A9;
    --primary-teal-light: #00D4C2;
    --primary-teal-dark: #008B7F;
    --dark-teal: #0A7A6F;
    --accent-blue: #0066FF;
    --accent-purple: #7C3AED;
    --text-dark: #1B1B18;
    --text-medium: #4A4A47;
    --text-light: #706F6C;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --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-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', ui-sans-serif, system-ui, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #F8F9FA 0%, #FFFFFF 100%);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-teal);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

.logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 184, 169, 0.2));
}

.hero-section {
    background: linear-gradient(135deg, #0A7A6F 0%, #00B8A9 50%, #00D4C2 100%);
    color: white;
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.625rem;
        margin: 0;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
}

.hero-subtitle.small {
    font-size: 1rem;
    opacity: 0.9;
}

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

.form-only-layout {
    max-width: 680px;
    margin: 0 auto;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    padding: 0;
}

@media (max-width: 768px) {
    .form-only-layout {
        max-width: 640px;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0.5rem 1rem;
    }
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 2rem;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 184, 169, 0.05) 0%, rgba(0, 184, 169, 0.02) 100%);
    border-left: 4px solid var(--primary-teal);
    border-radius: 8px;
}

.intro-text.primary {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(0, 184, 169, 0.08) 0%, rgba(0, 184, 169, 0.03) 100%);
    border-left: 4px solid var(--primary-teal);
    padding: 2rem;
}

.additional-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    width: 100%;
    box-sizing: border-box;
}

.additional-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.additional-content p:last-child {
    margin-bottom: 0;
}

.additional-content .tagline {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-light);
    font-size: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

/* Thank you page */
.thank-you-body {
    background: radial-gradient(1200px 600px at 15% 10%, rgba(0, 184, 169, 0.16) 0%, rgba(0, 184, 169, 0) 60%),
        radial-gradient(900px 500px at 90% 25%, rgba(124, 58, 237, 0.10) 0%, rgba(124, 58, 237, 0) 60%),
        linear-gradient(to bottom, #F8F9FA 0%, #FFFFFF 100%);
}

.thank-you-hero {
    padding: 3rem 0 4rem;
}

.thank-you-container {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.thank-you-card {
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    position: relative;
}

.thank-you-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 184, 169, 0.10) 0%, rgba(0, 184, 169, 0.00) 40%, rgba(124, 58, 237, 0.06) 100%);
    pointer-events: none;
}

.thank-you-card-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem;
    padding: 3.25rem 3.25rem;
    align-items: center;
}

.thank-you-copy h1 {
    font-size: 2.35rem;
    line-height: 1.15;
    margin: 0.75rem 0 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.thank-you-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 184, 169, 0.10);
    border: 1px solid rgba(0, 184, 169, 0.22);
    color: var(--dark-teal);
    font-weight: 700;
    font-size: 0.95rem;
}

.thank-you-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(0, 184, 169, 0.16);
    color: var(--dark-teal);
}

.thank-you-lead {
    margin: 0 0 1.5rem;
    color: var(--text-medium);
    font-size: 1.07rem;
    line-height: 1.8;
}

.thank-you-next h2 {
    margin: 1.25rem 0 0.75rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.thank-you-steps {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.thank-you-steps li {
    margin: 0.35rem 0;
}

.thank-you-note {
    margin: 1.5rem 0 0;
    color: var(--text-medium);
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thank-you-fineprint {
    margin-top: 1.25rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.thank-you-illustration {
    position: relative;
    width: 100%;
    max-width: 360px;
    padding: 1.25rem;
}

.thank-you-illustration::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(220px 160px at 30% 30%, rgba(0, 184, 169, 0.22) 0%, rgba(0, 184, 169, 0.00) 60%),
        radial-gradient(220px 160px at 80% 70%, rgba(124, 58, 237, 0.14) 0%, rgba(124, 58, 237, 0.00) 60%);
    filter: blur(0.2px);
}

.thank-you-illustration img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.18));
}

@media (max-width: 900px) {
    .thank-you-container {
        min-height: auto;
        align-items: stretch;
    }

    .thank-you-card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.25rem 1.5rem;
    }

    .thank-you-copy h1 {
        font-size: 2.05rem;
    }
}

.additional-content .tagline strong {
    color: var(--primary-teal);
    font-weight: 700;
}

.form-column {
    position: sticky;
    top: 6rem;
}

.form-section {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-xl);
    margin-bottom: 3rem;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-only-layout .form-section {
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(17, 24, 39, 0.14);
    border: 1px solid rgba(229, 231, 235, 1);
}

.form-only-layout .form-section:hover {
    transform: none;
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.16);
}

.form-only-layout .form-section:focus-within {
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.14), 0 0 0 6px rgba(0, 184, 169, 0.10);
}

.form-section--landing {
    position: relative;
    overflow: hidden;
}

.form-section--landing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 240px at 20% 0%, rgba(0, 184, 169, 0.12) 0%, rgba(0, 184, 169, 0) 55%),
        radial-gradient(700px 240px at 95% 10%, rgba(124, 58, 237, 0.07) 0%, rgba(124, 58, 237, 0) 55%);
    pointer-events: none;
}

.form-section--landing::after {
    content: none;
}

.form-section--landing > * {
    position: relative;
    z-index: 1;
}

.form-section:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-2px);
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

.form-step.active {
    display: block;
}

.progress-bar-container {
    margin-bottom: 2.5rem;
}

.form-only-layout .progress-bar-container {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-only-layout .form-group label {
    font-size: 0.98rem;
}

.form-only-layout .form-group {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.form-only-layout .progress-bar {
    flex: 1;
    margin-bottom: 0;
    height: 8px;
    background: rgba(209, 213, 219, 0.55);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16.67%;
    box-shadow: 0 2px 8px rgba(0, 184, 169, 0.4);
    position: relative;
}

.form-only-layout .progress-bar-fill {
    box-shadow: 0 1px 6px rgba(0, 184, 169, 0.25);
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.form-only-layout .progress-bar-fill::after {
    display: none;
}

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

.progress-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-only-layout .progress-text {
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: rgba(27, 27, 24, 0.7);
    min-width: 95px;
    text-align: right;
}

@media (max-width: 420px) {
    .form-only-layout .progress-bar-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .form-only-layout .progress-text {
        min-width: 0;
        text-align: center;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.form-group label .required {
    color: #EF4444;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
}

.form-only-layout .form-group input,
.form-only-layout .form-group select,
.form-only-layout .form-group textarea {
    background: rgba(249, 250, 251, 0.9);
    border-color: rgba(209, 213, 219, 0.75);
    border-width: 1.5px;
    border-radius: 14px;
    padding: 0.95rem 1.05rem;
}

.form-only-layout .form-group input:focus,
.form-only-layout .form-group select:focus,
.form-only-layout .form-group textarea:focus {
    background: var(--bg-white);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(0, 184, 169, 0.1), 0 4px 12px rgba(0, 184, 169, 0.15);
    transform: translateY(-1px);
}

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

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.form-actions .btn-secondary {
    margin-right: auto;
}

.btn {
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 184, 169, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--primary-teal) 100%);
    box-shadow: 0 6px 20px rgba(0, 184, 169, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 184, 169, 0.3);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: #F9FAFB;
    border-color: var(--text-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Pulse animation for Next button */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 184, 169, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 184, 169, 0.6);
    }
}

#nextBtn {
    animation: pulse 2s ease-in-out infinite;
}

.form-only-layout #nextBtn {
    animation: none;
}

/* Pulse animation for Next button when all fields in current step are filled */
#nextBtn.btn-ready {
    animation: nextButtonPulse 1.5s ease-in-out infinite;
    will-change: transform, box-shadow, filter;
}

@keyframes nextButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(0, 184, 169, 0.4),
            0 0 0 0 rgba(0, 184, 169, 0.7);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 8px 30px rgba(0, 184, 169, 0.6),
            0 0 0 12px rgba(0, 184, 169, 0);
        filter: brightness(1.15);
    }
}

@media (prefers-reduced-motion: reduce) {
    #nextBtn.btn-ready {
        animation: none;
    }
}

/* Pulse/glow animation for Submit button when Step 5 is complete (toggled via JS) */
@keyframes submitPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow:
            0 10px 22px rgba(0, 184, 169, 0.28),
            0 0 0 0 rgba(0, 184, 169, 0.0);
        filter: brightness(1) saturate(1);
    }
    50% {
        transform: translateY(-2px) scale(1.04);
        box-shadow:
            0 16px 40px rgba(0, 184, 169, 0.55),
            0 0 0 10px rgba(0, 184, 169, 0.18);
        filter: brightness(1.08) saturate(1.1);
    }
}

#submitBtn.btn-ready {
    animation: submitPulse 1.15s ease-in-out infinite;
    will-change: transform, box-shadow, filter;
}

@media (prefers-reduced-motion: reduce) {
    #submitBtn.btn-ready {
        animation: none;
    }
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-teal);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.6;
    cursor: pointer;
}

.info-section {
    background-color: var(--dark-teal) !important;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 50%, var(--primary-teal-light) 100%);
    background-size: 30px 30px, 30px 30px, 100% 100%;
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    color: #FFFFFF !important;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF !important;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
    z-index: 1;
}

.info-section h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF !important;
    font-weight: 700;
}

.info-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.process-step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.process-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.process-step h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #FFFFFF !important;
    font-weight: 700;
}

.process-step p {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.7;
    font-size: 1rem;
}


.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    margin-top: 4rem;
    flex-shrink: 0;
    position: relative;
}

.process-arrow img {
    width: 80px;
    height: auto;
    max-height: 60px;
    display: block;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.btn-large:active,
.btn-large.clicked {
    background: #FFFFFF !important;
    color: var(--dark-teal) !important;
    border-color: #FFFFFF !important;
}

.btn-large:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.testimonials {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.testimonials-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trustpilot-summary {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

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

.trustpilot-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trustpilot-stars .star {
    color: #00b67a;
    font-size: 1.4rem;
    margin-right: 0.1rem;
}

.trustpilot-count {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.trustpilot-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    font-weight: 600;
    color: #00b67a;
    text-decoration: none;
}

.trustpilot-link:hover {
    text-decoration: underline;
}

.trustpilot-logo {
    font-size: 0.95rem;
}

.trustpilot-carousel-wrapper {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 2.5rem 1.5rem;
    }
}

.faq-section {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    color: white;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--primary-teal) 100%);
}

.faq-question:active {
    transform: scale(0.98);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-answer-content {
    padding: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.footer {
    background: linear-gradient(135deg, #1B1B18 0%, #0F0F0E 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-brand .logo {
    color: var(--primary-teal);
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

.error-message {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #EF4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group.error .checkbox-group {
    border-color: #EF4444;
    background: #FEF2F2;
}

.form-group.error .error-message {
    display: block;
}

.success-message {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.error-alert {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.error-alert ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.error-alert ul li::before {
    content: '• ';
    font-weight: bold;
    margin-right: 0.5rem;
}

.form-step h2 {
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-column {
        position: static;
    }

    .content-column {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }

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

    .logo {
        height: 28px;
    }

    .form-section {
        padding: 1rem;
        margin-top: 0;
    }

    /* Make the form card feel less cramped on mobile */
    .form-only-layout .form-section {
        padding: 1rem 1rem;
        border-radius: 18px;
    }

    .form-only-layout .form-group {
        margin-bottom: 0.875rem;
    }

    .form-only-layout .form-step h2 {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }
    
    .form-only-layout .progress-bar-container {
        margin-bottom: 0.875rem;
    }
    
    .form-actions {
        margin-top: 1rem;
    }
    
    .static-trustpilot-rating {
        margin: 0 0 0.75rem 0;
    }
    
    .trustpilot-rating-card {
        padding: 0.5rem 1rem;
    }

    .form-only-layout .form-group input,
    .form-only-layout .form-group select,
    .form-only-layout .form-group textarea {
        padding: 0.9rem 1rem;
        border-radius: 14px;
    }

    .form-column {
        order: -1;
    }

    .content-column {
        order: 1;
        display: none;
    }

    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }


    .intro-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .intro-text.primary {
        font-size: 1.125rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        padding: 0;
        width: 60px;
    }

    .process-arrow img {
        width: 60px;
        max-height: 50px;
    }

    .process-step {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }

    .process-icon {
        height: 80px;
        margin-bottom: 1rem;
    }

    .process-icon img {
        width: 80px;
        height: 80px;
    }

    .process-cta {
        margin-top: 2rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .testimonials,
    .faq-section {
        padding: 2rem 1rem;
    }

    .info-section {
        padding: 2rem 1rem;
    }

    .info-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .additional-content {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .progress-bar-container {
        margin-bottom: 1.5rem;
    }

    .form-step {
        padding: 0;
    }

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

@media (max-width: 480px) {
    .hero-section {
        padding: 0.5rem 0.5rem;
    }

    .hero-title {
        font-size: 1.25rem;
        margin: 0.25rem 0;
        line-height: 1.2;
    }

    .container {
        padding: 0.5rem;
    }

    .form-section {
        padding: 0.75rem;
    }

    .two-column-layout {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .progress-bar-container {
        margin-bottom: 1rem;
    }

    .form-step h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

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

    .form-group label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9375rem;
        padding: 0.75rem;
    }
}

/* Static Trustpilot Rating Styles */
.static-trustpilot-rating {
    text-align: center;
    margin: 0 0 0.875rem 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trustpilot-rating-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 0.625rem 1.25rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.02);
    max-width: 100%;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trustpilot-rating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00B67A 0%, #00D4C2 100%);
}

.trustpilot-rating-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.trustpilot-rating-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.trustpilot-stars {
    display: flex;
    gap: 0.15rem;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.trustpilot-stars .star {
    font-size: 1.375rem;
    line-height: 1;
    color: #D1D5DB;
    transition: transform 0.2s ease;
}

.trustpilot-stars .star.star-filled {
    color: #00B67A;
}

.trustpilot-stars .star.star-half {
    position: relative;
    display: inline-block;
    width: 1.375rem;
    height: 1.375rem;
}

.trustpilot-stars .star.star-half .star-half-filled,
.trustpilot-stars .star.star-half .star-half-empty {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.375rem;
    line-height: 1;
}

.trustpilot-stars .star.star-half .star-half-filled {
    color: #00B67A;
    width: 50%;
    overflow: hidden;
    display: inline-block;
}

.trustpilot-stars .star.star-half .star-half-empty {
    color: #D1D5DB;
    width: 100%;
    z-index: -1;
}

.trustpilot-review-count {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-top: 0;
    font-weight: 400;
}

.trustpilot-review-count strong {
    font-weight: 600;
    color: var(--text-dark);
}

.trustpilot-review-count u {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

@media (max-width: 768px) {
    .static-trustpilot-rating {
        margin: 0 0 0.75rem 0;
    }
    
    .trustpilot-rating-card {
        padding: 0.5rem 1rem;
        border-radius: 0.625rem;
    }
    
    .trustpilot-rating-text {
        font-size: 1rem;
    }
    
    .trustpilot-stars .star {
        font-size: 1.25rem;
    }
    
    .trustpilot-stars .star.star-half {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .trustpilot-stars .star.star-half .star-half-filled,
    .trustpilot-stars .star.star-half .star-half-empty {
        font-size: 1.25rem;
    }
    
    .trustpilot-review-count {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .trustpilot-rating-card {
        padding: 0.5rem 0.875rem;
    }
    
    .trustpilot-rating-text {
        font-size: 0.9375rem;
    }
    
    .trustpilot-stars .star {
        font-size: 1.125rem;
    }
    
    .trustpilot-stars .star.star-half {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .trustpilot-stars .star.star-half .star-half-filled,
    .trustpilot-stars .star.star-half .star-half-empty {
        font-size: 1.125rem;
    }
    
    .trustpilot-review-count {
        font-size: 0.6875rem;
    }
}
