/* ============================================================
   AffixxMedia Landing Page — Section Styles
   ============================================================ */



/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(3rem, 6vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 8rem);
    isolation: isolate;
}

/* Background blobs + grid */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
.hero-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
}
.hero-bg .blob-coral {
    width: 480px; height: 480px;
    background: radial-gradient(circle, var(--color-coral-400), transparent 60%);
    top: -120px; right: -120px;
}
.hero-bg .blob-navy {
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--color-navy-500), transparent 60%);
    bottom: -160px; left: -160px;
    opacity: 0.32;
}
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,26,62,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,26,62,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
}

/* Layout */
.hero-container {
    display: grid;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-container { grid-template-columns: 1.05fr 0.95fr; }
}

/* Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-6);
}
.hero-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(232,74,111,0.2);
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,74,111,0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(232,74,111,0); }
}

.hero-headline {
    font-size: clamp(2.75rem, 6vw, 5rem);
    margin-bottom: var(--space-5);
}
.hero-headline .hl {
    background: linear-gradient(120deg, var(--color-coral-500), var(--color-coral-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-headline .hl-num {
    position: relative;
    display: inline-block;
}
.hero-headline .hl-num::after {
    content: "";
    position: absolute;
    left: -4%; right: -4%;
    bottom: 6%;
    height: 14px;
    background: var(--color-coral-100);
    z-index: -1;
    border-radius: var(--radius-sm);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, var(--text-lg));
    color: var(--text-body);
    margin-bottom: var(--space-8);
    max-width: 560px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}
.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--primary);
}
.hero-points li svg {
    width: 16px; height: 16px;
    color: var(--accent);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
}
.hero-trust p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}
.hero-trust-avatars {
    display: flex;
}
.hero-trust-avatars span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    margin-left: -8px;
    box-shadow: var(--shadow-xs);
}
.hero-trust-avatars span:nth-child(1) { background: linear-gradient(135deg, #FCE8EE, #EE6B89); margin-left: 0; }
.hero-trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #545489, #1A1A3E); }
.hero-trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #F492A8, #D63A5F); }
.hero-trust-avatars span:nth-child(4) { background: linear-gradient(135deg, #3A3A6B, #252550); }

/* Hero Visual — floating cards */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
}
.floating-card {
    position: absolute;
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-width: 240px;
    animation: float-gentle 6s ease-in-out infinite;
}
.floating-card[data-float] { will-change: transform; }
.fc-1 {
    top: 4%;
    left: 0;
    animation-delay: -0.5s;
}
.fc-2 {
    top: 38%;
    right: 0;
    width: 280px;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    animation-delay: -2s;
}
.fc-3 {
    bottom: 4%;
    left: 8%;
    animation-delay: -3.5s;
}
@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.fc-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.fc-icon svg { width: 22px; height: 22px; }
.fc-icon-coral { background: var(--color-coral-100); color: var(--accent); }
.fc-icon-navy { background: var(--color-navy-800); color: var(--color-white); }

.fc-2 .fc-icon { align-self: flex-start; }
.fc-body { display: flex; flex-direction: column; gap: 2px; }
.fc-label {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.fc-title {
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    color: var(--primary);
    font-size: var(--text-base);
}
.fc-progress {
    height: 6px;
    background: var(--bg-alt);
    border-radius: var(--radius-full);
    overflow: hidden;
}
.fc-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--color-coral-400), var(--accent));
    border-radius: inherit;
}
.fc-pill {
    display: inline-flex;
    align-self: flex-end;
    padding: 4px 10px;
    background: var(--color-success-bg);
    color: #047857;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
}

.hero-stat-card {
    position: absolute;
    bottom: 28%;
    right: 4%;
    background: var(--color-navy-800);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: float-gentle 6s ease-in-out infinite;
    animation-delay: -1.2s;
}
.hero-stat-card strong {
    font-family: var(--font-display);
    font-weight: var(--weight-extrabold);
    font-size: var(--text-3xl);
    color: var(--color-coral-400);
    line-height: 1;
}
.hero-stat-card span {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.75);
    margin-top: 2px;
    line-height: 1.3;
}

@media (max-width: 1023px) {
    .hero-visual { display: none; }
}

/* ============================================================
   SECTION HEADER (reusable)
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-16);
}
.section-header .eyebrow { margin-bottom: var(--space-4); }
.section-header h2 { margin-bottom: var(--space-4); }
.section-lead {
    font-size: var(--text-lg);
    color: var(--text-body);
    max-width: 580px;
    margin-inline: auto;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid {
    display: grid;
    gap: var(--space-6);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.problem-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
}
.problem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--color-coral-100), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.problem-card:hover::before { opacity: 1; }
.problem-num {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--weight-extrabold);
    color: var(--color-coral-100);
    margin-bottom: var(--space-3);
}
.problem-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}
.problem-card p { color: var(--text-body); }

/* ============================================================
   SOLUTION
   ============================================================ */
.solution-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (min-width: 1024px) {
    .solution-grid { grid-template-columns: 1fr 1fr; }
}
.solution-content .section-lead { margin-bottom: var(--space-8); margin-inline: 0; }

