/* MonoDesk Discovery Landing Page Styles */

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html, body {
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Geist', system-ui, sans-serif;
    background: #212121;
    line-height: 1.5;
}


/* ===================================
   DESIGN TOKENS
   =================================== */

:root {
    /* Colors */
    --brand-white: #FFFFFF;
    --brand-orange: #FF5B26;
    --brand-highlighter: #D1FF6E;
    --brand-blue: #1C64F5;
    --brand-grey: #94959A;
    --brand-almost-black: #272727;
    --brand-fun-green: #026232;
    --surface-tint: #EEF2F5;
    --surface-white: #343434;
    --background: #DADEE1;
    --type: #161616;
    --type-light: #E7E7E7;
    --type-60: rgba(22, 22, 22, 0.6);
    --type-40: rgba(223, 223, 223, 0.4);
    --type-light-60: rgba(223, 223, 223, 0.6);
    --type-light-40: rgba(223, 223, 223, 0.4);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 80px;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 30px;
}

/* ===================================
   HEADER
   =================================== */

.header-container {
    width: 100%;
    min-height: 100px;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-content {
    width: 100%;
    padding: 24px 60px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.folder-tab {
    position: relative;
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    line-height: 0;
    margin-left: 0;
}

.folder-tab-shape {
    grid-area: 1 / 1;
    width: 530px;
    height: 100px;
    display: block;
    max-width: none;
    min-width: 0;
}

.logo-wrapper {
    grid-area: 1 / 1;
    width: 162.428px;
    height: 29.794px;
    margin-left: 57.67px;
    margin-top: 35.6px;
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    height: 29.794px;
    width: auto;
    display: block;
}

/* Header Navigation Links */
.header-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -34px;
    margin-right: 60px;
    margin-left: auto;
}

.header-nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.header-nav-link:hover {
    opacity: 0.8;
}

.header-nav-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.header-nav-link-button {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.header-nav-link-button:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .header-nav-links {
        display: none;
    }
}

/* ===================================
   HEADER PRICE BADGE
   =================================== */

.header-content .price-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 200px;
    height: 32px;
    margin-top: -34px;
}

.header-content .price-badge svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.header-content .price-badge-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content .price-badge-text p {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 8px;
    color: var(--brand-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===================================
   GOOGLE CALENDAR BUTTON STYLING
   =================================== */

.gcal-btn-wrapper {
    margin-top: 0;
}

.gcal-btn-wrapper button {
    background: #D1FF6E !important;
    color: #026232 !important;
    border-radius: 10px !important;
    font-family: 'Geist', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px !important;
    height: 40px !important;
    min-width: 197px !important;
    border: none !important;
    cursor: pointer !important;
    transition: box-shadow 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.gcal-btn-wrapper button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: #272727 !important;
    transition: left 0.4s ease !important;
    z-index: -1 !important;
    border-radius: 10px !important;
}

.gcal-btn-wrapper button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    color: #D1FF6E !important;
}

.gcal-btn-wrapper button:hover::before {
    left: 0 !important;
}

.gcal-btn-wrapper button:active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.gcal-btn-wrapper button * {
    font-family: 'Geist', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    width: 100%;
    background: #DADEE1;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    color: var(--background);
}

.about-content {
    width: 100%;
    max-width: 1320px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-text-container {
    flex: 1 1 auto;
    max-width: 400px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    order: 1;
}

.about-icon {
    width: 45px;
    height: 30px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.about-icon-img {
    width: 45px;
    height: 30px;
    display: block;
    object-fit: contain;
}

.about-title {
    font-family: 'Geist', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--type);
    letter-spacing: -0.05rem;
    line-height: normal;
    margin-top: 34px;
}

.about-subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(22, 22, 22, 1);
    opacity: 0.8;
    line-height: 1.2;
    margin-top: 8px;
}

.about-list {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--type);
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.about-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 12px;
    color: rgba(22, 22, 22, 1);
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-size: 20px;
}

