@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-title: 'Outfit', var(--font-sans);
    
    /* Adobe Premium Palette */
    --color-bg-base: #fbfbfd;
    --color-bg-surface: rgba(255, 255, 255, 0.75);
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.15);
    
    --color-text-primary: #1d1d1f;
    --color-text-secondary: #515154;
    --color-text-tertiary: #86868b;
    
    /* Adobe CC Gradients */
    --gradient-adobe: linear-gradient(135deg, #fa0f00 0%, #d8005b 25%, #8f00b5 50%, #2c00f2 75%, #00a4e4 100%);
    --gradient-adobe-soft: linear-gradient(135deg, rgba(250, 15, 0, 0.05) 0%, rgba(216, 0, 91, 0.05) 25%, rgba(143, 0, 181, 0.05) 50%, rgba(44, 0, 242, 0.05) 75%, rgba(0, 164, 228, 0.05) 100%);
    --color-primary: #1473e6; /* Adobe Blue */
    --color-primary-hover: #0d59b3;
    --color-success: #2d8515;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
    --shadow-inset: inset 0 1px 2px rgba(255, 255, 255, 0.4);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Background floating glow blobs */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    transition: all 1s ease;
}

.glow-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(250, 15, 0, 0.3) 0%, rgba(143, 0, 181, 0.2) 60%, rgba(0, 164, 228, 0.1) 100%);
    animation: floatGlow1 20s infinite alternate ease-in-out;
}

.glow-2 {
    top: 600px;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 164, 228, 0.2) 0%, rgba(44, 0, 242, 0.2) 50%, rgba(216, 0, 91, 0.1) 100%);
    animation: floatGlow2 25s infinite alternate ease-in-out;
}

.glow-3 {
    bottom: 300px;
    right: -100px;
    background: radial-gradient(circle, rgba(250, 15, 0, 0.15) 0%, rgba(143, 0, 181, 0.2) 50%, rgba(0, 164, 228, 0.15) 100%);
    animation: floatGlow1 22s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 80px) scale(1.15); }
}

@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, -100px) scale(1.2); }
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

p {
    color: var(--color-text-secondary);
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-bg-surface);
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--color-text-primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-adobe);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(216, 0, 91, 0.25);
}

.logo-text span {
    background: var(--gradient-adobe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-text-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-adobe);
    color: #fff;
    box-shadow: 0 4px 15px rgba(216, 0, 91, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00a4e4 0%, #2c00f2 25%, #8f00b5 50%, #d8005b 75%, #fa0f00 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216, 0, 91, 0.35);
}

.btn-secondary {
    background-color: #fff;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #f5f5f7;
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.88rem;
}

/* Sections General */
section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px auto;
}

.section-tag {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient-adobe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    font-family: var(--font-title);
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-tag span.badge {
    background: var(--gradient-adobe);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.hero-title span {
    background: var(--gradient-adobe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 640px;
    margin-bottom: 40px;
    color: var(--color-text-secondary);
}

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

/* Hero floating visual mockup */
.hero-visual {
    width: 100%;
    max-width: 950px;
    margin-top: 20px;
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    animation: floatVisual 6s infinite alternate ease-in-out;
}

.hero-visual-inner {
    border-radius: calc(var(--radius-lg) - 8px);
    overflow: hidden;
    background: #000;
    position: relative;
    aspect-ratio: 16/9;
}

/* Floating overlay badges inside hero */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.badge-left {
    left: -40px;
    top: 30%;
    animation-name: floatLeftBadge;
}

.badge-right {
    right: -40px;
    bottom: 25%;
    animation-name: floatRightBadge;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-adobe-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-info {
    text-align: left;
}

.badge-info p {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-tertiary);
    margin: 0;
    line-height: 1.2;
}

.badge-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

@keyframes floatVisual {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(0.5deg); }
}

@keyframes floatLeftBadge {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-10px) translateX(-5px); }
}

@keyframes floatRightBadge {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(12px) translateX(8px); }
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.feature-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-adobe);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-adobe-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

/* Activation Process (Timeline) */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    position: relative;
    margin-left: 75px;
    width: calc(100% - 75px);
    transition: all 0.3s ease;
}

