/* Component Styles */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 0.5rem;
}

.nav-actions {
    display: none;
    align-items: center;
    margin-left: auto;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
    }
}

.btn--login {
    min-width: 84px;
    height: 2.5rem;
    padding: 0 1rem;
    background-color: var(--color-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn--login:hover {
    background-color: var(--color-primary-end);
}

.btn--lang {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background-color: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #111418;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn--lang:hover {
    background-color: #f9fafb;
    border-color: var(--color-primary);
}

.btn--lang .material-symbols-outlined {
    font-size: 18px;
}

.btn--lang .lang-text {
    font-size: 0.75rem;
    font-weight: 700;
}

.nav-actions .btn--lang {
    margin-right: 0.5rem;
}

.mobile-lang-item {
    display: block;
}

@media (min-width: 768px) {
    .mobile-lang-item {
        display: none;
    }
}

/* Header & Navigation */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #f0f2f4;
}

.site-header--sticky {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.75rem;
    gap: 1rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo__icon-wrapper {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    border-radius: 0.5rem;
}

.logo__icon-wrapper .material-symbols-outlined {
    font-size: 24px;
}

.logo__text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111418;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0;
}

.nav-list {
    display: none; /* Hidden on mobile by default */
    list-style: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-list {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.nav-list a {
    text-decoration: none;
    color: #111418;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #6b7280;
    margin-left: auto;
}

.nav-toggle .material-symbols-outlined {
    font-size: 24px;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}
/* Hero Section */
.hero {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.hero__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
    z-index: -10;
}

.hero__bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    background: linear-gradient(to left, rgba(59, 130, 246, 0.05), transparent);
    z-index: -10;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero__container {
        flex-direction: row;
        gap: 5rem;
    }
}

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

@media (min-width: 1024px) {
    .hero__content {
        flex: 1;
        align-items: flex-start;
        text-align: left;
    }
}

.hero__verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero__verified-badge .material-symbols-outlined {
    font-size: 16px;
}

.hero__title {
    font-size: clamp(2.25rem, 8vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.033em;
    color: #111418;
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.75rem;
    }
}

.hero__title--highlight {
    color: var(--color-primary);
}

.hero__description {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.625;
    max-width: 600px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-block: 0.5rem;
}

.badge--card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 2rem;
    padding-left: 0.5rem;
    padding-right: 1rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.badge__icon {
    font-size: 20px;
}

.badge__icon--green {
    color: #10b981;
}

.badge__icon--blue {
    color: var(--color-primary);
}

.badge__text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

.btn--primary {
    min-width: 140px;
    height: 3rem;
    padding: 0 1.5rem;
    background-color: var(--color-primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn--shadow {
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.06);
}

.btn--primary:hover {
    background-color: var(--color-primary-end);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.btn--secondary {
    min-width: 140px;
    height: 3rem;
    padding: 0 1.5rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    color: #111418;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn--secondary:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.btn--secondary .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.btn--secondary:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.hero__cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .hero__cta {
        justify-content: flex-start;
    }
}

.hero__visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
}

.hero__visual-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-color: rgba(191, 219, 254, 0.5);
    filter: blur(60px);
    border-radius: 50%;
    z-index: -10;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 18;
    background-color: white;
    border-radius: 2.5rem;
    border: 8px solid #f1f5f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    max-height: 80vh;
}

@media (max-width: 640px) {
    .phone-mockup {
        max-width: 280px;
        max-height: 560px;
    }
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.phone-mockup__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    padding-top: 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
}

.phone-mockup__status-icons {
    display: flex;
    gap: 0.25rem;
}

.phone-mockup__status-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #cbd5e1;
    border-radius: 50%;
}

.phone-mockup__header {
    margin-top: 1rem;
    padding: 0 1.5rem;
}

.phone-mockup__header h3 {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 700;
    color: #1e293b;
}

.phone-mockup__header p {
    font-size: 0.75rem;
    color: #64748b;
}

