/* ========================================
COVERCRAFT AI - DESIGN SYSTEM TOKENS
======================================== */
:root {
/* Colors */
--navy: #102A5C;
--navy-light: #1A356B;
--teal: #22B8C9;
--teal-hover: #1DA3B3;
--cyan: #2EC7D3;
--white: #FFFFFF;
--gray-50: #F9FAFB;
--gray-100: #F3F4F6;
--gray-200: #E5E7EB;
--gray-500: #6B7280;
--gray-600: #4B5563;

/* Typography */
--font: 'Plus Jakarta Sans', sans-serif;

/* Spacing & Radius */
--radius-sm: 6px;
--radius-md: 12px;
--radius-lg: 16px;
--radius-full: 999px;

/* Shadows */
--shadow-sm: 0 1px 2px rgba(16, 42, 92, 0.05);
--shadow-md: 0 4px 6px -1px rgba(16, 42, 92, 0.05), 0 2px 4px -1px rgba(16, 42, 92, 0.03);
--shadow-lg: 0 10px 15px -3px rgba(16, 42, 92, 0.08), 0 4px 6px -2px rgba(16, 42, 92, 0.04);
--shadow-xl: 0 20px 25px -5px rgba(16, 42, 92, 0.1), 0 10px 10px -5px rgba(16, 42, 92, 0.04);
}

/* ========================================
RESET & BASE
======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
overflow-x: hidden;
max-width: 100vw;
}

body {
font-family: var(--font);
color: var(--navy);
background: var(--white);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

/* ========================================
HERO SECTION
======================================== */
.hero {
padding: 80px 0 100px;
overflow: hidden;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}

/* --- Visual / Mockup --- */
.hero-visual {
position: relative;
}

.app-mockup {
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-xl);
overflow: hidden;
transition: transform 0.4s ease;
max-width: 100%;
}

.app-mockup:hover {
transform: translateY(-4px);
}

.mockup-header {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
border-bottom: 1px solid var(--gray-100);
background: var(--gray-50);
}

.mockup-dots {
display: flex;
gap: 6px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.mockup-title {
font-size: 13px;
font-weight: 600;
color: var(--gray-500);
margin-left: 8px;
}

.mockup-body {
display: flex;
height: 360px;
}

.mockup-sidebar {
width: 180px;
background: var(--gray-50);
border-right: 1px solid var(--gray-100);
padding: 20px 16px;
display: flex;
flex-direction: column;
gap: 16px;
flex-shrink: 0;
}

.sidebar-item {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
border-radius: var(--radius-sm);
cursor: default;
}

.sidebar-item.active {
background: var(--white);
box-shadow: var(--shadow-sm);
}

.sidebar-icon {
width: 16px;
height: 16px;
background: var(--gray-200);
border-radius: 4px;
flex-shrink: 0;
}

.sidebar-item.active .sidebar-icon {
background: var(--teal);
}

.sidebar-text { height: 8px; background: var(--gray-200); border-radius: 4px; flex-shrink: 0; }
.sidebar-text.short { width: 60px; }
.sidebar-text.medium { width: 80px; }
.sidebar-text.long { width: 100px; }

.mockup-content {
flex: 1;
padding: 24px;
display: flex;
flex-direction: column;
gap: 24px;
min-width: 0;
}

.content-title-line { width: 120px; height: 14px; background: var(--navy); border-radius: 4px; margin-bottom: 8px; }
.content-subtitle-line { width: 180px; height: 8px; background: var(--gray-200); border-radius: 4px; }

.ecover-card {
flex: 1;
background: var(--gray-50);
border: 1px solid var(--gray-100);
border-radius: var(--radius-md);
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
min-width: 0;
}

.ecover-image {
width: 140px;
height: 180px;
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-weight: 700;
font-size: 14px;
letter-spacing: 1px;
box-shadow: var(--shadow-md);
flex-shrink: 0;
}

.ecover-actions {
display: flex;
gap: 8px;
}

.action-btn { height: 32px; border-radius: var(--radius-sm); }
.action-btn.primary { width: 100px; background: var(--teal); }
.action-btn.secondary { width: 60px; background: var(--gray-200); }

/* --- Content --- */
.hero-content {
display: flex;
flex-direction: column;
gap: 24px;
}

.badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 16px;
background: rgba(34, 184, 201, 0.1);
color: var(--teal);
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;
border-radius: var(--radius-full);
width: fit-content;
}

.badge-dot {
width: 6px;
height: 6px;
background: var(--teal);
border-radius: 50%;
}

