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

:root {
    --primary-gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --secondary-gradient: linear-gradient(135deg, #3B82F6 0%, #6366F1 100%);
    --accent-indigo: #6366F1;
    --accent-purple: #8B5CF6;
    --accent-blue: #3B82F6;
    --accent-teal: #06B6D4;
    --dark-slate: #0F172A;
    --medium-slate: #1E293B;
    --light-slate: #334155;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --success-green: #10B981;
    --warning-amber: #F59E0B;
}

html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-indigo);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.dropbtn:hover {
    color: #1e293b;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 1001;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
    border: 1px solid rgba(30, 41, 59, 0.1);
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(99, 102, 241, 0.85) 100%), url('https://images.unsplash.com/photo-1677442136019-21780ecad995?w=1920&h=1080&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-hero {
    padding: 140px 0 80px;
    background: linear-gradient(120deg, #0f172a 0%, #1e293b 40%, #312e81 100%);
    color: #fff;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.product-hero-copy h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.product-hero-copy p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
}

.product-bullets {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.product-bullets li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.product-bullets i {
    color: #38bdf8;
    margin-top: 0.25rem;
}

.product-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-guarantee {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 16px;
    padding: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-hero-media {
    display: flex;
    justify-content: center;
}

.product-hero-card {
    background: #fff;
    color: #0f172a;
    border-radius: 24px;
    padding: 2rem;
    max-width: 360px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.product-hero-card ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.product-hero-card li {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.product-hero-card span {
    color: #312e81;
}

.card-eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #6366f1;
    margin-bottom: 0.75rem;
    display: block;
}

.card-note {
    font-size: 0.95rem;
    color: #475569;
}

.product-metrics {
    background: #f8fafc;
    padding: 70px 0;
}

.product-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-metric-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.product-metric-card h3 {
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.product-inside {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}

.product-card h3 {
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.product-card ul {
    margin: 1rem 0 0 1rem;
    color: #475569;
}

.product-usecases {
    padding: 70px 0;
    background: #0f172a;
    color: #e2e8f0;
}

.product-usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    padding: 1.75rem;
}

.usecase-card h3 {
    color: #38bdf8;
    margin-bottom: 0.5rem;
}

.product-bonus {
    padding: 80px 0;
    background: #fdf4ff;
}

.product-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.product-bonus-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.1);
}

.product-testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.testimonial-card p {
    font-style: italic;
    color: #0f172a;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    margin: 0;
}

.testimonial-card span {
    color: #475569;
    font-size: 0.9rem;
}

.product-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b, #312e81);
    color: #fff;
}

.product-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}
.hero-capture {
    margin: 2rem auto 0;
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    text-align: left;
    max-width: 640px;
}

.hero-capture h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.capture-eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #38bdf8;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-capture p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.capture-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.capture-form input[type="email"] {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
}

.capture-form input[type="email"]:focus {
    outline: 2px solid #38bdf8;
}

.capture-form input[type="email"].input-error {
    outline: 2px solid #f87171;
}

.capture-form button {
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
}

.capture-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
}

.capture-feedback {
    font-size: 0.85rem;
    margin-top: 0.4rem;
    color: #bbf7d0;
    display: none;
}

.capture-feedback.is-visible {
    display: block;
}

.hero-capture-light {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.hero-capture-light h3 {
    color: #0f172a;
}

.hero-capture-light p,
.hero-capture-light .capture-note {
    color: rgba(15, 23, 42, 0.75);
}

.hero-capture-light .capture-eyebrow {
    color: #5e3ef9;
}

.hero-capture-light .capture-feedback {
    color: #15803d;
}

.landing-hero {
    background: linear-gradient(125deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 60%, rgba(56, 189, 248, 0.85) 100%);
    color: #fff;
    padding: 140px 0 80px;
    text-align: left;
}

.landing-hero .landing-hero-content {
    max-width: 900px;
}

.landing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.landing-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 1rem 1.25rem;
}

