/* ============================================
   The Receptionist — Conquesting Landing Page
   Brand: #34478C (Blue) / #FA9200 (Orange)
   Font: Lato
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #272727;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Section Patterns ---------- */
.section-white {
    background: #fff;
    padding: 5rem 0;
}

.section-light {
    background: #F5F7FA;
    padding: 5rem 0;
}

.section-blue {
    background: linear-gradient(135deg, #34478C 0%, #1E2A54 100%);
    color: #fff;
    padding: 5rem 0;
}

.section-cta {
    background: linear-gradient(135deg, #34478C 0%, #283A75 100%);
    color: #fff;
    padding: 5rem 0;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-subtitle {
    color: #6B7280;
    font-size: 1.1rem;
}

.section-tag {
    display: inline-block;
    background: rgba(52, 71, 140, 0.08);
    color: #34478C;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* ---------- Navigation ---------- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.3s;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
}

.brand-logo {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 700;
    color: #272727;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #34478C;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #272727;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #34478C;
    color: #fff;
}

.btn-primary:hover {
    background: #283A75;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 71, 140, 0.3);
}

.btn-secondary {
    background: #FA9200;
    color: #fff;
}

.btn-secondary:hover {
    background: #E08300;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 146, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #34478C;
    border: 2px solid #34478C;
}

.btn-outline:hover {
    background: #34478C;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #34478C;
}

.btn-white:hover {
    background: #F0F2F5;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #34478C 0%, #1E2A54 50%, #0F1733 100%);
    color: #fff;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(250, 146, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-vs {
    display: block;
    color: #FA9200;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-guarantee {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hero Product Image */
.hero-product-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #34478C;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* ---------- Acknowledge Section ---------- */
.acknowledge-section {
    padding: 4rem 0;
}

.acknowledge-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.acknowledge-icon {
    width: 56px;
    height: 56px;
    background: rgba(52, 71, 140, 0.07);
    color: #34478C;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
}

.acknowledge-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.acknowledge-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
}

/* ---------- FABRIC Section ---------- */
.fabric-content {
    text-align: center;
}

.fabric-header {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.fabric-header h2 {
    font-size: 2rem;
    font-weight: 900;
}

.fabric-highlight {
    color: #FA9200;
    letter-spacing: 0.1em;
}

.fabric-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.75rem;
}

.fabric-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.fabric-value {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.5rem 0.75rem;
    transition: all 0.3s ease;
}

.fabric-value:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.fabric-letter {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #FA9200;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.fabric-word {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- Radical Support ---------- */
.support-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.support-text h2 {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.support-text em {
    color: #FA9200;
    font-style: italic;
}

.support-text p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.support-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-card {
    background: #F5F7FA;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.support-card:hover {
    border-color: rgba(52, 71, 140, 0.15);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(52, 71, 140, 0.06);
}

.support-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #34478C;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.support-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.support-card p {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* ---------- Top Reasons ---------- */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.reason-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #34478C, #FA9200);
    opacity: 0;
    transition: opacity 0.3s;
}

.reason-card:hover {
    border-color: rgba(52, 71, 140, 0.2);
    box-shadow: 0 8px 30px rgba(52, 71, 140, 0.08);
    transform: translateY(-3px);
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(52, 71, 140, 0.06);
    line-height: 1;
}

.reason-icon {
    width: 48px;
    height: 48px;
    background: rgba(52, 71, 140, 0.07);
    color: #34478C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.reason-card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.reason-card p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.7;
}

/* ---------- Features Grid ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #F5F7FA;
}

.feature-item i {
    font-size: 1.8rem;
    color: #34478C;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ---------- Trial / CTA Section ---------- */
.trial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.trial-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.trial-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

.trial-benefits {
    margin-top: 2rem;
}

.trial-benefit {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.trial-benefit i {
    color: #FA9200;
}

/* ---------- Form ---------- */
.trial-form-container {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    color: #272727;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.trial-form-container h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #272727;
    background: #F9FAFB;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #34478C;
    box-shadow: 0 0 0 3px rgba(52, 71, 140, 0.1);
    background: #fff;
}

.form-group input::placeholder {
    color: #9CA3AF;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-align: center;
    margin-top: 1rem;
}

.form-disclaimer a {
    color: #34478C;
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #6B7280;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #1A1D2E;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: #FA9200;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Animations ---------- */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .support-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trial-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fabric-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem 1.5rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        gap: 0.75rem;
    }

    .nav-links.active+.nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 120px);
        left: 0;
        right: 0;
        background: #fff;
        padding: 0 1.5rem 1rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-section h1 {
        font-size: 1.9rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-visual {
        display: none;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .fabric-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .fabric-value {
        padding: 1rem 0.5rem;
    }

    .fabric-letter {
        font-size: 1.5rem;
    }

    .fabric-word {
        font-size: 0.65rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trial-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row.two-column {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* XS Mobile */
@media (max-width: 380px) {
    .hero-section h1 {
        font-size: 1.55rem;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .fabric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trial-form-container {
        padding: 1.5rem;
    }
}