.headline {
font-size: 48px;
font-weight: 800;
line-height: 1.15;
letter-spacing: -0.02em;
color: var(--navy);
}

.subheadline {
font-size: 18px;
color: var(--gray-600);
line-height: 1.7;
max-width: 520px;
}

.benefits {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}

.benefits li {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
font-weight: 500;
color: var(--navy-light);
}

.benefits li svg {
width: 20px;
height: 20px;
color: var(--teal);
flex-shrink: 0;
}

.cta-group {
margin-top: 8px;
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--teal);
color: var(--white);
border: none;
padding: 16px 28px;
font-size: 16px;
font-weight: 700;
font-family: var(--font);
border-radius: var(--radius-md);
cursor: pointer;
transition: all 0.2s ease;
box-shadow: var(--shadow-md);
}

.btn-primary:hover {
background: var(--teal-hover);
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

.btn-primary svg {
transition: transform 0.2s ease;
}

.btn-primary:hover svg {
transform: translateX(4px);
}

.trust-text {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--gray-500);
font-weight: 500;
}

.trust-text svg {
color: var(--teal);
}

/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 992px) {
.hero-grid {
grid-template-columns: 1fr;
gap: 48px;
text-align: center;
}
.hero-visual { order: -1; }
.badge, .trust-text { margin: 0 auto; }
.subheadline { margin: 0 auto; }
.benefits { align-items: center; text-align: center; }
.benefits li { justify-content: center; }
.headline { font-size: 40px; }
}

@media (max-width: 640px) {
.hero { padding: 48px 0 64px; }
.container { padding: 0 16px; }
.headline { font-size: 32px; }
.subheadline { font-size: 16px; }
.btn-primary { width: 100%; justify-content: center; }
.mockup-body { height: auto; min-height: 280px; }
.mockup-sidebar { width: 90px; padding: 16px 10px; gap: 12px; }
.sidebar-icon { width: 12px; height: 12px; }
.sidebar-item { padding: 6px 8px; gap: 6px; }
.sidebar-text.short { width: 40px; }
.sidebar-text.medium { width: 50px; }
.sidebar-text.long { width: 60px; }
.benefits li svg { width: 18px; height: 18px; }
.trust-text { font-size: 12px; text-align: center; flex-wrap: wrap; }
.section-header { padding: 0 8px; }
.section-title { font-size: 24px; line-height: 1.3; }
.section-subtitle { font-size: 15px; }
.app-mockup { max-width: 100%; }
.ecover-image { width: 120px; height: 160px; font-size: 12px; }
.action-btn { height: 28px; }
.action-btn.primary { width: 80px; }
.action-btn.secondary { width: 50px; }
.mockup-content { padding: 16px; }
}

@media (max-width: 380px) {
.headline { font-size: 28px; }
.mockup-sidebar { display: none; }
.mockup-content { padding: 16px; }
}

/* ========================================
PROBLEM SECTION (SECTION 2)
======================================== */
.problem {
padding: 80px 0;
background: var(--gray-50);
}

.section-header {
text-align: center;
max-width: 640px;
margin: 0 auto 48px;
}

.section-title {
font-size: 32px;
font-weight: 800;
color: var(--navy);
line-height: 1.2;
letter-spacing: -0.02em;
margin-bottom: 16px;
}

.section-subtitle {
font-size: 18px;
color: var(--gray-600);
line-height: 1.6;
}

.problem-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}

.problem-card {
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: var(--radius-md);
padding: 24px;
transition: all 0.3s ease;
text-align: center;
}

.problem-card:hover {
border-color: var(--teal);
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}

.problem-icon {
width: 48px;
height: 48px;
background: rgba(34, 184, 201, 0.1);
color: var(--teal);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.problem-title {
font-size: 18px;
font-weight: 700;
color: var(--navy);
margin-bottom: 12px;
line-height: 1.3;
}

.problem-desc {
font-size: 15px;
color: var(--gray-600);
line-height: 1.6;
margin: 0;
}

@media (max-width: 992px) {
.problem-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 640px) {
.problem { padding: 64px 0; }
.section-title { font-size: 26px; }
.section-subtitle { font-size: 16px; }
.problem-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.problem-card { padding: 20px; }
}

/* ========================================
STORY SECTION (SECTION 3)
======================================== */
.story {
padding: 80px 0;
background: var(--white);
}

.story-grid {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 64px;
align-items: center;
}

.story-visual {
display: flex;
justify-content: center;
}

.founder-card {
position: relative;
width: 100%;
max-width: 380px;
}

.founder-photo {
width: 220px;
height: 220px;
aspect-ratio: 1 / 1;
background: var(--gray-100);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--gray-500);
overflow: hidden;
border: 4px solid var(--white);
box-shadow: var(--shadow-md);
margin: 0 auto 32px;
}