.metric-card h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.3rem;
    color: #fff;
}

.metric-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.landing-section {
    padding: 70px 0;
}

.landing-section:nth-of-type(even) {
    background: #f8fafc;
}

.landing-section h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: #0f172a;
}

.landing-section p {
    color: #475569;
    max-width: 800px;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.grid-two ul {
    margin-left: 1.2rem;
    color: #475569;
}

.lead-box {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 24px;
    padding: 2rem;
    margin-top: 2rem;
}

.faq-section {
    padding: 70px 0;
    background: #fff;
}

.faq-list details {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.faq-list summary {
    font-weight: 600;
    cursor: pointer;
    color: #0f172a;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    text-align: left;
}

.highlight-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}

.hero-highlight h3 {
    font-size: 1.2rem;
    margin: 0 0 0.3rem 0;
    color: #fff;
}

.hero-highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.intent-playbook {
    padding: 80px 0;
    background: #0f172a;
    color: #e2e8f0;
}

.intent-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.intent-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.intent-header p {
    color: #cbd5f5;
}

.playbook-library {
    padding: 70px 0;
    background: #fff;
}

.playbook-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}

.playbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.playbook-card {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #f8fafc;
}

.playbook-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.playbook-card h3 {
    margin: 0;
    color: #0f172a;
}

.playbook-card p {
    color: #475569;
    flex-grow: 1;
}

.keyword-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.keyword-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.keyword-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94a3b8;
}

.keyword-card h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
}

.keyword-card p {
    color: #cbd5f5;
    flex-grow: 1;
}

.text-link {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.intent-intro {
    padding: 60px 0;
    background: #f8fafc;
}

.intent-intro-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.intent-intro-card ul {
    margin: 1rem 0 0 1.2rem;
    color: #475569;
}

.tool-breakouts {
    padding: 80px 0;
    background: #f8fafc;
}

.breakout-card {
    background: #fff;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 25px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.3);
    margin-bottom: 2.5rem;
}

.breakout-header h2 {
    margin-top: 0.5rem;
    font-size: 2rem;
    color: #0f172a;
}

.breakout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.breakout-grid ul {
    margin-left: 1.2rem;
    color: #475569;
}

.tool-spotlight {
    padding: 80px 0;
    background: #f1f5f9;
}

.spotlight-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.spotlight-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.spotlight-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.spotlight-header p {
    color: #475569;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.spotlight-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spotlight-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.spotlight-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
}

.spotlight-card p {
    color: #475569;
    flex-grow: 1;
}

.spotlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.spotlight-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-weight: 500;
}

.spotlight-list li i {
    color: #16a34a;
}

.spotlight-card .btn-primary {
    width: fit-content;
}

.growth-kit {
    padding: 80px 0;
    background: #0f172a;
    color: #e2e8f0;
}

.growth-card {
    background: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 30px;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.growth-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.growth-list li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #cbd5f5;
}

.growth-list i {
    color: #22c55e;
}

.growth-form label {
    font-size: 0.9rem;
    color: #cbd5f5;
}

.growth-form input {
    width: 100%;
    margin: 0.75rem 0;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    border: none;
    outline: none;
    background: #fff;
    color: #0f172a;
}

.form-note {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--accent-indigo);
    border-color: white;
}

/* Featured Tools */
.featured-tools {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-tools h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.tools-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 41, 59, 0.1);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-10px);
}

.tool-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-indigo);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-radius: 20px;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-logo {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.tool-logo img {
    max-width: 64px;
    max-height: 64px;
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.hidden { display: none !important; }

.tool-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tool-card p {
    margin-bottom: 1rem;
    color: #666;
}

.rating {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--accent-indigo) 100%);
    padding: 64px 0;
    color: white;
    text-align: center;
    margin-top: 3rem;
    display: flex;
    align-items: center;
}

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

