:root {
    /* Colors */
    --color-primary: #FF6B00;
    --color-primary-dark: #E65C00;
    --color-secondary: #1E293B;
    --color-accent: #00CC88;
    --color-background: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-text: #1E293B;
    --color-text-light: #64748B;
    --color-border: #E2E8F0;
    --color-error: #EF4444;
    --color-success: #10B981;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--color-background);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: block;
}

.logo__image {
    height: 32px;
}

/* Layout */
.main {
    padding-top: 64px;
}

.container {
    width: min(1200px, 100% - 32px);
    margin: 0 auto;
}

/* Section Styles */
.section-title {
    font-size: clamp(1.875rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* Hero Section */
.hero {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    margin: var(--space-2xl) 0;
    display: grid;
    gap: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero__background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__badges {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.badge {
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
}

.badge--primary {
    background: rgba(255, 107, 44, 0.1);
    color: var(--color-primary);
}

.badge--secondary {
    background: rgba(0, 204, 136, 0.1);
    color: var(--color-accent);
}

.badge--accent {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero__highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero__highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    opacity: 0.3;
}

.hero__subtitle {
    margin-top: var(--space-2xl);
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-2xl);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: var(--space-xl) auto;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.stat__icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
}

.stat__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Add hover animation for icons */
.stat:hover .stat__icon svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stat:hover .stat__icon path {
    stroke-width: 4;
    transition: stroke-width 0.3s ease;
}

.stat__icon-bg {
    fill: var(--color-primary);
    opacity: 0.1;
}

.stat__icon-check,
.stat__icon-globe,
.stat__icon-clock {
    stroke: var(--color-primary);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
}

.stat__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.stat__label {
    font-size: 1rem;
    color: var(--color-text-light);
}

/* Form */
.form-wrapper {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.form__fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form__input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--color-surface);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.1);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231E293B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__privacy {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(90deg, #FF6B00 0%, #FF8533 100%) !important;
    color: white;
    width: auto;
}

.button:hover {
    background: linear-gradient(90deg, #FF8533 0%, #FF9966 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.button:active {
    background-color: #E65C00 !important;
    transform: translateY(0);
}

.button--large {
    padding: var(--space-lg) var(--space-xl);
    font-size: 1.125rem;
}

.button__icon {
    stroke: currentColor;
}

.form__trust {
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.trust-badges__logo {
    height: 40px;
    width: auto;
    opacity: 1;
    filter: none;
    transition: transform 0.3s ease;
}

.trust-badges__logo:hover {
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
    padding: var(--space-3xl) 0;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
}

.benefit {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

.benefit:hover {
    transform: translateY(-4px);
}

.benefit__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-lg);
    color: var(--color-primary);
}

.benefit__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
}

.benefit__description {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Process Section */
.process {
    padding: var(--space-3xl) 0;
    background: var(--color-surface);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
}

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

.step__number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
}

.step__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-secondary);
}

.step__description {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Testimonials */
.testimonials {
    padding: var(--space-3xl) 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    will-change: transform;
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial__quote {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-style: italic;
    line-height: 1.6;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-height: 48px;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
}

.testimonial__name {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
}

.testimonial__role {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.2;
    margin: 0;
}

.testimonial__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial__quote {
    flex-grow: 1;
    margin-bottom: var(--space-lg);
}

/* CTA Section */
.cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-lg);
    margin: var(--space-2xl) 0;
    color: white;
    text-align: center;
}

.cta__content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.cta__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta__description {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--color-surface);
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) 0;
}

.footer__info {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.footer__links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.footer__links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer__contact {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: var(--space-xl) var(--space-lg);
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .stat {
        padding: var(--space-lg);
    }

    .trust-badges {
        gap: var(--space-xl);
        flex-wrap: wrap;
    }
    
    .trust-badges__logo {
        height: 36px;
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
    }

    .footer__contact {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 640px) {
    .benefits__grid,
    .process__steps,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .hero__badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Success Message */
.success-message {
    text-align: center;
    color: var(--color-text);
    padding: var(--space-xl);
}

.success-icon {
    color: var(--color-success);
    margin-bottom: var(--space-lg);
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.success-message p {
    color: var(--color-text-light);
}

/* Error State */
.form__input.error {
    border-color: var(--color-error);
    background-color: rgba(239, 68, 68, 0.05);
}

.form__input.error::placeholder {
    color: var(--color-error);
}

/* Error Message */
.error-message {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

/* Loading Spinner */
.button__icon--spin {
    animation: spin 1s linear infinite;
}

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

/* Form Field Animations */
.form__input {
    transform: translateY(0);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.form__input:focus {
    transform: translateY(-2px);
}

.form__input.error {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translateX(-1px);
    }
    20%, 80% {
        transform: translateX(2px);
    }
    30%, 50%, 70% {
        transform: translateX(-4px);
    }
    40%, 60% {
        transform: translateX(4px);
    }
}

/* Key Benefits Section */
.key-benefits {
    padding: var(--space-3xl) 0;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-lg);
}

.key-benefits__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--space-xl);
}

.key-benefits__badges {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.key-benefits__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.key-benefits__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.key-benefits__challenges {
    max-width: 1000px;
    margin: 0 auto var(--space-2xl);
    padding: 0 var(--space-xl);
}

.key-benefits__challenges-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.challenges-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
}

.challenges-list__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-background);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.challenges-list__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.challenges-list__icon {
    font-size: 2rem;
    flex-shrink: 0;
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    line-height: 1;
}

.challenges-list__content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.challenges-list__content p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.key-benefits__cta {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl) 0;
}

