:root {
    --primary: #7c3aed;
    --dark: #0f172a;
    --muted: #6b7280;
    --bg: #f8fafc;
    --card: #ffffff;
    --radius: 16px;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto;
}

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    color: var(--dark);
    background: #fff;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 100;
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    font-weight: 700;
    font-size: 18px;
}
.nav-links a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}
.nav-links a.active,
.nav-links a:hover {
    color: var(--primary);
}

/* LAYOUT */
.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
}
.soft {
    background: var(--bg);
}
.center {
    text-align: center;
}

/* HERO */
.hero {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, #f5f3ff, #ffffff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
}

.hero-intro {
    font-size: 18px;
    color: #6b7280;
    max-width: 560px;
}

/* Expandable content */
.hero-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #6b7280;
}

.hero-content.open .hero-more {
    max-height: 600px;
}

.hero-more p {
    margin-top: 14px;
}

/* Buttons */
.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

.btn.primary {
    background: #7c3aed;
    color: #fff;
}

.btn.outline {
    border: 1px solid #ddd;
    color: #0f172a;
}

/* Read more */
.hero-toggle {
    background: none;
    border: none;
    color: #7c3aed;
    font-weight: 600;
    cursor: pointer;
}

/* Image */
.hero-media {
    display: flex;
    justify-content: flex-end;
}

.img-placeholder {
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
}

.hero-img {
    width: 100%;
    height: 360px;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-media {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 34px;
    }
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.reverse {
    grid-auto-flow: dense;
}

/* CARDS */

.feature p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 260px;
}

.feature .icon {
    width: 120px;
    height: 120px;
    margin: auto;
}

.feature,
.step-card {
    background: var(--card);
    padding: 28px;
    border: 1px solid #7c3aed;
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center; /* horizontal center */
    text-align: center; /* center text */
}

.feature:hover,
.step-card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
}

.occasion-card {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* IMAGE PLACEHOLDERS */
.img-placeholder {
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
}
.img-placeholder.large {
    height: 320px;
}
.img-placeholder.small {
    height: 120px;
}
.hero-image {
    height: 360px;
    border-radius: var(--radius);
}

.hero-image img {
    height: 360px;
    border-radius: var(--radius);
}

.image {
    border-radius: 16px;
}

/* BUTTONS */
.btn-group {
    margin-top: 26px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}
.primary {
    background: var(--primary);
    color: #fff;
}
.ghost {
    border: 1px solid #ddd;
    color: var(--dark);
}

/* OCCASIONS SECTION */
.occasions {
    padding: 80px 0;
}

.section-sub {
    margin-top: 10px;
    max-width: 900px;
    color: #6b7280;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID */
.occasions-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

/* CARD */
.occ-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #7c3aed;
}

.occ-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.occ-short {
    color: #6b7280;
    margin-bottom: 14px;
    font-size: 15px;
}

/* Expandable content */
.occ-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.55;
}

.occ-card.open .occ-more {
    max-height: 300px;
    margin-bottom: 14px;
}

/* Toggle */
.occ-toggle {
    background: none;
    border: none;
    color: #7c3aed;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
}

/* CTA */
.btn.small {
    padding: 10px 18px;
    border-radius: 10px;
    background: #7c3aed;
    color: white;
    font-size: 12px;
    text-decoration: none;
}

/* LIST */
.check-list {
    padding-left: 0;
    margin-top: 20px;
}
.check-list li {
    list-style: none;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}
.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* PREPAID SECTION */
.prepaid {
    padding: 80px 0;
}

.prepaid-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.prepaid-content h2 {
    font-size: 32px;
    margin-bottom: 14px;
}

.prepaid-intro {
    color: #6b7280;
    font-size: 17px;
    max-width: 560px;
}

/* Expandable full content */
.prepaid-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    color: #6b7280;
}

.prepaid-content.open .prepaid-more {
    max-height: 1500px;
    margin-top: 14px;
}

/* Subtitle */
.prepaid-subtitle {
    font-size: 18px;
    margin-top: 20px;
    color: #0f172a;
}

/* Bullet list */
.prepaid-list {
    padding-left: 0;
    margin-top: 10px;
}

.prepaid-list li {
    list-style: none;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.prepaid-list li::before {
    content: "✓";
    font-weight: bold;
    color: #7c3aed;
    position: absolute;
    left: 0;
}

/* Toggle button */
.prepaid-toggle {
    margin-top: 16px;
    background: none;
    border: none;
    color: #7c3aed;
    font-weight: 600;
    cursor: pointer;
}

/* Image placeholder */
.prepaid-media {
    display: flex;
    justify-content: flex-end;
}

.prepaid-img {
    width: 100%;
    height: 340px;
    border-radius: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .prepaid-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .prepaid-media {
        justify-content: center;
    }

    .prepaid-content h2 {
        font-size: 28px;
    }
}

/* REDEEM STEPS SECTION */
.redeem-steps {
    padding: 80px 0;
}

.redeem-steps h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.redeem-intro {
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 17px;
    line-height: 1.6;
}

/* Steps grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

/* Step card */
.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Number circle */
.step-num {
    width: 44px;
    height: 44px;
    background: #7c3aed;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.step-card p {
    color: #6b7280;
    line-height: 1.55;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-intro {
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 17px;
}

/* FAQ Items */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 18px;
    overflow: hidden;
}

/* Question button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    color: #7c3aed;
    font-weight: bold;
}

/* Answer box */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 18px 0;
}

/* Expanded State */
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 20px 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* SEO CONTENT BLOCK */
.seo-block {
    padding: 60px 0 80px;
    background: #fafafa; /* soft neutral background */
    border-top: 1px solid #eee;
}

.seo-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.seo-title {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: left;
}

.seo-container p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 16px;
}

.seo-points {
    padding-left: 0;
    margin-bottom: 20px;
}

.seo-points li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 16px;
    color: #6b7280;
}

/* GIFT CARDS EXPLAINED SECTION */
.giftcards-explained {
    padding: 80px 0;
}

.explained-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.explained-content h2 {
    font-size: 32px;
    margin-bottom: 14px;
}

.explained-intro {
    color: #6b7280;
    font-size: 17px;
    max-width: 560px;
}

/* Hidden content */
.explained-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    color: #6b7280;
}

/* When open */
.explained-content.open .explained-more {
    max-height: 2000px;
    margin-top: 14px;
}

.explained-subtitle {
    margin-top: 20px;
    font-size: 18px;
}

.explained-list li {
    list-style: none;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.explained-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
}

.explained-toggle {
    margin-top: 16px;
    background: none;
    border: none;
    color: #7c3aed;
    font-weight: 600;
    cursor: pointer;
}

/* Image */
.explained-media {
    display: flex;
    justify-content: flex-end;
}

.explained-img {
    width: 100%;
    height: 340px;
    border-radius: 18px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .explained-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .explained-media {
        justify-content: center;
    }
    .explained-content h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .seo-container {
        padding: 28px;
    }

    .seo-title {
        font-size: 22px;
    }
}

/* FOOTER */
.footer {
    padding: 30px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid,
    .two-col {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 36px;
    }
    .nav-links a {
        margin-left: 16px;
    }
}