.timeline-badge {
    position: absolute;
    top: 24px;
    left: 30px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--color-text-primary);
    z-index: 10;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-title);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-badge {
    background: var(--gradient-adobe);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(216, 0, 91, 0.35);
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-hover);
}

/* Grid layout for cards on desktop */
.step-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.step-info {
    display: flex;
    flex-direction: column;
}

.step-num {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: block;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

/* Custom styled step image wrappers */
.step-image-wrapper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    background: #fbfbfd;
}

.step-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.step-card:hover .step-image-wrapper {
    box-shadow: var(--shadow-md);
    transform: scale(1.01);
}

/* Step 4 Success Card Design */
.success-ui {
    background: linear-gradient(135deg, rgba(45, 133, 21, 0.03) 0%, rgba(45, 133, 21, 0.08) 100%);
    border: 1px dashed rgba(45, 133, 21, 0.3) !important;
}

.success-badge {
    color: var(--color-success);
}

.success-graphic {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 133, 21, 0.15);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.success-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(45, 133, 21, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
    font-size: 1.5rem;
    margin-bottom: 16px;
    animation: successPulse 2s infinite ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(45, 133, 21, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(45, 133, 21, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(45, 133, 21, 0); }
}

.success-plan-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.success-plan-status {
    font-size: 0.85rem;
    color: var(--color-success);
    font-weight: 600;
    background: rgba(45, 133, 21, 0.08);
    padding: 2px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
}

.success-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 12px;
}

.success-details-item {
    text-align: left;
}

.success-details-item span {
    display: block;
    color: var(--color-text-tertiary);
    font-size: 0.75rem;
}

.success-details-item strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Trust Badges Section */
.trust-badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    max-width: 100%;
}

.trust-badge:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge:first-child .trust-icon {
    color: #e53935; /* secure red */
}

.trust-badge:nth-child(3) .trust-icon {
    color: #43a047; /* active green */
}

.trust-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    white-space: normal;
    line-height: 1.4;
}

/* Accordion FAQ Section */
.faq-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: #ffffff;
    border-color: var(--color-border-hover);
}

.faq-item.active {
    background: #ffffff;
    border-color: rgba(20, 115, 230, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-trigger h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    padding-right: 24px;
    transition: color 0.2s ease;
}

.faq-item.active .faq-trigger h3 {
    color: var(--color-primary);
}

.faq-icon-indicator {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
    content: '';
    position: absolute;
    background-color: var(--color-text-secondary);
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.faq-icon-indicator::before {
    width: 14px;
    height: 2px;
}

.faq-icon-indicator::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon-indicator {
    transform: rotate(135deg);
}

.faq-item.active .faq-icon-indicator::before,
.faq-item.active .faq-icon-indicator::after {
    background-color: var(--color-primary);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 24px;
}

.cta-banner {
    max-width: 1000px;
    margin: 0 auto;
    background: radial-gradient(circle at 10% 20%, rgba(250, 15, 0, 0.08) 0%, rgba(143, 0, 181, 0.08) 45%, rgba(0, 164, 228, 0.08) 100%), #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Glowing border decoration for CTA banner */
.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-adobe);
}

.cta-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
}

.cta-desc {
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 36px auto;
    color: var(--color-text-secondary);
}

.cta-subtext {
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--color-text-tertiary);
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--color-border);
    background-color: #fff;
    padding: 48px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-text-primary);
}