.founder-photo svg {
opacity: 0.5;
}

.founder-badge {
position: absolute;
bottom: -16px;
left: 50%;
transform: translateX(-50%);
background: var(--white);
padding: 12px 20px;
border-radius: var(--radius-full);
box-shadow: var(--shadow-lg);
border: 1px solid var(--gray-100);
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 600;
color: var(--navy);
white-space: nowrap;
}

.story-content {
display: flex;
flex-direction: column;
}

.story-text {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 32px;
}

.story-text p {
font-size: 16px;
color: var(--gray-600);
line-height: 1.8;
margin: 0;
}

.story-text strong {
color: var(--navy);
font-weight: 700;
}

.founder-signature {
display: flex;
flex-direction: column;
gap: 4px;
}

.signature-name {
font-size: 18px;
font-weight: 700;
color: var(--navy);
}

.signature-role {
font-size: 14px;
color: var(--gray-500);
font-weight: 500;
}

@media (max-width: 992px) {
.story-grid {
grid-template-columns: 1fr;
gap: 48px;
text-align: center;
}
.story-visual { order: -1; }
.section-title { text-align: center !important; }
.founder-signature { align-items: center; }
}

@media (max-width: 640px) {
.story { padding: 64px 0; }
.founder-card { max-width: 300px; }
.story-text p { font-size: 15px; }
}

/* ========================================
INTRO SECTION (SECTION 4)
======================================== */
.intro {
padding: 80px 0;
background: var(--gray-50);
}

.intro-grid {
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 64px;
align-items: center;
}

.intro-content {
display: flex;
flex-direction: column;
}

.feature-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 24px;
}

.feature-list li {
display: flex;
gap: 16px;
align-items: flex-start;
}

.feature-icon {
width: 40px;
height: 40px;
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
color: var(--teal);
flex-shrink: 0;
}

.feature-text {
display: flex;
flex-direction: column;
gap: 4px;
}

.feature-text strong {
font-size: 16px;
font-weight: 700;
color: var(--navy);
}

.feature-text span {
font-size: 15px;
color: var(--gray-600);
line-height: 1.6;
}

.intro-visual {
display: flex;
justify-content: center;
}

.workflow-card {
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
width: 100%;
max-width: 420px;
overflow: hidden;
}

.workflow-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 20px;
border-bottom: 1px solid var(--gray-100);
background: var(--gray-50);
}

.workflow-title {
font-size: 13px;
font-weight: 600;
color: var(--navy);
}

.workflow-status {
font-size: 11px;
font-weight: 700;
color: var(--teal);
background: rgba(34, 184, 201, 0.1);
padding: 4px 10px;
border-radius: var(--radius-full);
}

.workflow-steps {
padding: 24px 20px;
display: flex;
flex-direction: column;
}

.step {
display: flex;
gap: 16px;
align-items: center;
}

.step-number {
font-size: 12px;
font-weight: 700;
color: var(--gray-500);
width: 24px;
text-align: center;
}

.step.active .step-number {
color: var(--teal);
}

.step-content {
flex: 1;
}

.step-title {
font-size: 14px;
font-weight: 600;
color: var(--navy);
margin-bottom: 8px;
}

.step-bar {
height: 6px;
background: var(--gray-100);
border-radius: var(--radius-full);
overflow: hidden;
}

.bar-fill {
height: 100%;
background: var(--gray-300);
border-radius: var(--radius-full);
transition: width 1s ease;
}

.step.active .bar-fill {
background: var(--teal);
}

.step-connector {
width: 2px;
height: 24px;
background: var(--gray-200);
margin-left: 11px;
}

.workflow-footer {
display: flex;
align-items: center;
gap: 10px;
padding: 16px 20px;
border-top: 1px solid var(--gray-100);
background: var(--gray-50);
font-size: 13px;
font-weight: 600;
color: var(--navy);
}

