:root {
    --background: 200 18% 96%;
    --foreground: 213 60% 14%;
    --card: 0 0% 100%;
    --card-foreground: 213 60% 14%;
    --popover: 0 0% 100%;
    --popover-foreground: 213 60% 14%;
    --primary: 213 60% 14%;
    --primary-foreground: 0 0% 100%;
    --secondary: 175 52% 38%;
    --secondary-foreground: 0 0% 100%;
    --muted: 200 18% 92%;
    --muted-foreground: 213 20% 45%;
    --accent: 175 35% 53%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 200 18% 88%;
    --input: 200 18% 88%;
    --ring: 175 52% 38%;
    --chart-1: 175 52% 38%;
    --chart-2: 175 35% 53%;
    --chart-3: 213 60% 14%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 1rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 213 60% 14%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 175 52% 38%;

    --site-max-width: 960px;
    --site-gutter: clamp(1rem, 2vw, 1.5rem);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: hsl(var(--card));
    color: hsl(var(--foreground));
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container1,
.container {
    width: 100%;
    max-width: var(--site-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--secondary));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: hsl(var(--secondary));
    color: white;
    box-shadow: 0 4px 6px -1px hsl(var(--secondary) / 0.3);
}

.btn-primary:hover {
    background: hsl(175 52% 33%);
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.4);
}

.mobile-menu-toggle {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
}

/* Hero */

.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6.5rem;
    padding-bottom: 3rem;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(213, 60, 14, 0.7) 0%, rgba(213, 60, 14, 0.5) 50%, rgba(200, 18, 96, 0.4) 100%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.hero-content {
    width: 100%;
    max-width: 42rem;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
    border: 1px solid hsl(var(--accent) / 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: hsl(var(--secondary));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 8vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    position: relative;
    color: hsl(var(--secondary));
    font-weight: 700;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background: hsl(var(--accent) / 0.15);
    border-radius: 9999px;
    z-index: -1;
}

.hero-description {
    font-size: clamp(1rem, 4vw, 1.125rem);
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.feature-tag svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--secondary));
    flex-shrink: 0;
}

.feature-tag span {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 5.5rem;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    margin-top: 0.125rem;
}

.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: hsl(var(--secondary));
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: -0.5rem;
}

.avatar:first-child {
    margin-left: 0;
}

.rating {
    margin-left: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.stars svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: hsl(var(--accent));
    color: hsl(var(--accent));
}

.rating-text {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

/* Form */

.hero-form-wrapper {
    position: relative;
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.form-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: white;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.6);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.1);
    overflow: hidden;
}

.form-glow {
    position: absolute;
    inset: -1px;
    background: hsl(var(--accent) / 0.15);
    border-radius: 1rem;
    filter: blur(1rem);
    opacity: 0.6;
    z-index: -1;
}

.form-header-accent {
    height: 0.375rem;
    background: hsl(var(--secondary));
}

.form-content {
    padding: 1.25rem;
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.form-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1.25rem;
}

.form-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.form-badge svg {
    width: 0.875rem;
    height: 0.875rem;
    color: hsl(var(--secondary));
    flex-shrink: 0;
}

.form-tabs {
    display: flex;
    gap: 0.25rem;
    background: hsl(var(--muted));
    border-radius: 0.75rem;
    padding: 0.25rem;
    margin-bottom: 1.25rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.form-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 1;
    min-width: max-content;
    position: relative;
    padding: 0.55rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.3s;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.tab-btn.active {
    color: hsl(var(--secondary));
}

.tab-indicator {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    opacity: 0;
}

.tab-btn.active .tab-indicator {
    opacity: 1;
}

.tab-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tab-btn:not(.active) .tab-indicator {
    border: 2px solid hsl(var(--muted-foreground) / 0.4);
    background: transparent;
    box-shadow: none;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
}
.form-row1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
    padding-left:20%
}

.form-input,
.form-select,
.form-textarea,
.country-select,
.time-select {
    width: 100%;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.375rem;
    background: hsl(var(--muted));
    font-size: 16px;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.country-select:focus,
.time-select:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 1px hsl(var(--ring));
}

.phone-input {
    display: grid;
    grid-template-columns: 6.8rem minmax(0, 1fr);
    gap: 0.4rem;
    width: 100%;
}

.phone-input .form-input {
    min-width: 0;
}

.country-select {
    font-size: 0.8rem;
    cursor: pointer;
    flex-shrink: 0;
}

.datetime-wrapper {
    grid-template-columns: 1fr;
}

.datetime-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
}

.datetime-row .form-input {
    min-width: 5;
}

.time-select {
    font-size: 0.8rem;
    cursor: pointer;
    flex-shrink: 2;
}

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

