:root {
    --primary: #FFD700; /* King Kong Gold */
    --primary-hover: #e6c200;
    --dark: #000000;
    --darker: #000000;
    --light: #ffffff;
    --gray: #f4f4f4;
    --text-gray: #333333;
    --danger: #FF0000; /* Pure Red for CTAs */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* FAQ Styles */
.faq-section {
    padding: 100px 0;
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--primary-hover);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer.active {
    padding-bottom: 20px;
    max-height: 500px; /* Large enough to fit content */
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary);
}

/* Enhanced Footer */
.footer {
    background: var(--dark);
    color: #888;
    padding: 80px 0 40px;
    font-size: 14px;
    border-top: 10px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-col h4 {
    color: var(--light);
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #222;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}


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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(17, 17, 17, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(17, 17, 17, 0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Header */
.header {
    background: var(--light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--dark);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
}

.logo i {
    color: var(--primary-hover); /* Darker gold */
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    margin-right: 25px;
    font-size: 15px;
    text-transform: uppercase;
    transition: 0.2s;
}

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

.btn-nav {
    background: var(--primary);
    border: 2px solid var(--dark);
    padding: 12px 25px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 4px 4px 0 var(--dark);
}

.btn-nav:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--dark);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    padding: 100px 0 140px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 20%);
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.hero-badge {
    background: var(--darker);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--dark);
}

.highlight {
    background: var(--light);
    padding: 0 10px;
    color: var(--dark);
    transform: skew(-5deg);
    display: inline-block;
}

.hero-sub {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--dark);
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.arrow-container {
    position: absolute;
    left: -180px;
    top: 10px;
    width: 150px;
    display: none; /* Hidden on mobile, shown on desktop */
}

@media(min-width: 992px) {
    .arrow-container {
        display: block;
    }
}

.curved-arrow {
    width: 100px;
    height: 80px;
    transform: rotate(-10deg);
}

.arrow-text {
    font-family: 'Indie Flower', cursive, sans-serif; /* Handwriting style if available, else sans */
    font-weight: 700;
    font-size: 18px;
    transform: rotate(-15deg);
    display: block;
    margin-top: -10px;
}

.hero-form {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-form input {
    padding: 20px 25px;
    border: 2px solid var(--dark);
    border-right: none;
    font-size: 18px;
    width: 320px;
    max-width: 100%;
}

.btn-hero {
    background: var(--danger); /* Red button for action */
    color: var(--light);
    border: 2px solid var(--dark);
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: #ff2e40;
    transform: translateY(-2px);
}

.rating {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stars {
    color: var(--dark);
    font-size: 20px;
}

/* Logos Section */
.logos-section {
    padding: 40px 0;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.logos-section p {
    font-weight: 700;
    color: #999;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    font-weight: 700;
    font-size: 20px;
    color: #555;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Letter Section */
.letter-section {
    padding: 100px 0;
    background: var(--light);
}

.letter-container {
    max-width: 750px;
    margin: 0 auto;
    font-size: 20px;
    color: var(--dark);
    line-height: 1.7;
}

.alert-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.letter-section h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.letter-section h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 50px 0 20px;
    text-transform: uppercase;
    border-left: 5px solid var(--primary);
    padding-left: 15px;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.pain-item {
    background: #fff0f0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ffcccc;
}

.pain-item i {
    font-size: 30px;
    color: var(--danger);
    margin-bottom: 10px;
}

.pain-item p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.rats-nest {
    background: var(--dark);
    color: var(--light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.rats-nest h3 {
    border: none;
    color: var(--primary);
    margin: 0 0 10px;
    padding: 0;
}

.desire-list {
    margin: 40px 0;
    list-style: none;
    padding: 0;
}

.desire-list li {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.desire-list li i {
    color: #27ae60; /* Green check */
}

.cta-mid-page {
    text-align: center;
    margin-top: 60px;
    font-weight: 700;
}

.bouncing-arrow {
    font-size: 40px;
    color: var(--primary);
    margin-top: 20px;
    animation: bounce 2s infinite;
}

/* Offerings Section */
.offerings {
    background: var(--gray);
    padding: 100px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

.offerings h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    text-transform: uppercase;
    line-height: 1;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.card {
    background: var(--light);
    border: 2px solid var(--dark);
    border-radius: 12px;
    width: 480px;
    overflow: visible;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 15px 15px 0 rgba(0,0,0,0.15);
}

.ribbon {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--danger);
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transform: rotate(5deg);
}

.card-header {
    background: var(--dark);
    color: var(--light);
    padding: 40px 30px 30px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 4px solid var(--light);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    text-transform: uppercase;
    margin: 15px 0 10px;
}

.card-type {
    background: rgba(255,255,255,0.2);
    color: var(--light);
    padding: 5px 12px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.card-body {
    padding: 40px 30px;
    flex-grow: 1;
}

.card-body p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 18px;
}

.card-features {
    list-style: none;
    padding: 0;
}

.card-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.card-features li i {
    color: var(--primary); /* Gold checkmarks */
}

.card-footer {
    padding: 0 30px 40px;
    text-align: center;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--primary);
    border: 2px solid var(--dark);
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.3s;
    box-shadow: 4px 4px 0 var(--dark);
}

.btn-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--dark);
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--light);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #f0f0f0;
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    color: var(--light);
    padding: 120px 0;
}

.stats-section h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    text-transform: uppercase;
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    text-align: center;
    margin-bottom: 80px;
}

.stat-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-item h3 {
    color: #ccc;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.final-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-form {
        flex-direction: column;
        align-items: center;
    }

    .hero-form input {
        border-right: 2px solid var(--dark);
        margin-bottom: 10px;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .card {
        width: 100%;
    }
    
    .arrow-container {
        display: none;
    }
}