.key-benefits__guarantee {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.key-benefits__guarantee > span {
    color: var(--color-success);
    font-weight: 700;
    font-size: 1.1em;
    position: relative;
    top: 1px;
    margin-right: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .challenges-list {
        grid-template-columns: 1fr;
    }
    
    .challenges-list__item {
        padding: var(--space-lg);
    }
    
    .key-benefits__badges {
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .key-benefits__header,
    .key-benefits__challenges,
    .key-benefits__cta {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    .challenges-list__item {
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .challenges-list__icon {
        padding: var(--space-sm);
        font-size: 1.5rem;
    }
}

/* Add specific styling for the hero section button */
.form-wrapper .button {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background-color: #FF6B00 !important;
}

/* Add specific styling for all buttons */
.form-wrapper .button,
.key-benefits__cta .button,
.cta__content .button {
    background-color: #FF6B00 !important;
    color: white;
}

.form-wrapper .key-benefits__guarantee {
    margin-top: var(--space-lg);
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Add specific styling for the CTA section button */
.cta .cta__content .button {
    background: white !important;
    background-color: white !important;
    color: #FF6B00;
    border: 2px solid #FF6B00;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta .cta__content .button:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #FF6B00;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta .cta__content .button:active {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(0);
}

/* Style the arrow icon in the CTA button */
.cta .cta__content .button .button__icon {
    stroke: #FF6B00;
}

/* Style the CTA description text */
.cta__description {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

/* Update the SVG icon color in the CTA button */
.cta .cta__content .button .button__icon {
    stroke: #FF6B00;
}

/* Update responsive layout */
@media (max-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* Adjust testimonial card sizing */
.testimonial {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial__quote {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-style: italic;
    line-height: 1.6;
}

/* Add subtle animation to the background */
@keyframes gradientFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(20px);
    }
}

.hero__background svg path {
    animation: none;
    transition: opacity 0.3s ease;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero__background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

/* Star rating styles */
.testimonial__rating {
    margin-bottom: var(--space-lg);
    color: #FFB800;  /* Gold color for stars */
}

.testimonial__rating .star {
    font-size: 1.25rem;
    margin: 0 2px;
}

/* Avatar styles */
.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: white;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial__avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hover effect for thumbs up */
.testimonial__avatar:hover svg path {
    fill: var(--color-primary-dark);
    transition: fill 0.3s ease;
}

/* Update logo styles */
.logo {
    display: block;
}

.logo__svg {
    height: 40px;
    width: auto;
}

.header .logo__svg {
    height: 32px;
}

.footer .logo__svg {
    height: 32px;
    margin-bottom: var(--space-md);
}

/* Remove contact styles that are no longer needed */
.footer__contact {
    display: none;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) 0;
}

/* Add header button styles */
.header__button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background-color: var(--color-primary) !important;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.header__button:hover {
    background-color: var(--color-primary-dark) !important;
    transform: translateY(-1px);
}

/* Update header container to accommodate button */
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .header__button {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Fix iOS Safari hover/touch behavior */
@media (hover: hover) {
    .testimonial:hover {
        transform: translateY(-5px);
    }
}

/* Specific iOS touch behavior */
@supports (-webkit-touch-callout: none) {
    .testimonial:active {
        transform: translateY(-5px);
    }
}

/* Ensure smooth transitions on mobile */
@media (max-width: 768px) {
    .testimonial {
        cursor: pointer;
        transition: transform 0.2s ease;
    }
}

/* Form wrapper guarantee spacing */
.form-wrapper .key-benefits__guarantee {
    margin-top: var(--space-lg);
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Key benefits CTA guarantee spacing */
.key-benefits__cta .key-benefits__guarantee {
    margin-top: var(--space-lg); /* Same spacing as form wrapper */
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Common styles for checkmarks in both locations */
.key-benefits__guarantee > span {
    color: var(--color-success);
    font-weight: 700;
    font-size: 1.1em;
    position: relative;
    top: 1px;
    margin-right: 4px;
}

/* Add SVG-specific styles */
.gradient-primary {
    stop-color: var(--color-primary);
    stop-opacity: 1;
}

.gradient-background {
    stop-color: #ffffff;
    stop-opacity: 1;
}

.path-primary {
    stop-color: var(--color-primary);
    stop-opacity: 1;
}

/* Move critical CSS here */
:root {
    --color-primary: #FF6B00;
    --color-surface: #FFFFFF;
    --color-text: #1E293B;
}

/* Rest of your existing CSS */
 