.form-group {
    width: 100%;
}

.attach-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.attach-btn:hover {
    color: hsl(var(--secondary));
}

.attach-btn svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.selected-file-name {
    display: block;
    margin-top: 0.5rem;
    margin-left: 0;
    max-width: 100%;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 0.25rem;
}

.form-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    accent-color: hsl(var(--secondary));
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    min-height: 48px;
    padding: 1rem;
    background: hsl(var(--secondary));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.3);
    transition: all 0.3s;
}

.btn-submit:hover {
    background: hsl(175 52% 33%);
    box-shadow: 0 10px 25px -3px hsl(var(--secondary) / 0.5);
}

.btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    box-shadow: none;
}

.page-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: hsl(var(--muted));
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border) / 0.6);
}

.page-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

.page-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

.page-btn {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.375rem;
    background: hsl(var(--muted));
    border: 1px solid hsl(var(--border) / 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    background: hsl(var(--accent) / 0.1);
}

.page-btn svg {
    width: 0.875rem;
    height: 0.875rem;
    color: hsl(var(--foreground));
}

.page-count {
    font-size: 0.875rem;
    font-weight: 600;
    width: 1.5rem;
    text-align: center;
}

.page-words {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Features */

.features-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    max-width: 48rem;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.875rem, 6vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
      padding-left: 20%;
    padding-right: 20%;
}

.feature-card {
    position: relative;
    padding: 1.5rem;
    background: hsl(var(--card) / 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 1rem;
    transition: all 0.5s;
}

.feature-card:hover {
    border-color: hsl(var(--primary) / 0.3);
    background: hsl(var(--card) / 0.7);
    transform: translateY(-0.25rem);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), transparent);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.5s;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.1);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

/* Decorative blobs */

.decorative-blobs {
    position: relative;
    height: 1px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--accent) / 0.05);
}

.blob-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--accent) / 0.05);
}

/* How it works */

.how-it-works-section {
    padding: 4rem 0;
    background: hsl(var(--primary));
    position: relative;
    overflow: hidden;
}

.blob-how-1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--accent) / 0.05);
}

.blob-how-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.05);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge svg {
    width: 0.875rem;
    height: 0.875rem;
}

.text-white {
    color: white;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.6);
}

.highlight-white {
    color: hsl(var(--secondary));
    font-weight: 700;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

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

.step-connector {
    display: none;
}

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.step-icon svg {
    width: 2.25rem;
    height: 2.25rem;
    color: white;
}

.step-icon-1 {
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--secondary)));
}

.step-icon-2 {
    background: linear-gradient(135deg, hsl(262 83% 58%), hsl(273 70% 50%));
}

.step-icon-3 {
    background: linear-gradient(135deg, hsl(156 100% 36%), hsl(142 76% 36%));
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.625;
    max-width: 20rem;
    margin: 0 auto;
}

/* Reviews */

.reviews-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-section .section-title {
    color: black;
}

.reviews-slider {
    position: relative;
    display: block;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: black;
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 28rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
}

.review-prev,
.review-next {
    opacity: 0.4;
    transform: translateY(10px) scale(0.85);
    display: none;
}

.review-active {
    opacity: 1;
    transform: none;
    display: block;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 1rem;
    height: 1rem;
    fill: hsl(var(--accent));
    color: hsl(var(--accent));
}

.review-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsl(var(--accent) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
}

.author-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    background-color: darkblue;
    padding: 0.75rem;
    border-radius: 1rem;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.slider-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.slider-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.slider-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 2rem;
    background: hsl(var(--secondary));
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-progress {
    max-width: 20rem;
    margin: 1.5rem auto 0;
    height: 0.25rem;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: hsl(var(--secondary));
    border-radius: 9999px;
    transition: width 0.3s;
}

/* Coverage */

.coverage-section {
    padding: 4rem 0;
    background: hsl(var(--primary));
    position: relative;
    overflow: hidden;
}

.coverage-dot-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0px);
    background-size: 32px 32px;
    pointer-events: none;
}

.text-secondary {
    color: hsl(var(--secondary));
}

.coverage-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.coverage-tabs::-webkit-scrollbar {
    display: none;
}

.coverage-tab {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.coverage-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.coverage-tab.active {
    background: hsl(var(--secondary));
    color: white;
    border-color: hsl(var(--secondary));
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.2);
}

.coverage-tab svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.coverage-content {
    position: relative;
    z-index: 1;
}

.coverage-panel {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    transition: opacity 0.3s;
}

.coverage-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coverage-panel-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: hsl(var(--secondary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.coverage-panel-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--secondary));
}