.footer-icon {
width: 20px;
height: 20px;
background: var(--teal);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.footer-icon svg {
width: 12px;
height: 12px;
}

@media (max-width: 992px) {
.intro-grid {
grid-template-columns: 1fr;
gap: 48px;
text-align: center;
}
.intro-content { order: -1; }
.badge, .section-title, .section-subtitle { text-align: center !important; margin-left: auto; margin-right: auto; }
.feature-list { align-items: center; }
.feature-list li { max-width: 500px; text-align: left; }
}

@media (max-width: 640px) {
.intro { padding: 64px 0; }
.feature-list li { flex-direction: column; align-items: center; text-align: center; }
.feature-text { align-items: center; text-align: center; }
}

/* ========================================
VIDEO DEMO SECTION (SECTION 5)
======================================== */
.video-demo {
padding: 80px 0;
background: var(--white);
}

.video-container {
max-width: 960px;
margin: 0 auto;
}

.video-wrapper {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-xl);
border: 1px solid var(--gray-200);
background: var(--navy);
}

.video-placeholder {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
cursor: pointer;
transition: background 0.3s ease;
}

.video-placeholder:hover {
background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
}

.play-button {
width: 80px;
height: 80px;
background: var(--teal);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
box-shadow: 0 10px 30px rgba(34, 184, 201, 0.4);
transition: all 0.3s ease;
margin-bottom: 16px;
}

.video-placeholder:hover .play-button {
transform: scale(1.1);
box-shadow: 0 15px 40px rgba(34, 184, 201, 0.6);
}

.play-button svg {
margin-left: 4px;
}

.video-label {
font-size: 14px;
font-weight: 600;
color: var(--white);
letter-spacing: 0.5px;
opacity: 0.8;
}

.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}

@media (max-width: 640px) {
.video-demo { padding: 64px 0; }
.play-button { width: 64px; height: 64px; }
.play-button svg { width: 24px; height: 24px; }
}

/* ========================================
WORKFLOW TIMELINE SECTION (SECTION 6)
======================================== */
.workflow {
padding: 80px 0;
background: var(--gray-50);
}

.timeline {
position: relative;
display: flex;
justify-content: space-between;
gap: 24px;
margin-top: 48px;
}

.timeline-line {
position: absolute;
top: 24px;
left: 24px;
right: 24px;
height: 2px;
background: var(--gray-200);
z-index: 1;
}

.timeline-step {
position: relative;
z-index: 2;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.step-marker {
width: 48px;
height: 48px;
background: var(--white);
border: 2px solid var(--gray-200);
color: var(--gray-500);
font-size: 14px;
font-weight: 700;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
transition: all 0.3s ease;
}

.timeline-step:hover .step-marker {
border-color: var(--teal);
color: var(--teal);
background: rgba(34, 184, 201, 0.05);
}

.step-content {
display: flex;
flex-direction: column;
gap: 8px;
}

.step-title {
font-size: 16px;
font-weight: 700;
color: var(--navy);
margin: 0;
}

.step-desc {
font-size: 14px;
color: var(--gray-600);
line-height: 1.6;
margin: 0;
}

@media (max-width: 992px) {
.timeline {
flex-direction: column;
gap: 32px;
margin-top: 40px;
padding-left: 24px;
}
.timeline-line {
top: 0;
bottom: 0;
left: 47px;
width: 2px;
height: auto;
right: auto;
}
.timeline-step {
flex-direction: row;
align-items: flex-start;
text-align: left;
gap: 24px;
}
.step-marker {
margin-bottom: 0;
flex-shrink: 0;
}
.step-content {
padding-top: 12px;
}
}

@media (max-width: 640px) {
.workflow { padding: 64px 0; }
.timeline-line { left: 23px; }
.step-title { font-size: 15px; }
.step-desc { font-size: 13px; }
}

/* ========================================
SHOWCASE GALLERY SECTION (SECTION 7)
======================================== */
.showcase {
padding: 80px 0;
background: var(--white);
}

.comparison-section {
margin-bottom: 64px;
}

.comparison-grid {
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 32px;
align-items: center;
max-width: 900px;
margin: 0 auto;
}

.comparison-card {
background: var(--white);
border: 2px solid var(--gray-200);
border-radius: var(--radius-lg);
overflow: hidden;
transition: all 0.3s ease;
position: relative; /* TAMBAHKAN BARIS INI */
}

.comparison-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}

.comparison-card.after {
border-color: var(--teal);
}

.card-badge {
position: absolute;
top: 16px;
left: 16px;
background: var(--gray-500);
color: var(--white);
padding: 6px 12px;
border-radius: var(--radius-full);
font-size: 12px;
font-weight: 700;
z-index: 2;
}

