/*
 * Web Synchrone — Design "Premium Trust"
 * Royal Blue (Trust) + Gold (Quality)
 * Clean, Authority, High-End
 */

/* ─── Reset & Base ───────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .2s ease
}

ul {
    list-style: none
}

:root {
    /* Palette Premium */
    --primary: #0f172a;
    /* Navy Blue / Dark Slate (Trust, Authority) */
    --accent: #ca8a04;
    /* Dark Gold / Bronze (Premium, Quality) */
    --accent-light: #fef9c3;
    /* Light Gold background */
    --text: #334155;
    /* Slate 700 (Readable, Softer than black) */
    --bg-light: #f8fafc;
    /* Slate 50 (Clean background) */
    --white: #ffffff;

    /* Functional */
    --success: #166534;
    /* Green 700 */
    --success-bg: #dcfce7;

    /* UI */
    --radius: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--accent);
}

/* ─── Navbar ─────────────────────────────── */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    /* Slightly tighter for better proportion with logo */
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Increased size */
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-brand span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Pulse CTA */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
    animation: none;
    transition: all 0.3s ease;
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 138, 4, 0.4);
    /* Gold shadow */
    background: var(--accent);
    /* Solid Gold background */
    color: var(--white) !important;
    /* Force White text */
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 1;
    }

    80%,
    100% {
        opacity: 0;
    }
}

.btn-nav-cta .icon-phone {
    animation: vibrate 2s linear infinite;
}

@keyframes vibrate {

    0%,
    100% {
        transform: rotate(0);
    }

    20% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    80% {
        transform: rotate(5deg);
    }
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* ─── Hero ───────────────────────────────── */
.hero {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* New Hook Styles */
.hero-hook {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
    font-weight: 500;
}

.highlight-risk {
    background: rgba(220, 38, 38, 0.2);
    /* Subtle Red tint for danger/risk */
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #fca5a5;
    /* Light Red */
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.hero-sub {
    font-size: 1.15rem;
    color: #cbd5e1;
    /* Slate 300 */
    margin-bottom: 40px;
    max-width: 600px;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    line-height: 1.8;
    /* Increased for better readability */
    margin-top: 20px;
    /* Added spacing from the hook */
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-pill i {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(202, 138, 4, 0.3);
}

.btn-gold:hover {
    background: #a16207;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(202, 138, 4, 0.4);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    margin-left: 16px;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* ─── Trust Section ──────────────────────── */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text);
}

/* ─── Features (Cards) ───────────────────── */
section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    color: #854d0e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* ─── Portfolio ──────────────────────────── */
.portfolio-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-img-placeholder {
    height: 200px;
    background: #e2e8f0;
    /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #94a3b8;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.portfolio-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
}

.portfolio-link:hover {
    color: var(--accent);
}

/* ─── Pricing ────────────────────────────── */
.pricing-section {
    background: var(--primary);
    color: white;
}

.pricing-section h2,
.pricing-section p {
    color: white;
}

.pricing-section .section-label {
    color: var(--accent);
}

.pricing-card {
    background: var(--white);
    color: var(--text);
    padding: 48px;
    border-radius: 16px;
    position: relative;
    text-align: center;
}

.pricing-card.premium {
    transform: scale(1.05);
    border: 3px solid var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.pricing-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 24px 0;
}

.pricing-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-features {
    text-align: left;
    margin: 32px 0;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 3px;
}

.width-full {
    width: 100%;
}

/* ─── FAQ Accordion ──────────────────────── */
.faq-item {
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    padding: 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 24px;
    display: none;
    color: #64748b;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ─── Contact Banner ─────────────────────── */
.contact-banner {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

/* ─── Footer ─────────────────────────────── */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ─── Mobile ─────────────────────────────── */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .pricing-card.premium {
        transform: none;
        margin: 20px 0;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-lg);
    }
}