.coverage-panel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coverage-panel-text {
    line-height: 1.625;
    margin-bottom: 2rem;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.coverage-tag-item {
    background: hsl(var(--secondary) / 0.1);
    border: 1px solid hsl(var(--secondary) / 0.2);
    color: hsl(var(--secondary));
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* FAQ */

.faq-section {
    padding: 4rem 0;
}

.accordion {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: white;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item[data-state="open"] {
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    transition: color 0.2s;
}

.accordion-header:hover {
    color: hsl(var(--secondary));
}

.accordion-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--muted-foreground));
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem 1.25rem;
}

.accordion-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

/* Quote */

.quote-section {
    padding: 4rem 0;
    background: hsl(var(--muted));
    padding-left: 20%;
    padding-right: 20%;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.quote-content {
    max-width: 32rem;
    text-align: center;
}

.quote-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.875rem, 6vw, 2.25rem);
    font-weight: 700;
    color: hsl(var(--primary));
}

.text-accent {
    color: hsl(var(--secondary));
}

.quote-description {
    color: hsl(var(--primary) / 0.6);
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.benefit-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: hsl(var(--secondary));
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit span {
    color: hsl(var(--primary) / 0.7);
    font-size: 0.875rem;
}

.quote-section .hero-form-wrapper {
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.quote-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */

.site-footer {
    background: hsl(var(--primary));
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: hsl(var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.3);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.625;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-link:hover {
    color: hsl(var(--secondary));
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-item svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--secondary));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.legal-link {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: hsl(var(--secondary));
}

/* Tablet */

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .datetime-wrapper {
        grid-template-columns: 1fr;
    }

    .datetime-row {
        grid-template-columns: minmax(0, 1fr) 7rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* Medium screens */

@media (min-width: 768px) {
    .header-inner {
        height: 5rem;
    }

    .logo-img {
        height: 3rem;
    }

    .main-nav {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .form-content {
        padding: 1.5rem 2rem;
    }

    .form-title {
        font-size: 1.125rem;
    }

    .form-badges {
        gap: 1rem 1.5rem;
    }

    .form-badge {
        font-size: 0.75rem;
    }

    .reviews-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        min-height: 280px;
    }

    .review-card {
        padding: 2rem;
    }

    .review-prev,
    .review-next {
        display: block;
    }

    .coverage-tabs {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .coverage-panel {
        padding: 2rem;
    }

    .accordion-header {
        font-size: 1rem;
    }

    .quote-form-wrapper {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop */

@media (min-width: 1024px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem);
        gap: 4rem;
        justify-items: stretch;
          padding-left: 10%;
    padding-right: 10%;
    }

    .hero-content {
        max-width: none;
        text-align: left;
        padding-left: 0;
        margin-left: 0;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-features,
    .hero-stats,
    .hero-social-proof {
        justify-content: flex-start;
    }

    .stat {
        align-items: flex-start;
    }

    .features-section,
    .how-it-works-section,
    .reviews-section,
    .coverage-section,
    .faq-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-step:not(:last-child) .step-connector {
        display: block;
        position: absolute;
        top: 3rem;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, hsl(var(--accent) / 0.3), hsl(var(--secondary) / 0.3));
    }

    .quote-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .quote-grid {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem);
        gap: 4rem;
        justify-items: stretch;
    }

    .quote-content {
        text-align: left;
    }

    .quote-benefits {
        align-items: flex-start;
    }

    .benefit {
        justify-content: flex-start;
    }
}

/* Mobile menu */

@media (max-width: 767px) {
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        border-bottom: 1px solid hsl(var(--border));
        gap: 1rem;
    }
}

/* Small phones */

@media (max-width: 640px) {
    :root {
        --site-gutter: 1rem;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    .feature-tag {
        width: 100%;
        justify-content: center;
    }

    .phone-input {
        grid-template-columns: 6.5rem minmax(0, 1fr);
    }

    .datetime-row {
        grid-template-columns: 1fr;
    }

    .time-select {
        width: 100%;
    }

    .form-tabs {
        gap: 0.2rem;
    }

    .tab-btn {
        padding: 0.45rem 0.35rem;
        font-size: 0.68rem;
    }

    .hero-stats {
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .slider-controls {
        max-width: 100%;
    }

    .coverage-panel-title {
        font-size: 1.25rem;
    }
}

/* Very small phones */

@media (max-width: 380px) {
    .form-content {
        padding: 1rem;
    }

    .phone-input {
        grid-template-columns: 1fr;
    }

    .country-select {
        width: 100%;
    }

    .form-checkbox label {
        font-size: 0.7rem;
    }

    .page-controls {
        margin-left: 0;
    }

    .page-counter {
        justify-content: center;
        text-align: center;
    }
}
