/* ============================================
   PinnyCards.com — visual language copied and
   trimmed from pinnybinny.com/assets/css/main.css
   (own copy: different domain, no shared assets)
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    color: #333;
}

a {
    color: inherit;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #FF9800;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-dark {
    background: #1F1F1F;
    color: white;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFD34D 0%, #8A4CF5 55%, #B97ADB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mascot {
    display: inline-block;
    margin-bottom: 5px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.7rem;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #333;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   WHY PINNYCARDS (features grid)
   ============================================ */
.features {
    padding: 90px 20px;
    background: white;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    justify-content: center;
    max-width: 1100px;
}

.feature {
    text-align: center;
    padding: 36px 26px;
    border-radius: 16px;
    transition: all 0.3s;
    background: #f9f9f9;
    width: 240px;
    flex-shrink: 0;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.3s;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.98rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.steps {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.step {
    display: flex;
    gap: 26px;
    align-items: center;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFCB2B 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 203, 43, 0.4);
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.02rem;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download {
    padding: 90px 20px;
    background: #fff7eb;
}

.download-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.download-lead {
    color: #6b5a3a;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.download-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.download-hint {
    color: #7a6a4a;
    font-size: 0.95rem;
}

.card-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-card {
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-card-marker {
    width: 108px;
    height: 108px;
    border-radius: 10px;
    background:
        linear-gradient(45deg, #1F1F1F 25%, transparent 25%) 0 0/24px 24px,
        linear-gradient(-45deg, #1F1F1F 25%, transparent 25%) 0 0/24px 24px,
        linear-gradient(45deg, transparent 75%, #1F1F1F 75%) 0 0/24px 24px,
        linear-gradient(-45deg, transparent 75%, #1F1F1F 75%) 0 0/24px 24px;
    background-color: white;
}

.mock-card-letter {
    position: absolute;
    font-weight: 800;
    font-size: 1.1rem;
    color: #8A4CF5;
}

.mock-card-letter.top {
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
}

.mock-card-letter.bottom {
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
}

.mock-card-letter.left {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.mock-card-letter.right {
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.mock-card-number {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #1F1F1F;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
}

/* ============================================
   FAIR PICKER PROMO
   ============================================ */
.picker-promo {
    padding: 90px 20px;
    background: #1F1F1F;
    color: white;
}

.picker-promo-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.picker-promo-text .section-title,
.picker-promo-text .section-subtitle {
    color: white;
}

.picker-promo-text .section-subtitle {
    color: #ccc;
    max-width: none;
}

.picker-promo-list {
    list-style: none;
    margin: 22px 0 24px;
    display: grid;
    gap: 10px;
    color: #ddd;
    font-size: 1.02rem;
}

.picker-trust {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 28px;
}

.picker-trust-headline {
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 6px;
}

.picker-trust-sub {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.picker-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.picker-trust-badges span {
    background: rgba(255, 255, 255, 0.1);
    color: #eee;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

.picker-promo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.picker-promo-card {
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 36px 40px;
    text-align: center;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.picker-promo-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #8A4CF5;
    margin-bottom: 10px;
}

.picker-promo-number {
    font-size: 3rem;
    font-weight: 900;
}

@media (max-width: 900px) {
    .picker-promo-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .picker-promo-text .section-title,
    .picker-promo-text .section-subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto;
    }

    .picker-promo-list {
        text-align: left;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .picker-trust {
        text-align: left;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .picker-trust-badges {
        justify-content: center;
    }
}

/* ============================================
   PLICKERS ALTERNATIVE / SEO CALLOUT
   ============================================ */
.seo-callout {
    padding: 70px 20px;
    background: white;
    text-align: center;
}

.seo-callout-box {
    max-width: 760px;
    margin: 0 auto;
    background: #f9f6ff;
    border: 1px solid #e6dcfb;
    border-radius: 16px;
    padding: 40px;
}

.seo-callout-box h2 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 14px;
    font-weight: 800;
}

.seo-callout-box p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
    padding: 90px 20px;
    background: #fafafa;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: white;
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    font-family: inherit;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF9800;
    font-size: 1.3rem;
    transition: transform 0.25s;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   READY FOR MORE (cross-sell)
   ============================================ */
.cross-sell {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FFD34D 0%, #8A4CF5 55%, #B97ADB 100%);
    text-align: center;
}

.cross-sell-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cross-sell h2 {
    font-size: 2.6rem;
    color: white;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.cross-sell-lead {
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cross-sell-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.cross-sell-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cross-sell-cover {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    animation: float-cover 3.5s ease-in-out infinite;
}

.cross-sell-item:nth-child(2) .cross-sell-cover { animation-delay: 0.3s; }
.cross-sell-item:nth-child(3) .cross-sell-cover { animation-delay: 0.6s; }
.cross-sell-item:nth-child(4) .cross-sell-cover { animation-delay: 0.9s; }
.cross-sell-item:nth-child(5) .cross-sell-cover { animation-delay: 1.2s; }

.cross-sell-label {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 900px) {
    .cross-sell-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .cross-sell-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 50px 20px 0;
    background: #1F1F1F;
    color: #ccc;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.footer-brand img {
    height: 56px;
}

.footer-trust {
    max-width: 320px;
    line-height: 1.6;
    font-size: 0.92rem;
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer a {
    color: #FFCB2B;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #FFD84D;
    text-decoration: underline;
}

.footer-bottom-bar {
    border-top: 1px solid #333;
    padding: 18px 0;
    text-align: center;
    font-size: 0.88rem;
    color: #888;
}

/* ============================================
   TEXT PAGES (privacy / terms)
   ============================================ */
.text-page {
    padding: 80px 20px 80px;
    background: #fff;
    min-height: 70vh;
}

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

.text-page h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #333;
    font-weight: 800;
}

.text-page h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 14px;
    color: #444;
    font-weight: 700;
}

.text-page p,
.text-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

.text-page ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .download-inner {
        grid-template-columns: 1fr;
    }

    .download-cta {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.3rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .mascot img {
        max-width: 320px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
    }

    .cross-sell h2 {
        font-size: 1.7rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        justify-content: center;
    }

    .footer-trust {
        max-width: none;
        margin: 0 auto;
    }
}