.newsletter-card {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.newsletter p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-form-wrapper {
    margin-top: 1.75rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: #334155;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.95rem;
}

.newsletter-form button:hover {
    background: #475569;
}

/* ConvertKit Newsletter Styling - Force smaller size */
.formkit-form[data-uid="02bc1b3326"],
.formkit-form,
[data-uid="02bc1b3326"] {
    max-width: 550px !important;
    margin: 20px auto !important;
    padding: 24px 20px !important;
}

.newsletter .formkit-form[data-uid="02bc1b3326"],
.newsletter .formkit-form,
.newsletter [data-uid="02bc1b3326"] {
    max-width: 640px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Hide default ConvertKit hero/header inside the newsletter band */
.newsletter .formkit-hero,
.newsletter .formkit-header,
.newsletter .formkit-subheader {
    display: none !important;
}

/* Inline email row on desktop */
.newsletter .formkit-fields {
    display: flex !important;
    gap: 0.75rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
}

.newsletter .formkit-field {
    flex: 1 1 auto;
}

.newsletter .formkit-field input[type="email"],
.newsletter .formkit-field input[type="text"] {
    width: 100%;
}

.newsletter [data-element="submit"],
.newsletter .formkit-submit {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Tidy the tiny footer text */
.newsletter .formkit-guarantee,
.newsletter .formkit-powered-by {
    margin-top: 0.75rem !important;
    font-size: 0.75rem !important;
    opacity: 0.8;
}

.formkit-form h1,
.formkit-form h2,
.formkit-form .formkit-header h1,
.formkit-form .formkit-header h2,
[data-uid="02bc1b3326"] h1,
[data-uid="02bc1b3326"] h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
}

.formkit-form p,
.formkit-form .formkit-subheader,
.formkit-form .formkit-subheader p,
[data-uid="02bc1b3326"] p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.75rem !important;
}

.formkit-form .formkit-fields,
[data-uid="02bc1b3326"] .formkit-fields {
    margin: 15px 0 !important;
}

.formkit-form input[type="email"],
.formkit-form input[type="text"],
[data-uid="02bc1b3326"] input {
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
    height: auto !important;
}

.formkit-form button,
.formkit-form [data-element="submit"],
[data-uid="02bc1b3326"] button {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    height: auto !important;
}

.formkit-form .formkit-guarantee,
[data-uid="02bc1b3326"] .formkit-guarantee {
    font-size: 0.8rem !important;
    margin-top: 10px !important;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
    clear: both;
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 1;
}

.footer-section a:hover {
    color: #e2e8f0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 41, 59, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(30, 41, 59, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #ffffff;
    width: 100%;
    clear: both;
}

.footer-bottom p {
    color: #ffffff;
    margin: 0.75rem auto;
    line-height: 1.6;
    max-width: 100%;
}

.footer-bottom p:first-child {
    margin-top: 0;
}

.footer-bottom .trademark-notice {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 1rem auto;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card[data-category] {
    transition: all 0.3s ease;
}

.tool-card.hidden {
    display: none;
}

.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #1e293b;
    background: transparent;
    color: #1e293b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-indigo);
    color: white;
    border-color: var(--accent-indigo);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--accent-indigo) 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.ai-tools-header {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.9) 100%), url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?w=1920&h=600&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #1e293b;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Product Cards */
.product-image {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.1);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 2px;
}

.coupon-code {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin: 1rem 0;
    text-align: center;
}

.coupon-code strong {
    color: #fbbf24;
    font-weight: 700;
}

.tool-features {
    margin-bottom: 1.5rem;
}

/* Blog Styles */