.about-image {
    width: 520px;
    height: auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    flex-shrink: 0;
    order: 2;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   BEFORE / AFTER SECTION
   =================================== */

.before-after {
    padding: 6rem 40px;
    background: var(--brand-white);
}

.before-after .container {
    max-width: 1320px;
    padding: 0;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.before {
    border: 1px solid #DADEE1;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    min-height: 420px;
    position: relative;
    background: #EEF2F5;
}

.after {
    border: 2px solid var(--brand-blue);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    min-height: 420px;
    position: relative;
    background: var(--type);
}

.before h2, .after h2 {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background: var(--brand-white);
    padding: 4px 12px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-grey);
    border: 1px solid #DADEE1;
    border-radius: 6px;
}

.after h2 {
    color: #0048EC;
    border-color: #0048EC;
    background: var(--brand-white);
}

.before-content,
.after-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: center;
}

.comparison-title {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.before .comparison-title {
    color: var(--type);
}

.after .comparison-title {
    color: var(--brand-white);
}

.comparison-main-h2 {
    font-family: 'Geist', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.comparison-h2 {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
}

.comparison-h4 {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.3px;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

.before .comparison-main-h2 {
    color: var(--type);
}

.before .comparison-h2 {
    color: var(--type);
}

.before .comparison-h4 {
    color: var(--type-60);
}

.after .comparison-main-h2 {
    color: var(--brand-white);
}

.after .comparison-h2 {
    color: var(--brand-white);
}

.after .comparison-h4 {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.before .comparison-list li {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--type-60);
    padding-left: 1.5rem;
    position: relative;
}

.before .comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand-grey);
    font-size: 20px;
}

.after .comparison-list li {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.after .comparison-list li svg {
    flex-shrink: 0;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    width: 100%;
    height: 700px;
    background: url('../assets/header-blue-thinker.webp') center bottom / cover no-repeat;
    background-color: rgba(0, 72, 236, 1);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: -24px;
}

.hero-content {
    width: 100%;
    padding: 80px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.hero-text-container {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: center;
}

.hero-label {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
}

.hero-title {
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-white);
    line-height: 50px;
    letter-spacing: -0.3px;
    margin: 0;
    text-align: center;
    width: 550px;
}

.hero-subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(223, 223, 223, 0.8);
    letter-spacing: -0.3px;
    max-width: 520px;
    line-height: 1;
    text-align: center;
}

.hero-h2 {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-white);
    letter-spacing: -0.3px;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.hero-h4 {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(223, 223, 223, 0.8);
    letter-spacing: 0px;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    width: 450px;
}

.hero-subtext {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: rgba(223, 223, 223, 0.8);
    letter-spacing: 0px;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.hero-cta-button {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: #D1FF6E;
    color: #026232;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 40px;
    min-width: 197px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #026232;
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 20px;
}

.hero-cta-button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #D1FF6E;
}

.hero-cta-button:hover::before {
    left: 0;
}

.hero-cta-button:active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===================================
   FEATURES SECTION (WITH IMAGES)
   =================================== */

.features-section {
    padding: var(--spacing-2xl) var(--spacing-xl);
    background-color: var(--brand-almost-black);
    color: white;
}

.features-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-main-heading {
    font-family: 'Geist', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--background);
    letter-spacing: -0.05rem;
    line-height: 1.2;
    text-align: center;
    margin: 0 auto 60px;
    max-width: 1000px;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
    justify-content: center;
    padding-left: 200px;
    padding-right: 200px;
}

.feature-row.reverse .feature-text {
    margin-left: -60px;
}

.feature-image {
    flex: 1;
    max-width: 500px;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-image img,
.feature-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.feature-text {
    flex: 1;
    max-width: 450px;
}

.feature-text h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: white;
    margin-bottom: 8px;
}

.feature-text h2 {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.feature-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    width: 380px;
}

/* ===================================
   URGENCY SECTION
   =================================== */

.urgency-section {
    width: 100%;
    background: #161616;
    padding: 80px 40px 6rem;
}