.comparison-card.after .card-badge {
background: var(--teal);
}

.card-image {
aspect-ratio: 4 / 3;
background: var(--gray-100);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}

.placeholder-before {
background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
}

.placeholder-after {
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.placeholder-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
color: var(--white);
text-align: center;
padding: 20px;
}

.placeholder-text {
font-size: 18px;
font-weight: 700;
}

.placeholder-sub {
font-size: 13px;
opacity: 0.8;
}

.card-label {
padding: 16px;
text-align: center;
font-size: 14px;
font-weight: 600;
color: var(--navy);
background: var(--gray-50);
}

.comparison-arrow {
display: flex;
align-items: center;
justify-content: center;
color: var(--teal);
}

.showcase-category {
margin-bottom: 64px;
}

.showcase-category:last-child {
margin-bottom: 0;
}

.category-header {
margin-bottom: 24px;
}

.category-title {
font-size: 24px;
font-weight: 800;
color: var(--navy);
margin-bottom: 8px;
letter-spacing: -0.02em;
}

.category-subtitle {
font-size: 15px;
color: var(--gray-600);
line-height: 1.6;
margin: 0;
}

.category-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}

.gallery-image {
aspect-ratio: 4 / 3;
background: var(--gray-100);
border-radius: var(--radius-md);
overflow: hidden;
border: 1px solid var(--gray-200);
transition: all 0.3s ease;
}

.gallery-image:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
border-color: var(--teal);
}

.gallery-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}

.gallery-image:hover img {
transform: scale(1.05);
}

@media (max-width: 992px) {
.category-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 640px) {
.showcase-category { margin-bottom: 48px; }
.category-title { font-size: 18px; }
.category-subtitle { font-size: 14px; }
.category-grid {
grid-template-columns: 1fr;
gap: 12px;
}
}

@media (max-width: 380px) {
.item-title { font-size: 15px; }
.item-desc { font-size: 13px; }
}

/* ========================================
BONUS SECTION (SECTION 8)
======================================== */
.bonus {
padding: 80px 0;
background: var(--gray-50);
}

.bonus-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
max-width: 1100px;
margin: 0 auto;
}

.bonus-card {
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: var(--radius-md);
overflow: hidden;
display: flex;
flex-direction: column;
transition: all 0.3s ease;
}

.bonus-card:hover {
border-color: var(--teal);
box-shadow: var(--shadow-md);
transform: translateY(-4px);
}

.bonus-image {
aspect-ratio: 16 / 9;
background: var(--gray-100);
position: relative;
overflow: hidden;
}

.bonus-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-image img {
transform: scale(1.05);
}

.bonus-content {
padding: 16px;
display: flex;
flex-direction: column;
gap: 6px;
flex-grow: 1;
}

.bonus-title {
font-size: 14px;
font-weight: 700;
color: var(--navy);
line-height: 1.4;
margin: 0;
}

.bonus-desc {
font-size: 13px;
color: var(--gray-600);
line-height: 1.5;
margin: 0;
}

@media (max-width: 992px) {
.bonus-grid {
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
}

@media (max-width: 640px) {
.bonus { padding: 64px 0; }
.bonus-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.bonus-title { font-size: 15px; }
.bonus-desc { font-size: 13px; }
.bonus-content { padding: 16px; }
.bonus-title { font-size: 14px; line-height: 1.5; }
.bonus-desc { font-size: 13px; line-height: 1.5; }
}

@media (max-width: 380px) {
.bonus-title { font-size: 14px; }
.bonus-desc { font-size: 12px; }
}

/* ========================================
REJECTION REMOVAL SECTION (SECTION 9)
======================================== */
.rejection {
padding: 80px 0;
background: var(--white);
}

.rejection-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
max-width: 900px;
margin: 0 auto;
}

.rejection-card {
background: var(--gray-50);
border: 1px solid var(--gray-200);
border-radius: var(--radius-md);
padding: 24px;
display: flex;
gap: 20px;
align-items: flex-start;
transition: all 0.3s ease;
}

.rejection-card:hover {
background: var(--white);
border-color: var(--teal);
box-shadow: var(--shadow-md);
transform: translateY(-2px);
}