/* Creator Finds – Deal cards */
.deal-section { padding: 60px 0; }
.deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.deal-card {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    position: relative;
}
.deal-badge {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent-pink);
    color: #fff;
}
.deal-badge.budget { background: #059669; }
.deal-badge.creator { background: #0ea5e9; }
.deal-title { margin: 0 0 .25rem 0; color: #0f172a; font-size: 1.1rem; }
.deal-meta { margin: 0 0 .5rem 0; color: #64748b; font-size: 0.95rem; }
.deal-pros { margin: .5rem 0 .75rem 1.1rem; color: #475569; }
.deal-pros li { margin-bottom: .25rem; }
.deal-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.deal-price { font-weight: 700; color: #0f172a; }
.deal-cta { white-space: nowrap; }

@media (max-width: 768px) {
  .deal-footer { flex-direction: column; align-items: flex-start; }
}
.blog-image {
    font-size: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    margin-bottom: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-image-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.affiliate-disclosure {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-story h2 {
    color: #1e293b;
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

.about-story p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-story ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.about-story ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.1);
}

.founder-profile {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.founder-avatar {
    font-size: 3rem;
    min-width: 100px;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.15);
}

.founder-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: #1e293b;
}

.commitment-list {
    margin: 2rem 0;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.commitment-icon {
    font-size: 1.5rem;
    min-width: 40px;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(30, 41, 59, 0.1);
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem;
    background: #1e293b;
    border-radius: 20px;
    color: white;
    position: relative;
    z-index: 10;
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-section h2 {
    color: white;
    opacity: 1;
}

.cta-section p {
    color: white;
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    opacity: 1;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-section {
    margin-top: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 60%, #eef2ff 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-section-header h2 {
    margin: 0.5rem 0;
    font-size: 2rem;
    color: #0f172a;
}

.contact-section-header p {
    margin-bottom: 1.5rem;
    color: #475569;
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-pill {
    background: #0f172a;
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    flex: 1;
    min-width: 160px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
}

.highlight-pill span {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-pill p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* Contact section grid: ensure sensible min widths */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: start;
}



.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form-row label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.form-row input,
.form-row select,
.form-row textarea {
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-row button {
    border: none;
    border-radius: 12px;
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.contact-side-card {
    width: 100%;
    background: #0f172a;
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-side-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(99,102,241,0.4), transparent 55%);
    opacity: 0.7;
}

.contact-side-card h3 {
    margin-top: 0;
}

.contact-side-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.contact-side-card li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-side-card i {
    color: #38bdf8;
    margin-top: 0.2rem;
}

.contact-side-note {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 15px;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-icon {
    font-size: 2rem;
    min-width: 60px;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.1);
}

.social-link {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    text-decoration: none;
}

.response-times {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.response-times ul {
    list-style: none;
    padding: 0;
}

.response-times ul li {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

/* Gumroad Home Box */
.gumroad-home-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gumroad-home-box {
    max-width: 450px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.4);
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.gumroad-pulse {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.gumroad-content {
    position: relative;
    z-index: 2;
}

.gumroad-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.gumroad-home-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gumroad-home-box p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.gumroad-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #FFD700; }
    to { text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700; }
}

.gumroad-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    animation: buttonPulse 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gumroad-btn:hover {
    background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
    transform: scale(1.1) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
}

.gumroad-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gumroad-sparkles span {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 4s ease-in-out infinite;
}

.gumroad-sparkles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.gumroad-sparkles span:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.gumroad-sparkles span:nth-child(3) {
    top: 40%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Gumroad Section */
.gumroad-section {
    background: linear-gradient(135deg, #1E1E1E 0%, #5E3EF9 100%);
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.gumroad-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gumroad-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gumroad-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.product-mockup {
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.buy-now-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    margin-top: 1rem;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .sticky-cta-text {
        font-size: 1rem;
    }
    
    .sticky-cta-btn {
        width: 100%;
    }
    
    .scarcity-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timer-block {
        min-width: 60px;
        padding: 0.75rem 1rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 5px;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-capture {
        padding: 1.25rem;
    }

    .capture-form {
        flex-direction: column;
    }

    .capture-form button {
        width: 100%;
    }

    .product-hero {
        padding: 100px 0 60px;
    }

    .product-hero-copy h1 {
        font-size: 2rem;
    }

    .product-cta-group {
        flex-direction: column;
    }

    .product-hero-card {
        width: 100%;
    }

    .hero-highlights,
    .landing-metrics,
    .playbook-grid,
    .keyword-grid,
    .spotlight-grid,
    .growth-card,
    .breakout-grid,
    .contact-grid,
    /* Contact section grid: ensure sensible min widths */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: start;
}



    .contact-highlights {
        flex-direction: column;
    }
    
    .landing-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .landing-hero .landing-hero-content {
        text-align: center;
    }
    
    .intent-intro-card,
    .breakout-card,
    .growth-card {
        padding: 1.75rem;
    }
    
    .lead-box {
        text-align: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .newsletter .formkit-fields {
        flex-direction: column !important;
    }
    
    .newsletter [data-element="submit"],
    .newsletter .formkit-submit {
        width: 100%;
    }
    
    .tools-carousel, .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tool-card {
        margin: 0 1rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .filters {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin: 0 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .founder-profile {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .founder-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .gumroad-container {
        padding: 30px 20px;
    }
    
    .gumroad-title {
        font-size: 2rem;
    }
    
    .gumroad-description {
        font-size: 1rem;
    }
    
    .product-mockup {
        width: 150px;
        height: 200px;
        font-size: 2rem;
    }
    
    .buy-now-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .gumroad-home-box {
        max-width: 300px;
        padding: 25px;
    }
    
    .gumroad-icon {
        font-size: 2.5rem;
    }
    
    .gumroad-home-box h3 {
        font-size: 1.3rem;
    }
    
    .gumroad-price {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .newsletter {
        padding: 40px 0;
    }
    
    .newsletter h2 {
        font-size: 1.5rem;
    }
    
    .newsletter p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}



/* Pink Accent Theme */
:root {
    --accent-pink: #ec4899; /* pink-500 */
    --accent-pink-600: #db2777;
    --accent-pink-200: #fbcfe8;
}

/* Eyebrow labels and small accents */
.spotlight-eyebrow,
.capture-eyebrow {
    color: var(--accent-pink) !important;
}

/* Primary buttons — subtle pink-to-violet blend */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-pink), #8b5cf6);
    border: none;
}
.btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

/* Text links that act as CTAs */
a.text-link { color: var(--accent-pink); }
a.text-link:hover { text-decoration: underline; }

/* Contact section subtle pink styling */
.contact-section {
    border: 1px solid rgba(236, 72, 153, 0.15);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.08), 0 10px 25px rgba(15,23,42,0.06);
}
.contact-side-card i { color: var(--accent-pink); }
.contact-side-card::after {
    background: radial-gradient(circle at top, rgba(236,72,153,0.45), transparent 55%);
}

/* Selection color for brand feel */
::selection { background: var(--accent-pink-200); color: #0f172a; }
/* Pink accents: nav, buttons, inputs, tags */
.nav-menu a:hover, .nav-menu a:focus { color: var(--accent-pink); }

.btn-secondary {
    color: var(--accent-pink) !important;
    border-color: var(--accent-pink) !important;
    background: transparent;
}
.btn-secondary:hover {
    background: var(--accent-pink);
    color: #fff !important;
    border-color: var(--accent-pink-600);
}

.form-group input:focus, .form-group textarea:focus,
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    border-color: var(--accent-pink) !important;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15) !important;
}

.feature-tag {
    background: var(--accent-pink-200) !important;
    color: var(--accent-pink-600) !important;
}

.keyword-label { color: var(--accent-pink) !important; }
/* Pink extension: nav underline + hero overlays */
/* Underline animation on nav links using pink accent */
.nav-menu a { position: relative; }
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.25s ease;
}
.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

/* Add a subtle pink-tinted overlay to hero sections */
.pink-overlay { position: relative; }
.pink-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
      radial-gradient(1200px 600px at 85% 0%, rgba(236, 72, 153, 0.12), transparent 60%),
      linear-gradient(180deg, rgba(236, 72, 153, 0.08), transparent 35%);
}
.landing-hero .landing-hero-content, .product-hero-grid, .hero-content {
    position: relative;
    z-index: 2;
}
/* Creator Finds Tabs */
.creator-tabs {
  position: sticky;
  top: 64px;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid rgba(148,163,184,0.25);
}
.creator-tabs .container {
  display: flex;
  overflow-x: auto;
  gap: .5rem;
  padding: .75rem 20px;
}
.creator-tab {
  flex: 0 0 auto;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.35);
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  background: #fff;
}
.creator-tab:hover { border-color: var(--accent-pink); color: var(--accent-pink); }
.creator-tab.active { background: var(--accent-pink); color: #fff; border-color: var(--accent-pink); }

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-purple) 100%);
    padding: 1rem 2rem;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.sticky-cta-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.sticky-cta-text span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.sticky-cta-btn {
    background: white;
    color: var(--accent-indigo);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.sticky-cta-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sticky-cta-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Home: Ring light products (reuse ring-lights layout) */
.products-section {
    padding: 80px 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 760px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-badge {
    background: #1e293b;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.product-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.3rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.amazon-btn {
    background: #ff9500;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.amazon-btn:hover {
    background: #e6850e;
    transform: translateY(-2px);
}
/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-indigo);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Social Proof Counter */
.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
}

.social-proof-avatars {
    display: flex;
    margin-left: -8px;
}

.social-proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    margin-left: -8px;
}

.social-proof-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.social-proof-text span {
    color: var(--accent-indigo);
    font-weight: 700;
}

/* Conversion Optimized Sections */
.conversion-section {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    padding: 3rem 2rem;
    border-radius: 30px;
    margin: 2rem 0;
    border: 1px solid var(--accent-indigo);
    position: relative;
}

.conversion-header {
    text-align: center;
    margin-bottom: 2rem;
}

.conversion-header h2 {
    color: var(--accent-indigo);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.conversion-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Black Friday Styles */
.black-friday-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #6366F1 100%);
    position: relative;
    overflow: hidden;
}

.black-friday-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 215, 0, 0.03) 10px,
        rgba(255, 215, 0, 0.03) 20px
    );
    pointer-events: none;
}

.black-friday-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 800;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.price-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    border: 2px solid #FFD700;
}

.old-price {
    display: block;
    color: #999;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.new-price {
    display: block;
    color: #FFD700;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.savings {
    display: inline-block;
    background: #FF0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.stock-warning {
    color: #FFD700;
    font-weight: 700;
    margin-top: 1rem;
    font-size: 1.1rem;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.spec-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.spec-item i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.spec-item strong {
    display: block;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.spec-item span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.countdown-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    border: 2px solid #FF0000;
}

.countdown-section h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-black-friday {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 800;
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    animation: pulse-btn 2s ease-in-out infinite;
}

.btn-black-friday:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
}

@keyframes pulse-btn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.btn-mega {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
}

.black-friday-features {
    background: #000;
    color: white;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.black-friday-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: white;
    padding: 80px 0;
}

.price-comparison {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.price-col {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #333;
}

.price-col.highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    transform: scale(1.1);
}

.price-col .label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-col .price {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin: 0.5rem 0;
}

.price-col .price.old {
    text-decoration: line-through;
    color: #666;
}

.price-col .price.new {
    color: #000;
}

.price-col .badge {
    display: inline-block;
    background: #FF0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 0.5rem;
}

.guarantee {
    color: #4ade80;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.black-friday-sticky {
    background: linear-gradient(135deg, #000 0%, #FFD700 100%);
}

.black-friday-sticky .sticky-cta-btn {
    background: #FFD700;
    color: #000;
    font-weight: 800;
}

/* Scarcity Timer */
.scarcity-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.timer-block {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-align: center;
    min-width: 100px;
    border: 2px solid #FFA500;
}

.timer-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    display: block;
}

.timer-label {
    font-size: 0.85rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