.urgency-card-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.urgency-cta-card {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: 3rem 3rem 3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.urgency-text-content {
    flex: 1;
    max-width: 550px;
    padding-left: 40px;
}

.urgency-header {
    margin-bottom: 2rem;
    text-align: left;
}

.urgency-title-main {
    font-size: 28px;
    font-weight: 600;
    color: var(--brand-almost-black);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-align: left;
}

.urgency-points-list {
    display: flex;
    flex-direction: column;
}

.urgency-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
}

.point-icon-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon-svg svg path {
    stroke: var(--brand-fun-green);
}

.point-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.point-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--type);
    letter-spacing: -0.02em;
}

.point-title strong {
    font-weight: 600;
    display: block;
}

.point-subtitle {
    opacity: 0.8;
}

.urgency-image-container {
    flex-shrink: 0;
    width: 450px;
    height: 520px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #EEF2F5;
    margin-right: 3rem;
}

.urgency-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* ===================================
   TIMELINE SECTION
   =================================== */

.timeline-section {
    width: 100%;
    background: #212121;
    padding: var(--spacing-xl) var(--spacing-xl);
    padding-top: 120px;
    color: var(--brand-almost-black);
}

.timeline-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1320px;
    margin: 0 auto;
    align-items: stretch;
}

.timeline-media {
    max-width: 625px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timeline-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 500/358;
    border-radius: 20px;
    overflow: hidden;
    background: #333;
}

.timeline-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.2s ease;
}

.timeline-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.timeline-dot.active {
    background: var(--brand-orange);
}

.timeline-preview-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-preview-img.active {
    opacity: 1;
    transform: scale(1);
}

.timeline-content {
    flex: 1;
    max-width: 625px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.timeline-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
    max-width: 400px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.6px;
    line-height: 1;
    color: #e7e7e7;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: rgba(223, 223, 223, 1);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
}

.timeline-step {
    display: flex;
    gap: 16px;
    padding: 24px 20px;
    min-height: 180px;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.timeline-step:hover {
    opacity: 0.95;
}

.timeline-step.active {
    opacity: 1;
}

.timeline-step:last-child {
    min-height: 140px;
    padding-bottom: 60px;
}

.timeline-number {
    position: relative;
    width: 30px;
    height: 30px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.5s ease;
    z-index: 2;
}

.timeline-step.active .timeline-number {
    background: var(--brand-orange);
}

.timeline-number span {
    font-family: 'Geist', monospace;
    font-size: 16px;
    font-weight: 500;
    color: #e7e7e7;
    position: relative;
    z-index: 3;
}

.timeline-line {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 150px;
    background: repeating-linear-gradient(
        to bottom,
        #e7e7e7 1px,
        #e7e7e7 1px,
        transparent 4px,
        transparent 4px
    );
    z-index: 0;
}

.timeline-step:last-child .timeline-line {
    display: none;
}

.timeline-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 16px;
    padding-top: 4px;
}

.timeline-step-title {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #e7e7e7;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.timeline-step.active .timeline-step-title {
    color: #ffffff;
}

.timeline-step-desc {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(223, 223, 223, 0.6);
    letter-spacing: -0.3px;
    line-height: 1.5;
    max-width: 320px;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: var(--background);
}

.pricing-container {
    position: relative;
    width: 100%;
    max-width: 1380px;
}

.price-badge {
    position: absolute;
    top: -49.4px;
    left: 50%;
    transform: translateX(-50%);
    width: 314.1px;
    height: 50.4px;
}

.price-badge svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.price-badge-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-badge-text p {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 10px;
    color: var(--brand-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-card {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(39, 39, 39, 1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    margin: 0 auto;
}

.price-left {
    flex: 1;
    max-width: 600px;
}

.price-headline {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--brand-white);
    letter-spacing: -0.3px;
    margin-bottom: var(--spacing-md);
}

.price-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 550px;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 250px;
}

.price-feature i {
    width: 16px;
    height: 16px;
    color: var(--brand-white);
    flex-shrink: 0;
}

.price-feature svg {
    width: 16px;
    height: 16px;
    color: var(--brand-white);
    stroke: var(--brand-white);
}

.price-feature span {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--brand-grey);
}