.rejection-icon {
width: 36px;
height: 36px;
background: rgba(34, 184, 201, 0.1);
color: var(--teal);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.rejection-content {
display: flex;
flex-direction: column;
gap: 8px;
}

.rejection-title {
font-size: 16px;
font-weight: 700;
color: var(--navy);
line-height: 1.4;
margin: 0;
font-style: italic;
}

.rejection-desc {
font-size: 14px;
color: var(--gray-600);
line-height: 1.6;
margin: 0;
}

@media (max-width: 768px) {
.rejection-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.rejection-card { padding: 20px; }
}

@media (max-width: 640px) {
.rejection { padding: 64px 0; }
.rejection-title { font-size: 15px; }
.rejection-desc { font-size: 13px; }
.rejection-icon { width: 32px; height: 32px; }
.rejection-icon svg { width: 16px; height: 16px; }
}

/* ========================================
PRICING SECTION (SECTION 10)
======================================== */
.pricing {
padding: 80px 0;
background: var(--gray-50);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
max-width: 850px;
margin: 0 auto;
align-items: stretch;
}

.pricing-card {
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: var(--radius-lg);
padding: 32px;
display: flex;
flex-direction: column;
position: relative;
transition: all 0.3s ease;
}

.pricing-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-4px);
}

.pricing-card.featured {
border-color: var(--teal);
box-shadow: var(--shadow-md);
}

.popular-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--teal);
color: var(--white);
font-size: 11px;
font-weight: 700;
padding: 4px 16px;
border-radius: var(--radius-full);
letter-spacing: 1px;
}

.pricing-header {
margin-bottom: 24px;
}

.plan-name {
font-size: 20px;
font-weight: 700;
color: var(--navy);
margin-bottom: 8px;
}

.plan-desc {
font-size: 14px;
color: var(--gray-600);
line-height: 1.5;
margin: 0;
}

.pricing-price {
display: flex;
align-items: baseline;
gap: 4px;
margin-bottom: 32px;
padding-bottom: 24px;
border-bottom: 1px solid var(--gray-100);
}

.currency {
font-size: 16px;
font-weight: 600;
color: var(--navy);
}

.amount {
font-size: 40px;
font-weight: 800;
color: var(--navy);
letter-spacing: -1px;
}

.period {
font-size: 14px;
color: var(--gray-500);
font-weight: 500;
}

.pricing-features {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 32px;
flex-grow: 1;
}

.pricing-features li {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 14px;
color: var(--gray-600);
line-height: 1.5;
}

.pricing-features li svg {
color: var(--teal);
flex-shrink: 0;
margin-top: 2px;
}

.pricing-features li strong {
color: var(--navy);
font-weight: 700;
}

.btn-pricing {
width: 100%;
padding: 16px;
border-radius: var(--radius-md);
font-size: 16px;
font-weight: 700;
font-family: var(--font);
cursor: pointer;
transition: all 0.2s ease;
border: none;
text-align: center;
text-decoration: none;
display: block;
}

.btn-pricing.primary {
background: var(--teal);
color: var(--white);
}

.btn-pricing.primary:hover {
background: var(--teal-hover);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.btn-pricing.secondary {
background: var(--white);
color: var(--navy);
border: 1px solid var(--gray-200);
}

.btn-pricing.secondary:hover {
background: var(--gray-50);
border-color: var(--navy);
}

@media (max-width: 768px) {
.pricing-grid {
grid-template-columns: 1fr;
max-width: 100%;
}
.pricing-card { padding: 24px; }
.amount { font-size: 36px; }
}

@media (max-width: 640px) {
.pricing { padding: 64px 0; }
}

/* ========================================
LOSS AVERSION SECTION (SECTION 11)
======================================== */
.loss-aversion {
padding: 80px 0;
background: var(--navy);
}

.badge-light {
background: rgba(255, 255, 255, 0.1);
color: var(--white);
}

.badge-dot-light {
background: var(--teal);
}

.text-white { color: var(--white) !important; }
.text-gray-300 { color: #9CA3AF !important; }

.loss-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
max-width: 900px;
margin: 0 auto;
}

.loss-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius-md);
padding: 28px;
transition: all 0.3s ease;
}

.loss-card:hover {
background: rgba(255, 255, 255, 0.06);
border-color: var(--teal);
transform: translateY(-4px);
}