.footer-brand .logo-icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.footer-disclaimer {
    max-width: 800px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    line-height: 1.5;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger menu toggle button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-only-cta {
    display: none;
}

/* RESPONSIVE STYLES */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 16px;
    }

    .hero-tag {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--radius-md);
        padding: 8px 16px;
        font-size: 0.82rem;
        gap: 6px;
    }
    
    .header {
        padding: 4px 0;
    }
    
    .nav-cta {
        display: none !important; /* Hide header CTAs on mobile to avoid overflow */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .glow-bg {
        display: none; /* Hide large decoration gradients to prevent side-scrolling */
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 280px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        padding: 100px 32px;
        gap: 24px;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        border-left: 1px solid var(--color-border);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }

    .hero-visual {
        animation: floatVisualMobile 6s infinite alternate ease-in-out;
        max-width: 100%;
        overflow: hidden;
    }

    /* Transform hamburger into 'X' when active */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .mobile-only-cta {
        display: block;
        width: 100%;
        margin-top: 16px;
    }
    
    .mobile-only-cta .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    .hero-section {
        padding-top: 130px;
        padding-bottom: 70px;
    }
    
    .hero-title {
        font-size: clamp(2.1rem, 7vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-badge {
        display: none; /* Hide floating overlays on mobile */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    /* Timeline Mobile (Stacked) */
    .timeline::before {
        left: 16px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-content {
        margin-left: 48px;
        width: calc(100% - 48px);
    }
    
    .timeline-badge {
        left: 16px;
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        top: 17px;
    }
    
    .step-card {
        padding: 24px;
    }
    
    .step-card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-title {
        font-size: 1.35rem;
    }
    
    .success-graphic {
        padding: 16px;
    }
    
    .trust-badges-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        padding: 0 16px;
        box-sizing: border-box;
    }
    
    .trust-badge {
        padding: 12px 20px;
        font-size: 0.88rem;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-trigger {
        padding: 20px 16px;
    }
    
    .faq-trigger h3 {
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 0 16px 20px 16px;
        font-size: 0.9rem;
    }
    
    .cta-banner {
        padding: 48px 20px;
        border-radius: var(--radius-lg);
    }
    
    .cta-title {
        font-size: 1.85rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
}

/* ==========================================================================
   Image Lightbox Modal Feature
   ========================================================================== */

/* Clickable step images styling */
.step-image-wrapper {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.step-image-wrapper::after {
    content: '🔍 Click to expand';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 115, 230, 0.3); /* Match Adobe theme tint */
    backdrop-filter: blur(2px);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-image-wrapper:hover::after {
    opacity: 1;
}

/* Lightbox Modal Structure */
.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 13, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.image-modal-wrapper {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-modal-overlay.active .image-modal-wrapper {
    transform: scale(1);
}

.image-modal-content {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    object-fit: contain;
}

.image-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2001;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.08) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.3);
}

.image-modal-caption {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    max-width: 80%;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.image-modal-overlay.active .image-modal-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Adjust close button for mobile screens */
@media (max-width: 768px) {
    .image-modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
    .image-modal-caption {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-top: 16px;
    }
}

/* Success details wrap on tiny screens */
@media (max-width: 480px) {
    .success-details {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }
    .success-details-item {
        text-align: center;
    }
}

/* Keyframes for mobile floating animations without rotation to prevent overflow */
@keyframes floatVisualMobile {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

/* Meta badges inside features header */
.features-meta-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.meta-badge {
    background: var(--gradient-adobe-soft);
    border: 1px solid rgba(20, 115, 230, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.meta-badge .icon {
    font-size: 1.1rem;
}

/* Features footer and callout badge */
.features-footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.limited-offer-badge {
    background: linear-gradient(135deg, rgba(250, 15, 0, 0.08) 0%, rgba(216, 0, 91, 0.08) 100%);
    border: 1px solid rgba(250, 15, 0, 0.18);
    color: #fa0f00; /* Match Adobe Red */
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    animation: badgePulse 2.5s infinite alternate ease-in-out;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 4px 12px rgba(250, 15, 0, 0.05); }
    100% { transform: scale(1.03); box-shadow: 0 8px 20px rgba(250, 15, 0, 0.15); }
}

@media (max-width: 480px) {
    .features-meta-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .meta-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .limited-offer-badge {
        font-size: 0.95rem;
        padding: 10px 20px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Premium Alert Box styling */
.alert-box {
    background: linear-gradient(135deg, rgba(255, 145, 0, 0.05) 0%, rgba(255, 145, 0, 0.1) 100%);
    border: 1px solid rgba(255, 145, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 48px auto;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.alert-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: #ff9100;
    flex-shrink: 0;
}

.alert-content {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    text-align: left;
}

.alert-content strong {
    color: #e65100;
    font-weight: 700;
}

/* Step 7 Warning Card Design */
.step-card.warning-ui {
    background: linear-gradient(135deg, rgba(255, 145, 0, 0.02) 0%, rgba(255, 145, 0, 0.06) 100%);
    border: 1px dashed rgba(255, 145, 0, 0.25) !important;
}

.warning-badge {
    color: #ff9100 !important;
}

@media (max-width: 768px) {
    .alert-box {
        padding: 16px;
        margin-bottom: 32px;
    }
}