.price-divider {
    height: 120px;
    width: 1px;
    background: var(--brand-white);
    opacity: 0.2;
    margin-right: 80px;
    transform: rotate(45deg);
}

.price-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 280px;
}

.price-display {
    text-align: center;
}

.price-strike {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--brand-grey);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-amount {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: var(--brand-white);
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.price-subtext {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--brand-white);
    opacity: 0.8;
    margin-bottom: 24px;
}

/* ===================================
   WHY US SECTION
   =================================== */

.why-us {
    padding: 6rem 40px;
    background: #DADEE1;
    color: var(--background);
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-us-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-us-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-highlighter);
    background: rgba(209, 255, 110, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.why-us-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--type);
    letter-spacing: -0.03em;
}

.why-us-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(22, 22, 22, 0.6);
    margin-top: 1rem;
    line-height: 1.6;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.compare-card {
    background: rgba(22, 22, 22, 0.03);
    border: 1px solid rgba(22, 22, 22, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.compare-card:hover {
    background: rgba(22, 22, 22, 0.05);
    border-color: rgba(22, 22, 22, 0.12);
    transform: translateY(-2px);
}

.compare-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.compare-card.negative .compare-card-icon {
    background: rgba(255, 91, 38, 0.15);
    color: var(--brand-orange);
}

.compare-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--type);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.compare-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(22, 22, 22, 0.6);
}

.compare-highlight {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.compare-highlight-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--brand-blue);
    color: var(--brand-white);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.compare-highlight-badge svg {
    flex-shrink: 0;
}

.compare-highlight-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(22, 22, 22, 0.9);
    margin: 0;
    color: rgba(22, 22, 22, 0.9);
    margin: 0;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #2C48E3;
}

#cta-confetti-back,
#cta-confetti-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#cta-confetti-back {
    z-index: 1;
}

#cta-confetti-front {
    z-index: 2;
}

.final-cta-container {
    width: 100%;
    background: transparent;
    border-radius: 0;
    padding: var(--spacing-lg) 30px;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: white;
    position: relative;
    z-index: 10;
}

.cta-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 19px;
    max-width: 770px;
    position: relative;
    z-index: 20;
    justify-content: flex-start;
    align-items: center;
}

.cta-title {
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--brand-white);
    letter-spacing: -1.44px;
    line-height: 1;
}

.cta-subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(218, 222, 225, 0.8);
    letter-spacing: 0px;
}

.cta-contact {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(218, 222, 225, 0.8);
    letter-spacing: 0px;
    margin-top: 16px;
}

.final-cta-container .gcal-btn-wrapper {
    position: relative;
    z-index: 20;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: #212121;
}

.pricing-container {
    position: relative;
    width: 100%;
    max-width: 1380px;
}

.price-badge {
    position: absolute;
    top: -49.4px;
    left: 50%;
    transform: translateX(-50%);
    width: 314.1px;
    height: 50.4px;
}

.price-badge svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.price-badge-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-badge-text p {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 10px;
    color: var(--brand-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.price-card {
    background: var(--brand-almost-black);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.price-left {
    flex: 1;
    max-width: 600px;
}

.price-headline {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--brand-white);
    letter-spacing: -0.3px;
    margin-bottom: var(--spacing-md);
}

.price-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-feature i,
.price-feature svg {
    width: 16px;
    height: 16px;
    color: var(--brand-white);
    stroke: var(--brand-white);
    flex-shrink: 0;
}

.price-feature span {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--brand-white);
}

.price-divider {
    height: 120px;
    width: 1px;
    background: var(--brand-white);
    opacity: 0.2;
}

.price-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 280px;
}

.price-display {
    text-align: center;
}