.loss-icon {
width: 48px;
height: 48px;
background: rgba(34, 184, 201, 0.15);
color: var(--teal);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.loss-title {
font-size: 18px;
font-weight: 700;
color: var(--white);
margin-bottom: 12px;
line-height: 1.4;
}

.loss-desc {
font-size: 15px;
color: #9CA3AF;
line-height: 1.6;
margin: 0;
}

@media (max-width: 768px) {
.loss-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.loss-card { padding: 24px; }
}

@media (max-width: 640px) {
.loss-aversion { padding: 64px 0; }
.loss-icon { width: 42px; height: 42px; }
.loss-card { padding: 20px; }
.loss-title { font-size: 16px; }
.loss-desc { font-size: 13px; }
}

/* ========================================
FAQ SECTION (SECTION 12)
======================================== */
.faq {
padding: 80px 0;
background: var(--white);
}

.faq-container {
max-width: 768px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 12px;
}

.faq-item {
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: var(--radius-md);
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item.active {
border-color: var(--teal);
box-shadow: var(--shadow-sm);
}

.faq-question {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 24px;
background: none;
border: none;
cursor: pointer;
text-align: left;
font-family: var(--font);
font-size: 16px;
font-weight: 600;
color: var(--navy);
gap: 16px;
transition: color 0.3s ease;
}

.faq-item.active .faq-question {
color: var(--teal);
}

.faq-icon {
flex-shrink: 0;
transition: transform 0.3s ease;
color: var(--gray-500);
}

.faq-item.active .faq-icon {
transform: rotate(90deg);
color: var(--teal);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
padding: 0 24px 24px;
margin: 0;
font-size: 15px;
color: var(--gray-600);
line-height: 1.7;
}

@media (max-width: 640px) {
.faq { padding: 64px 0; }
.faq-question {
padding: 16px 20px;
font-size: 14px;
gap: 12px;
}
.faq-icon { width: 18px; height: 18px; }
.faq-answer p {
padding: 0 20px 20px;
font-size: 14px;
}
}

/* ========================================
FINAL CTA SECTION (SECTION 13)
======================================== */
.final-cta {
padding: 100px 0;
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
position: relative;
overflow: hidden;
}

.final-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
radial-gradient(circle at 20% 50%, rgba(34, 184, 201, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(46, 199, 211, 0.08) 0%, transparent 50%);
pointer-events: none;
}

.final-cta-content {
max-width: 720px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 1;
}

.final-cta-title {
font-size: 40px;
font-weight: 800;
color: var(--white);
line-height: 1.2;
letter-spacing: -0.02em;
margin: 24px 0 20px;
}

.final-cta-subtitle {
font-size: 18px;
color: rgba(255, 255, 255, 0.8);
line-height: 1.7;
margin-bottom: 40px;
}

.final-benefits {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 48px;
text-align: left;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}

.final-benefits li {
display: flex;
align-items: center;
gap: 12px;
font-size: 16px;
color: var(--white);
font-weight: 500;
}

.final-benefits li svg {
color: var(--teal);
flex-shrink: 0;
}

.final-pricing {
margin-bottom: 40px;
}

.price-label {
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 600;
}

.price-amount {
display: flex;
align-items: baseline;
justify-content: center;
gap: 4px;
margin-bottom: 8px;
}

.price-amount .currency {
font-size: 24px;
font-weight: 700;
color: var(--teal);
}

.price-amount .value {
font-size: 56px;
font-weight: 800;
color: var(--white);
letter-spacing: -2px;
}

.price-period {
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
font-weight: 500;
}

.final-cta-buttons {
margin-bottom: 24px;
}

.btn-final-cta {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 18px 36px;
font-size: 17px;
font-weight: 700;
font-family: var(--font);
border-radius: var(--radius-md);
cursor: pointer;
transition: all 0.3s ease;
border: none;
text-decoration: none;
text-align: center;
}

.btn-final-cta.primary {
background: var(--teal);
color: var(--white);
box-shadow: 0 10px 30px rgba(34, 184, 201, 0.4);
}

.btn-final-cta.primary:hover {
background: var(--cyan);
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(34, 184, 201, 0.6);
}

.btn-final-cta svg {
transition: transform 0.3s ease;
}

.btn-final-cta:hover svg {
transform: translateX(5px);
}

.final-trust {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
font-weight: 500;
}

.final-trust svg {
color: var(--teal);
}

@media (max-width: 768px) {
.final-cta { padding: 80px 0; }
.final-cta-title { font-size: 32px; }
.final-cta-subtitle { font-size: 16px; }
.price-amount .value { font-size: 48px; }
.btn-final-cta {
width: 100%;
justify-content: center;
padding: 16px 28px;
}
}

@media (max-width: 640px) {
.final-cta { padding: 64px 0; }
.final-cta-title { font-size: 28px; }
.final-benefits { gap: 12px; }
.final-benefits {
gap: 12px;
align-items: center;
text-align: center;
}
.final-benefits li { justify-content: center; }
.price-amount .value { font-size: 44px; }
.final-trust { font-size: 13px; }
}

@media (max-width: 380px) {
.final-cta-title { font-size: 24px; }
.price-amount .value { font-size: 40px; }
}

/* ========================================
ABOUT RAHMAN SECTION (SECTION 14)
======================================== */
.about {
padding: 80px 0;
background: var(--white);
}

.about-grid {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 64px;
align-items: start;
}

.about-visual {
display: flex;
justify-content: center;
position: sticky;
top: 40px;
}

.about-photo-card {
width: 100%;
max-width: 360px;
text-align: center;
}

.about-photo {
width: 220px;
height: 220px;
aspect-ratio: 1 / 1;
background: var(--gray-100);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--gray-500);
overflow: hidden;
border: 4px solid var(--white);
box-shadow: var(--shadow-md);
margin: 0 auto 24px;
}

.about-photo svg {
opacity: 0.5;
}

.about-name {
font-size: 24px;
font-weight: 800;
color: var(--navy);
margin-bottom: 8px;
}

.about-role {
font-size: 14px;
color: var(--gray-500);
font-weight: 500;
line-height: 1.5;
}

.about-content {
display: flex;
flex-direction: column;
gap: 32px;
}

.about-bio {
display: flex;
flex-direction: column;
gap: 20px;
}

.about-bio p {
font-size: 16px;
color: var(--gray-600);
line-height: 1.8;
margin: 0;
}

.about-bio strong {
color: var(--navy);
font-weight: 700;
}

.credential-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}