.phone-mockup__timer-card {
    margin: 1.5rem 1rem 0 1rem;
    padding: 1.5rem;
    background-color: var(--color-primary);
    border-radius: 1rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.phone-mockup__timer-icon {
    font-size: 48px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.phone-mockup__timer-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-mockup__timer-value {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin: 0.5rem 0;
}

.phone-mockup__timer-units {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

.phone-mockup__timeline {
    margin-top: 1.5rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 1;
    min-height: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.timeline-item--faded {
    opacity: 0.6;
}

.timeline-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item__icon--orange {
    background-color: #fff7ed;
    color: #ea580c;
}

.timeline-item__icon--blue {
    background-color: #eff6ff;
    color: var(--color-primary);
}

.timeline-item__icon .material-symbols-outlined {
    font-size: 20px;
}

.timeline-item__content {
    flex: 1;
}

.timeline-item__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
}

.timeline-item__subtitle {
    font-size: 0.75rem;
    color: #64748b;
}

.timeline-item__time {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
}

.phone-mockup__gradient-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6rem;
    background: linear-gradient(to top, white, transparent);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background-color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.floating-card--step1 {
    top: 10%;
    left: -5%;
    animation: bounce-slow 3s ease-in-out infinite;
}

.floating-card--step2 {
    bottom: 25%;
    right: -5%;
    animation: bounce-slow 4s ease-in-out infinite 1s;
}

.floating-card--result {
    top: 40%;
    right: -8%;
    animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .floating-card--step1 {
        left: -10%;
    }

    .floating-card--step2 {
        right: -8%;
    }

    .floating-card--result {
        right: -12%;
    }
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.floating-card__icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.floating-card__icon--rose {
    background-color: #fff1f2;
    color: #f43f5e;
}

.floating-card__icon--indigo {
    background-color: #eef2ff;
    color: #6366f1;
}

.floating-card__icon--green {
    background-color: #f0fdf4;
    color: #10b981;
}

.floating-card__icon .material-symbols-outlined {
    font-size: 20px;
}

.floating-card__content {
    display: flex;
    flex-direction: column;
    padding-right: 0.5rem;
}

.floating-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.floating-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
}

/* Mobile Menu Support */
@media (max-width: 767px) {
    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1.5rem;
        border-bottom: 1px solid #f0f2f4;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 40;
        gap: 1rem;
        animation: slide-down 0.2s ease-out;
    }
    
    @keyframes slide-down {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* How It Works Section */
.how-it-works {
    padding-block: 4rem;
    background: #f8fafc;
}

@media (min-width: 1024px) {
    .how-it-works {
        padding-block: 5rem;
    }
}

.how-it-works__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.how-it-works__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.how-it-works__steps {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .how-it-works__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        position: relative;
    }
}

@media (min-width: 1024px) {
    .how-it-works__steps {
        gap: 3rem;
    }
}

.step-card {
    background: white;
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.step-card__number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
}

.step-card__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-card__icon .material-symbols-outlined {
    font-size: 36px;
    font-weight: 400;
}

.step-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111418;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-card__description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* Connecting lines between step cards (desktop only) */
@media (min-width: 768px) {
    .step-card::after {
        content: '';
        position: absolute;
        top: 3.5rem; /* Align with icon vertical center */
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(to right, #3b82f6, transparent);
        z-index: -1;
    }

    .step-card:last-child::after {
        display: none; /* No line after last card */
    }
}

@media (min-width: 1024px) {
    .step-card::after {
        right: -1.5rem;
        width: 3rem;
    }
}

/* CTA Section */
.cta-section {
    padding-block: 4rem;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
}

@media (min-width: 1024px) {
    .cta-section {
        padding-block: 5rem;
    }
}

.cta-section__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-section__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 900;
    color: #111418;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section__description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.cta-section__buttons {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.cta-section__trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.trust-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--color-primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    text-align: center;
    color: #111418;
    font-weight: 900;
    margin-bottom: var(--space-xl);
    line-height: 1.15;
    letter-spacing: -0.02em;
}



/* About Section */
.about {
    padding-block: 5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.about-feature {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px -2px rgba(0, 0, 0, 0.12);
}

.about-feature__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.about-feature__icon .material-symbols-outlined {
    font-size: 32px;
}

.about-feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111418;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-feature__description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.65;
}

.about-feature__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.about-feature__list li {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.65;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.about-feature__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

.about-feature__list li:last-child {
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background-color: var(--color-white);
    border-top: 1px solid #f0f1f5;
    padding-block: 2.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.footer-icon .material-symbols-outlined {
    font-size: 1.5rem;
}

.footer-brand-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-text);
}

/* Navigation Links */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 2rem;
}

.footer-nav a {
    color: #606e8a;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social a {
    color: #606e8a;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-social .material-symbols-outlined {
    font-size: 1.5rem;
}

/* Legal & Copyright */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright {
    color: #606e8a;
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

.footer-disclaimer {
    color: #606e8a;
    font-size: 0.75rem;
    font-weight: 400;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .footer-nav {
        gap: 1rem 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}