.price-strike {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--brand-grey);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-amount {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: var(--brand-highlighter);
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.price-subtext {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--brand-white);
    opacity: 0.8;
    margin-bottom: 24px;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 1440px) {
    .hero-content,
    .feature-row,
    .urgency-cta-card,
    .timeline-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1200px) {
    .price-card {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-container {
        min-height: auto;
    }

    .header-content {
        padding: 0 16px 0 0;
    }

    .folder-tab-shape {
        width: 280px;
        height: 70px;
    }

    .logo-wrapper {
        width: 120px;
        height: 22px;
        margin-left: 30px;
        margin-top: 24px;
    }

    .logo {
        height: 22px;
    }

    .header-nav-links {
        margin-top: -24px;
        margin-right: 16px;
        gap: 8px;
    }

    .header-nav-link {
        font-size: 13px;
    }

    .header-nav-link-button {
        font-size: 13px;
        padding: 6px 12px;
    }

    .header-nav-divider {
        font-size: 13px;
    }

    /* Hero */
    .hero-section {
        height: auto;
        min-height: 480px;
        padding: 40px 20px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 36px;
        width: 100%;
        max-width: 100%;
    }

    .hero-h2 {
        font-size: 20px;
    }

    .hero-h4 {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }

    .hero-subtext {
        font-size: 11px;
    }

    .hero-cta-button {
        min-width: 160px;
        font-size: 13px;
        height: 38px;
    }

    /* About / Pain Point Section */
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 32px;
        padding: 0 20px;
    }

    .about-text-container {
        max-width: 100%;
        order: 1;
    }

    .about-title {
        font-size: 24px;
        margin-top: 20px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-image {
        width: 100%;
        order: 2;
    }

    /* Before / After Comparison */
    .comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .before,
    .after {
        min-height: auto;
    }

    .comparison-title {
        font-size: 20px;
    }

    .comparison-main-h2 {
        font-size: 24px;
    }

    .comparison-h2 {
        font-size: 20px;
    }

    .comparison-h4 {
        font-size: 16px;
    }

    /* Features Section */
    .features-section {
        padding: 48px 16px;
    }

    .features-section .container {
        padding: 0 8px;
    }

    .features-main-heading {
        font-size: 26px;
        margin-bottom: 32px;
        padding: 0;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        margin-bottom: 48px;
        padding-left: 0;
        padding-right: 0;
    }

    .feature-row.reverse .feature-text {
        margin-left: 0;
    }

    .feature-text {
        max-width: 100%;
        order: 1;
    }

    .feature-text h3 {
        font-size: 24px;
    }

    .feature-text h2 {
        font-size: 18px;
    }

    .feature-text p {
        width: 100%;
        max-width: 100%;
        font-size: 15px;
    }

    .feature-image {
        max-width: 100%;
        width: 100%;
        height: 240px;
        order: 2;
    }

    /* Urgency Section */
    .urgency-cta-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .urgency-text-content {
        max-width: 100%;
        padding-left: 0;
    }

    .urgency-image-container {
        width: 100%;
        height: 300px;
        margin-right: 0;
    }

    /* Timeline Section */
    .timeline-section {
        padding: 60px 20px;
        padding-top: 60px;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .timeline-media {
        max-width: 100%;
    }

    .timeline-content {
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .timeline-step {
        padding: 16px 12px;
        min-height: auto;
    }

    .timeline-step:last-child {
        min-height: auto;
        padding-bottom: 32px;
    }

    .timeline-step-title {
        font-size: 20px;
    }

    .timeline-step-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .timeline-text {
        padding-left: 8px;
    }

    .timeline-line {
        height: 100px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .price-card {
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-lg);
    }

    .price-features-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .price-feature {
        width: 100%;
    }

    .price-divider {
        display: none;
    }

    .price-amount {
        font-size: 42px;
    }

    /* Why Us Section */
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .compare-highlight {
        flex-direction: column;
        text-align: center;
    }

    /* FAQ Section */
    .faq-section {
        padding: 48px 20px;
    }

    .faq-container {
        padding: 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: var(--spacing-lg);
    }

    .faq-question span {
        font-size: 17px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    /* Final CTA */
    .final-cta-container {
        height: auto;
        min-height: 380px;
        padding: 48px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .header-nav-links {
        gap: 6px;
        margin-right: 8px;
    }

    .header-nav-link,
    .header-nav-link-button,
    .header-nav-divider {
        font-size: 12px;
    }

    .header-nav-link-button {
        padding: 5px 10px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }

    .hero-h4 {
        font-size: 15px;
    }

    .features-main-heading {
        font-size: 22px;
    }

    .feature-text h3 {
        font-size: 22px;
    }

    .about-title {
        font-size: 22px;
    }

    .cta-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Brevo Form Styles */
.brevo-form-wrapper {
    display: inline-block;
}

/* Success State Animations */
@keyframes success-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes success-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
    }
}

.brevo-signup-form.success {
    animation: success-pulse 0.6s ease-out;
}

.brevo-submit-btn.success {
    background: #10b981 !important;
    color: white !important;
    animation: success-glow 1.5s ease-in-out infinite;
    font-weight: 600 !important;
    font-size: 16px !important;
}

/* Header button only - standalone button without form */
.header-content .brevo-form-wrapper .brevo-submit-btn {
    display: inline-block;
}

.brevo-signup-form {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: auto;
}

.brevo-email-input {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    padding: 12px 215px 12px 20px;
    border: 1px solid var(--brand-highlighter);
    border-radius: 8px;
    background: var(--brand-highlighter);
    color: #000;
    min-width: 280px;
    transition: all 0.2s ease;
    width: 100%;
}

.brevo-email-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.brevo-email-input:focus {
    outline: none;
    border-color: var(--brand-highlighter);
    background: var(--brand-highlighter);
}

.brevo-submit-btn {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: #026232;
    color: #D1FF6E;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    white-space: nowrap;
    height: 40px;
    min-width: 197px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 2;
}

.brevo-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #272727;
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.brevo-submit-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #D1FF6E;
}

.brevo-submit-btn:hover::before {
    left: 0;
}

.brevo-submit-btn:active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brevo-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brevo-signup-form {
        width: 100%;
    }
    
    .brevo-email-input {
        width: 100%;
        min-width: auto;
        padding: 12px 215px 12px 20px;
    }
    
    .brevo-submit-btn {
        min-width: 180px;
    }
}

/* ===================================
   CTA TOAST (STICKY BUTTON)
   =================================== */

.cta-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    animation: toast-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toast-slide-in {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-toast-content {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--brand-almost-black);
    padding: 12px 14px 12px 20px;
    border-radius: 50px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.cta-toast-text {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.2px;
}

/* Toast Google Calendar Button */
.cta-toast .gcal-btn-wrapper {
    margin-top: 0;
}

.cta-toast .gcal-btn-wrapper button {
    background: #D1FF6E !important;
    color: #026232 !important;
    border-radius: 50px !important;
    font-family: 'Geist', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 10px 18px !important;
    height: auto !important;
    min-width: auto !important;
    border: none !important;
    cursor: pointer !important;
    transition: box-shadow 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.cta-toast .gcal-btn-wrapper button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: #272727 !important;
    transition: left 0.4s ease !important;
    z-index: -1 !important;
    border-radius: 50px !important;
}

.cta-toast .gcal-btn-wrapper button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    color: #D1FF6E !important;
}

.cta-toast .gcal-btn-wrapper button:hover::before {
    left: 0 !important;
}

.cta-toast .gcal-btn-wrapper button:active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive adjustments for toast */
@media (max-width: 768px) {
    .cta-toast {
        bottom: 16px;
        right: 16px;
    }
    
    .cta-toast-content {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .cta-toast-text {
        text-align: center;
        font-size: 13px;
    }
}

/* Styles for additional sections will be added here */

/* FAQ Section */
.faq-section {
    width: 100%;
    background: #212121;
    padding: var(--spacing-2xl) var(--spacing-xl);
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.faq-title {
    font-family: 'Geist', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--background);
    text-align: center;
    letter-spacing: -0.6px;
    margin-bottom: var(--spacing-xl);
}

.faq-item {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--brand-white);
    letter-spacing: -0.3px;
    line-height: 1.4;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--brand-white);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--spacing-md);
}

.faq-answer p {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--brand-white);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.faq-answer a:hover {
    opacity: 0.8;
}

.faq-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* Responsive FAQ - merged into main 768px media query */