.credential-card {
background: var(--gray-50);
border: 1px solid var(--gray-200);
border-radius: var(--radius-md);
padding: 20px;
transition: all 0.3s ease;
}

.credential-card:hover {
border-color: var(--teal);
background: var(--white);
transform: translateY(-2px);
box-shadow: var(--shadow-sm);
}

.credential-number {
font-size: 32px;
font-weight: 800;
color: var(--teal);
line-height: 1;
margin-bottom: 8px;
letter-spacing: -0.02em;
}

.credential-label {
font-size: 13px;
color: var(--gray-600);
line-height: 1.4;
font-weight: 500;
}

@media (max-width: 992px) {
.about-grid {
grid-template-columns: 1fr;
gap: 48px;
text-align: center;
}
.about-visual { position: static; }
.about-bio { text-align: left; }
}

@media (max-width: 640px) {
.about { padding: 64px 0; }
.about-photo-card { max-width: 280px; }
.about-name { font-size: 22px; }
.about-role { font-size: 13px; }
.about-bio p { font-size: 15px; }
.credential-grid {
grid-template-columns: 1fr;
gap: 12px;
}
.credential-card { padding: 16px; }
.credential-number { font-size: 26px; }
.credential-label { font-size: 12px; }
}

@media (max-width: 380px) {
.credential-number { font-size: 24px; }
.credential-label { font-size: 11px; }
}

/* ========================================
FOOTER SECTION (SECTION 15)
======================================== */
.footer {
padding: 80px 0 32px;
background: var(--navy);
color: var(--white);
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 64px;
margin-bottom: 64px;
}

.footer-logo {
font-size: 24px;
font-weight: 800;
margin-bottom: 16px;
letter-spacing: -0.02em;
}

.logo-cover { color: var(--white); }
.logo-craft { color: var(--teal); }

.footer-tagline {
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
max-width: 320px;
margin: 0;
}

.footer-heading {
font-size: 14px;
font-weight: 700;
color: var(--white);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}

.footer-links {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
padding: 0;
margin: 0;
}

.footer-link {
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color 0.2s ease;
}

.footer-link:hover {
color: var(--teal);
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 32px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
font-size: 14px;
color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
cursor: pointer;
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
}

.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.back-to-top:hover {
background: var(--teal);
border-color: var(--teal);
transform: translateY(-3px);
}

@media (max-width: 992px) {
.footer-grid {
grid-template-columns: 1fr 1fr;
gap: 48px;
}
.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
.footer { padding: 64px 0 24px; }
.footer-grid {
grid-template-columns: 1fr;
gap: 32px;
margin-bottom: 48px;
}
.footer-bottom {
flex-direction: column;
gap: 20px;
text-align: center;
}
.footer-links-group { text-align: center; }
.footer-heading { text-align: center; }
.footer-links { align-items: center; }
.footer-tagline { max-width: 100%; }
}