.solution-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
}
.flow-step {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}
.flow-step-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232,74,111,0.1);
}
.flow-step-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-md);
    background: var(--bg-alt);
    color: var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.flow-step-active .flow-step-icon {
    background: var(--color-coral-100);
    color: var(--accent);
}
.flow-step-icon svg { width: 18px; height: 18px; }
.flow-step-label {
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    font-size: var(--text-sm);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}
.flow-step-text {
    font-size: var(--text-xs);
    color: var(--text-muted);
}
.flow-arrow {
    color: var(--text-muted);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
}

/* Solution mockup */
.solution-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
}
.solution-mockup {
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.mockup-bar {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: var(--space-3) var(--space-4);
    display: flex;
    gap: 6px;
}
.mockup-bar span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-gray-300);
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-body {
    flex: 1;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.mockup-line {
    height: 10px;
    background: linear-gradient(90deg, var(--color-gray-100), var(--color-gray-200));
    border-radius: var(--radius-sm);
}
.mockup-line.w-40 { width: 40%; }
.mockup-line.w-50 { width: 50%; }
.mockup-line.w-60 { width: 60%; background: linear-gradient(90deg, var(--color-coral-100), var(--color-coral-50)); }
.mockup-line.w-80 { width: 80%; }
.mockup-block {
    height: 80px;
    background: linear-gradient(135deg, var(--color-coral-50), var(--color-gray-100));
    border-radius: var(--radius-md);
    margin-block: var(--space-2);
}
.mockup-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-2);
    margin-top: auto;
}
.mockup-card {
    height: 60px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
}
.solution-tag {
    position: absolute;
    bottom: -16px;
    right: -8px;
    background: var(--color-navy-800);
    color: var(--color-white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
}
.solution-tag svg { width: 16px; height: 16px; color: var(--color-coral-400); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
    display: grid;
    gap: var(--space-5);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.benefit-card {
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.benefit-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--color-coral-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-coral-50);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: var(--space-4);
    transition: all var(--transition-base);
}
.benefit-card:hover .benefit-icon {
    background: var(--accent);
    color: var(--color-white);
    transform: scale(1.05);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}
.benefit-card p {
    color: var(--text-body);
    font-size: var(--text-sm);
}

/* ============================================================
   TRUST
   ============================================================ */
.trust-grid {
    display: grid;
    gap: var(--space-8);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.trust-item { text-align: center; padding: var(--space-4); }
.trust-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-xl);
    background: var(--color-white);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin: 0 auto var(--space-5);
    box-shadow: var(--shadow-md);
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-item h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

/* ============================================================
   URGENCY
   ============================================================ */
.section-urgency {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--color-white);
}
.urgency-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.urgency-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.urgency-bg .blob-coral {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent), transparent 65%);
    opacity: 0.4;
    top: -100px; left: -100px;
}
.urgency-bg .blob-navy-dark {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--color-navy-600), transparent 65%);
    opacity: 0.5;
    bottom: -200px; right: -150px;
}

.urgency-inner {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}
@media (min-width: 1024px) {
    .urgency-inner { grid-template-columns: 1.4fr 1fr; }
}
.urgency-content h2 {
    color: var(--color-white);
    margin: var(--space-4) 0 var(--space-5);
}
.urgency-num {
    background: linear-gradient(120deg, var(--color-coral-400), var(--color-coral-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.urgency-content p {
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-8);
    max-width: 580px;
}

/* Seats counter visual */
.urgency-counter {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.urgency-seats {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}
.urgency-seats-num {
    font-family: var(--font-display);
    font-weight: var(--weight-extrabold);
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    background: linear-gradient(180deg, var(--color-white), var(--color-coral-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.urgency-seats-label {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.65);
    font-weight: var(--weight-medium);
}
.urgency-dots {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: var(--space-2);
}
.urgency-dots .dot {
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid var(--accent);
}

/* ============================================================
   OUTCOME
   ============================================================ */
.outcome-grid {
    display: grid;
    gap: var(--space-6);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.outcome-card {
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: left;
    position: relative;
    transition: all var(--transition-base);
}
.outcome-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.outcome-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--weight-extrabold);
    line-height: 1;
    background: linear-gradient(180deg, var(--color-coral-400), var(--color-coral-100));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-4);
}
.outcome-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.faq-item {
    background: var(--color-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.faq-item[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.faq-item summary {
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    font-family: var(--font-display);
    font-weight: var(--weight-semibold);
    color: var(--primary);
    list-style: none;
    transition: all var(--transition-base);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-alt); }
.faq-item[open] summary { background: var(--bg-alt); }
.faq-chevron {
    width: 20px; height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}
.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-body {
    padding: 0 var(--space-6) var(--space-6);
}
.faq-body p {
    color: var(--text-body);
    line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-final-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, var(--color-white), var(--color-coral-50));
}
.final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.final-cta-bg .blob {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-coral-400), transparent 65%);
    filter: blur(80px);
    opacity: 0.3;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
}
.final-cta-inner {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}
.final-cta-inner h2 {
    margin: var(--space-4) 0 var(--space-5);
}
.final-cta-inner p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}
.final-cta-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-6) !important;
    font-weight: var(--weight-medium);
}


