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

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

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

p a:link, p a:visited {
    color: #e91e8c;
    text-decoration: none;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #4b023a 0%, #0c0006 100%);
    padding: 80px 20px 100px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero .container {
    max-width: 1200px;
    position: relative;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
}

.hero .cta-button {
    margin-left: 0;
    min-width: 320px;
}

/* Hero CTA Row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
}

.hero-offer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    margin-left: 28px;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(90deg, #ff008c 0%, #920089 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.app-store-btn {
    background: linear-gradient(90deg, #ff008c 0%, #920089 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    white-space: nowrap;
    text-decoration: none;
}

.app-store-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.4);
}

/* Desktop CTA buttons */
.cta-buttons-desktop {
    display: block;
}

/* Mobile CTA buttons - hidden by default */
.cta-buttons-mobile {
    display: none;
}

/* Holiday Badge */
.holiday-badge {
    position: absolute;
    top: -40px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a0a2e;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
    animation: pulse-badge 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 16px;
    animation: bounce-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 5px 18px rgba(255, 215, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.25);
    }
}

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

/* Main Content Section */
.main-content, .gift-purchase-page {
    background:
        linear-gradient(90deg, rgba(43, 0, 107, 0.75) 0%, rgba(64, 1, 30, 0.75) 100%),
        url('https://readocracy-img.s3.us-east-1.amazonaws.com/thinkingthrough/landing/ttai-top-bg.png');
    background-size: cover, cover;
    background-position: center center, center 16%;
    padding: 0 0 100px;
    position: relative;
    overflow-x: hidden;
}

.content-wrapper {
    position: relative;
}

/* Logo Bar - Full Width Container */
.logo-bar {
    width: 100%;
    position: relative;
    padding: 35px 0;
}

/* Logo */
.logo {
    margin-left: 35px;
}

.logo img {
    width: 110px;
    height: auto;
}

/* Menu Toggle */
.menu-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1a0a2e;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-toggle.hidden {
    opacity: 0;
    visibility: hidden;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s;
}

.menu-toggle:hover span {
    background: #e91e8c;
}

/* Menu Close Button */
.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(233, 30, 140, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}

.menu-close:hover {
    background: rgba(233, 30, 140, 0.3);
}

.menu-close span {
    position: absolute;
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

.menu-close span:first-child {
    transform: rotate(45deg);
}

.menu-close span:last-child {
    transform: rotate(-45deg);
}

/* Desktop Navigation */
.nav-desktop {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none; /* TEMPORARY - remove later */
    align-items: center;
    gap: 32px;
    z-index: 10;
}

.nav-desktop a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-desktop a:hover {
    color: #e91e8c;
}

.nav-desktop a.nav-cta {
    background: linear-gradient(135deg, #e91e8c 0%, #c218a8 100%);
    padding: 10px 24px;
    border-radius: 8px;
    color: #ffffff;
}

.nav-desktop a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.4);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(26, 10, 46, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    gap: 24px;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 90;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.nav-mobile.open {
    transform: translateX(0);
}

.nav-mobile a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
    padding-left: 0;
}

.nav-mobile a:hover {
    color: #e91e8c;
    padding-left: 8px;
}

.nav-mobile a.nav-cta {
    background: linear-gradient(135deg, #e91e8c 0%, #c218a8 100%);
    padding: 14px 24px;
    border-radius: 8px;
    color: #ffffff;
    text-align: center;
    margin-top: 16px;
}

.nav-mobile a.nav-cta:hover {
    padding-left: 24px;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.4);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
    padding-top: 0px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
}

/* Device Mockup */
.device-mockup {
    background: url('https://readocracy-img.s3.us-east-1.amazonaws.com/thinkingthrough/previews/preview-profile.png') center/cover no-repeat;
    border-radius: 32px;
    aspect-ratio: 9 / 19;
    width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

/* Content Column */
.content-column {
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(320px * 16 / 9);
}

.content-top {
    flex-grow: 0;
}

.content-bottom {
    margin-top: auto;
}

.main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 0.98;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

/* Icon Row */
.icon-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.icon {
    width: 75px;
    height: 75px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5a2470 0%, #3d1850 100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border: 4px solid transparent;
    cursor: pointer;
}

.icon img {
    width: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.icon:hover {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.9);
}

.icon:hover img {
    opacity: 0.9;
}

.icon.active {
    background: linear-gradient(135deg, #e91e8c 0%, #7d2d9e 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.icon.active img {
    opacity: 1;
}

/* Description */
.description {
    font-size: 18px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
    min-height: 80px;
    transition: opacity 0.3s ease;
}

.description b {
    font-weight: 700;
    color: #ffffff;
}

/* Partners Section */
.partners {
    margin-top: 80px;
}

.partners-heading {
    margin-bottom: 32px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
}

.partners-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    margin: 0;
}

.partners-logos {
    overflow: hidden;
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
}

.partner-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.partner-logo-img:hover {
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Credentials Section */
.credentials {
    background: #0f0f0f;
    padding: 20px 20px 40px 20px;
    overflow-x: hidden;
}

.credentials .container {
    max-width: 1200px;
    overflow: hidden;
}

.credentials-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    text-align: left;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
}

.credentials .container > p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
    max-width: 800px;
}

/* Credentials Cards Grid */
.credentials-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 5px;
}

.credentials-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 32px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    font-style: italic;
}

/* Credentials Card Wrapper - allows badge overflow */
.credentials-card-wrapper {
    position: relative;
    overflow: visible;
}

/* Badge Icon - Hexagon (positioned on wrapper to allow overflow) */
.credentials-card-wrapper .badge-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 65px;
    height: 75px;
    z-index: 10;
    background-color: #FFB702;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Credentials Card */
.credentials-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 60px 24px 60px 24px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.credentials-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(20, 0, 49, 1) 30%, rgba(41, 1, 19, 0.7) 90%);
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}

.credentials-card > * {
    position: relative;
    z-index: 2;
}

.credentials-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* LinkedIn Bubble - positioned on wrapper to allow overflow */
.credentials-card-wrapper .linkedin-bubble {
    position: absolute;
    top: -15px;
    left: -5px;
    z-index: 10;
    display: inline-block;
    background: #443100;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    border: 2px solid #ffb702;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.credentials-card-wrapper .badge-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: inherit;
    background-size: cover;
    background-position: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Credentials Card Typography */
.credentials-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    padding: 0 0 14px 0;
}

.credentials-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}

.credentials-card h3:last-of-type {
    margin: 0 0 5px 0;
}

/* Expert Sub Card */
.expert-sub-cards {
    min-height: 44px;
}

.expert-sub-cards h3 {
    margin-bottom: 5px;
}

.expert-sub-card {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease-in-out;
}

.expert-sub-card.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
}

.expert-sub-card-image {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.expert-sub-card-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #e91e8c;
    margin: 0;
    line-height: 1.3;
}

.expert-sub-card-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #e91e8c;
    margin: 0;
    line-height: 1.3;
    max-width: 20ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive - Credentials */
@media (max-width: 1100px) {
    .credentials-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .credentials-title {
        font-size: 32px;
        margin-left: 0;
        margin-right: 0;
    }

    .credentials .container > p {
        margin-left: 0;
        margin-right: 0;
    }

    .credentials-cards {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 15px;
        padding-top: 45px;
        padding-right: 0;
    }

    .credentials-more {
        margin-left: 0;
    }

    .credentials-card h2 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .credentials {
        padding: 60px 20px;
    }

    .credentials-title {
        font-size: 36px;
    }

    .credentials-cards {
        padding-right: 0;
        padding-left: 0;
    }

    .credentials-card {
        min-height: auto;
    }

    .credentials-card h2 {
        font-size: 22px;
        padding-right: 50px;
    }

    .credentials-card-wrapper .badge-icon {
        width: 55px;
        height: 63px;
        top: -10px;
        right: -10px;
    }

    .credentials-card-wrapper .linkedin-bubble {
        font-size: 12px;
        padding: 8px 12px;
        top: -12px;
        left: 16px;
    }
}

/* Technology Section */
.technology {
    background: #0f0f0f;
    padding: 80px 20px;
    overflow-x: hidden;
}

.technology .container {
    max-width: 1200px;
    overflow: hidden;
}

.technology-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    text-align: left;
    color: #ffffff;
    margin-bottom: 48px;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
}

.technology-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
}

.technology-device {
    position: relative;
    width: 200px;
}

.technology-device-mockup {
    width: 180px;
    height: 395px;
    background: url('https://readocracy-img.s3.us-east-1.amazonaws.com/thinkingthrough/profile-preview-6.jpg') center/cover no-repeat;
    border-radius: 28px;
}

.technology-xp-badge {
    position: absolute;
    top: 20px;
    right: -120px;
    background: #2a2a2a;
    border: 3px solid #555555;
    border-radius: 12px;
    padding: 14px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.technology-text {
    max-width: 700px;
}

.technology-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Responsive - Technology */
@media (max-width: 968px) {
    .technology-title {
        font-size: 32px;
        margin-left: 0;
        margin-right: 0;
    }

    .technology-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-left: 0;
        margin-right: 0;
    }

    .technology-device {
        margin: 0 auto;
    }

    .technology-text p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .technology {
        padding: 60px 20px;
    }

    .technology-title {
        font-size: 36px;
    }

    .technology-device-mockup {
        width: 200px;
        height: 490px;
    }

    .technology-device {
        width: 210px;
    }

    .technology-xp-badge {
        font-size: 22px;
        padding: 10px 18px;
        top: 32px;
        right: -40px;
    }

    .technology-text p {
        font-size: 15px;
        line-height: 1.55;
    }
}

/* Advantages Section */
.advantages, .comparison {
    background: #0f0f0f;
    padding: 40px 20px 20px;
    overflow-x: hidden;
}

.comparison {
    padding: 100px 20px 20px 20px;
}

.advantages .container, .comparison .container {
    max-width: 1200px;
    overflow: hidden;
}

.advantages-title, .comparison-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    text-align: left;
    color: #ffffff;
    margin-bottom: 48px;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
}

/* Advantage Cards */
.advantages-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
}

.advantage-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.advantage-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 40, 140, 0) 0%, rgba(80, 20, 100, 0.35) 100%);
    z-index: 2;
}

.advantage-card-content {
    position: relative;
    z-index: 3;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #e91e8c;
    line-height: 1.1;
}

.advantage-card-text {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    min-height: 68px;
}

/* Gradient-only card (no background image) */
.advantage-card.advantage-card-gradient {
    background: linear-gradient(135deg, rgba(100, 30, 120, 0.9) 0%, rgba(60, 15, 80, 0.95) 100%);
}

.advantage-card.advantage-card-gradient .advantage-card-overlay {
    display: none;
}

/* Comparison Section */
.comparison-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    line-height: 0.98;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
}

.comparison-table-wrapper {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
    margin-bottom: 80px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 14px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table thead th {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    padding-top: 25px;
    padding-bottom: 18px;
    line-height: 1.3;
}

.comparison-table thead th.highlight {
    color: #ffffff;
    font-weight: 700;
    font-style: normal;
}

.comparison-table thead th:first-child {
    width: 30%;
}

.comparison-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table tbody tr:last-child td {
    padding-bottom: 25px;
}

.comparison-table td.feature-name {
    text-align: right;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    padding-right: 22px;
}

/* Comparison Icons */
.icon-x {
    color: #e74c3c;
    font-size: 20px;
    font-weight: 700;
}

.icon-half {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #f4c542 50%, transparent 50%);
    border-radius: 50%;
    position: relative;
}

.icon-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f4c542;
    border-radius: 50%;
}

.icon-check {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.4);
}

/* Responsive - Advantages */
@media (max-width: 968px) {
    .advantages-title {
        font-size: 32px;
        margin-bottom: 36px;
        margin-left: 0;
        margin-right: 0;
    }

    .advantages-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 60px;
        margin-left: 0;
        margin-right: 0;
    }

    .comparison-title {
        font-size: 32px;
        margin-left: 0;
        margin-right: 0;
    }

    .comparison-table-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .advantage-card {
        min-height: 260px;
    }

    .advantage-card-title {
        font-size: 28px;
    }

    .comparison-table thead th {
        font-size: 13px;
        padding: 16px 8px;
    }

    .comparison-table td.feature-name {
        font-size: 13px;
        padding-right: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 8px;
    }
}

@media (max-width: 640px) {
    .advantages {
        padding: 60px 20px 80px;
    }

    .advantages-title {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .advantage-card {
        min-height: 220px;
    }

    .advantage-card-title {
        font-size: 24px;
    }

    .advantage-card-text {
        font-size: 14px;
    }

    .comparison-title {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .comparison-table-wrapper {
        overflow-x: hidden;
    }

    .comparison-table {
        width: 100%;
        min-width: 0;
    }

    .comparison-table thead th {
        font-size: 10px;
        padding: 10px 4px;
        line-height: 1.2;
    }

    .comparison-table thead th:first-child {
        width: 28%;
    }

    .comparison-table td.feature-name {
        font-size: 11px;
        padding-right: 4px;
        padding-left: 8px;
        white-space: normal;
        line-height: 1.3;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 4px;
    }

    .icon-x {
        font-size: 14px;
    }

    .icon-half,
    .icon-check {
        width: 14px;
        height: 14px;
    }
}

/* Tools Section */
.tools {
    background: #0f0f0f;
    padding: 20px 20px;
    overflow-x: hidden;
}

.tools .container {
    max-width: 1200px;
    overflow: hidden;
}

.tools-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    text-align: left;
    color: #ffffff;
    margin-bottom: 48px;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 140px);
    gap: 20px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    margin-right: 80px;
}

.tool-card {
    aspect-ratio: 1 / 1;
    background-color: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15%;
}

.tool-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tools-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 40px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    font-style: italic;
}

/* Responsive - Tools */
@media (max-width: 1100px) {
    .tools-grid {
        grid-template-columns: repeat(4, 100px);
    }
}

@media (max-width: 968px) {
    .tools-title {
        font-size: 32px;
        margin-left: 0;
        margin-right: 0;
    }

    .tools-grid {
        grid-template-columns: repeat(5, 1fr);
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .tools-more {
        margin-left: 0;
    }

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

}

@media (max-width: 640px) {
    .tools {
        padding: 60px 20px;
        overflow-x: hidden;
    }

    .tools-title {
        font-size: 36px;
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 100%;
        width: 100%;
    }

    .tool-card {
        min-width: 0;
        width: 100%;
    }

    .tools-more {
        font-size: 16px;
        margin-top: 32px;
    }
}

/* About Section */
.about {
    background: #0f0f0f;
    padding: 100px 20px 40px 20px;
    overflow-x: hidden;
}

.about .container {
    max-width: 1200px;
    overflow: hidden;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.98;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 32px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
    max-width: 600px;
}

.about .container p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px - 27px);
    max-width: 820px;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid rgba(233, 30, 140, 0.4);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.about .container p:hover {
    border-left-color: rgba(233, 30, 140, 0.8);
    color: rgba(255, 255, 255, 0.95);
}

.about .container p:last-of-type {
    margin-bottom: 40px;
}

.about-divider {
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    margin-left: calc((100% - 1200px) / 2 + (1200px - 50px) / 4 - 160px);
}

/* Footer */
footer {
    background: #0f0f0f;
    padding: 20px 20px;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ================================
   Gift Page Styles
   ================================ */

/* Gift Navigation */
.gift-nav {
    background: 
        linear-gradient(90deg, rgba(43, 0, 107, 0.75) 0%, rgba(64, 1, 30, 0.75) 100%),
        url('https://readocracy-img.s3.us-east-1.amazonaws.com/thinkingthrough/landing/ttai-top-bg.png');
    background-size: cover, cover;
    background-position: center center, center 16%;
    padding: 20px 0;
}

.gift-nav .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.gift-nav .back-link:hover {
    color: #e91e8c;
}

.gift-nav .back-link svg {
    transition: transform 0.2s ease;
}

.gift-nav .back-link:hover svg {
    transform: translateX(-4px);
}

/* Gift Hero */
.gift-hero {
    background: 
        linear-gradient(90deg, rgba(43, 0, 107, 0.75) 0%, rgba(64, 1, 30, 0.75) 100%),
        url('https://readocracy-img.s3.us-east-1.amazonaws.com/thinkingthrough/landing/ttai-top-bg.png');
    background-size: cover, cover;
    background-position: center center, center 16%;
    padding: 60px 20px 80px;
    text-align: center;
}

.gift-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.98;
    color: #ffffff;
}

/* Gift Options Section */
.gift-options-section,
.landing-page {
    background: 
        linear-gradient(90deg, rgba(43, 0, 107, 0.75) 0%, rgba(64, 1, 30, 0.75) 100%),
        url('https://readocracy-img.s3.us-east-1.amazonaws.com/thinkingthrough/landing/ttai-top-bg.png');
    background-size: cover, cover;
    background-position: center center, center 50%;
}

.gift-options-section {
    padding: 0 20px 100px;
}

.gift-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Gift Option Card */
.gift-option {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.15);
}

.gift-option.featured {
    border-color: rgba(233, 30, 140, 0.4);
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

/* Save Badge */
.gift-option-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a0a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Gift Option Title */
.gift-option-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
    padding-right: 20px;
}

/* Gift Pricing */
.gift-pricing {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.gift-price {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    position: relative;
}

.gift-price-original {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.gift-price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Gift Details */
.gift-details {
    flex: 1;
    margin-bottom: 32px;
}

.gift-details-intro {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.gift-details-intro b {
    color: #ffffff;
    font-weight: 600;
}

/* Gift List Heading */
.gift-list-heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e91e8c;
    margin-bottom: 12px;
    margin-top: 24px;
}

.gift-list-heading:first-of-type {
    margin-top: 0;
}

.gift-list-heading.prepaid {
    color: #ffd700;
}

/* Gift Course List */
.gift-course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gift-course-list li {
    position: relative;
    padding-left: 28px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gift-course-list li:last-child {
    border-bottom: none;
}

/* Checkmark - Mini carousel icon style */
.gift-course-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #e91e8c 0%, #7d2d9e 100%);
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gift-course-list li::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 15px;
    width: 7px;
    height: 4px;
    border: 2px solid #ffffff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

/* Selectable List Styling (empty boxes for "choose from" options) */
.gift-course-list.selectable li::before {
    background: transparent;
    border: 2px solid rgba(233, 30, 140, 0.5);
}

.gift-course-list.selectable li::after {
    display: none;
}

.gift-course-list.selectable li.selected::before {
    background: linear-gradient(135deg, #e91e8c 0%, #7d2d9e 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.gift-course-list.selectable li.selected::after {
    display: block;
}

.gift-course-list.selectable li {
    transition: opacity 0.3s ease;
}

.gift-course-list.selectable li.selected {
    color: rgba(255, 255, 255, 1);
}

/* Prepaid List Styling */
.gift-course-list.prepaid li {
    color: rgba(255, 215, 0, 0.9);
}

.gift-course-list.prepaid li::before {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

.gift-course-list.prepaid li::after {
    border-color: #1a0a2e;
}

/* Gift Curation & Personalization Boxes */
.gift-curation-box,
.gift-personalization-box {
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.gift-curation-box {
    background: linear-gradient(135deg, rgba(60, 20, 80, 0.6) 0%, rgba(40, 15, 60, 0.6) 100%);
    border: 1px solid rgba(100, 60, 120, 0.3);
}

.gift-personalization-box {
    background: linear-gradient(135deg, rgba(30, 40, 90, 0.6) 0%, rgba(50, 30, 80, 0.6) 100%);
    border: 1px solid rgba(80, 90, 140, 0.3);
}

.gift-curation-text,
.gift-personalization-text {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.gift-curation-label,
.gift-personalization-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Gift Actions */
.gift-actions {
    text-align: center;
    margin-top: auto;
}

.gift-cta-button {
    background: linear-gradient(90deg, #ff008c 0%, #920089 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
}

.gift-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.4);
}

.gift-offer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

.gift-asterisk {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    vertical-align: top;
    margin-left: -4px;
    line-height: 1;
    position: relative;
    top: -15px;
    left: 1px;
}

.gift-asterisk-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Show mobile menu elements */
    .menu-toggle {
        display: flex;
    }

    .nav-mobile {
        display: flex;
    }

    .nav-desktop {
        display: none;
    }

    /* Hide desktop CTA buttons, show mobile ones */
    .cta-buttons-desktop {
        display: none;
    }

    .cta-buttons-mobile {
        display: flex;
        gap: 16px;
        padding: 0 20px;
        margin-top: 40px;
    }

    .cta-buttons-mobile .cta-button {
        height: 60px;
        flex: 1;
    }

    .app-store-btn {
        height: 60px;
        font-size: 16px;
        padding: 14px 16px;
    }

    .app-store-btn img {
        width: 20px;
        height: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .device-mockup {
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
    }

    .content-column {
        height: auto;
        gap: 40px;
        order: -1;
        padding-right: 0;
    }

    .main-heading {
        font-size: 32px;
    }

    .hero-title {
        font-size: 32px;
        margin-left: 0;
    }

    .hero .cta-button {
        margin-left: 0;
        min-width: 320px;
    }

    .hero-cta-row {
        margin-left: 0;
        flex-wrap: wrap;
    }

    .hero-offer-text {
        font-size: 12px;
        font-weight: 300;
    }

    .about-title {
        font-size: 32px;
        margin-left: 0;
    }

    .about-subtitle {
        font-size: 20px;
        margin-left: 0;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .about .container p {
        font-size: 16px;
        margin-left: -19px;
        max-width: 100%;
        padding-left: 16px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .about-divider {
        margin-left: 0;
    }

    /* Icon row - make scrollable on small screens */
    .icon-row {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-bottom: 8px;
    }

    .icon-row::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }

    .icon img {
        width: 25px;
    }

    .partners-heading {
        margin-left: 0;
    }

    /* Gift Page - Tablet */
    .gift-hero-title {
        font-size: 32px;
    }

    .gift-options {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .gift-option {
        padding: 32px 24px;
    }

    .gift-option-title {
        font-size: 20px;
    }

    .gift-price {
        font-size: 40px;
    }
}

@media (max-width: 640px) {

    .hero {
        padding: 80px 20px;
    }

    .hero .cta-button {
        margin-bottom: 0;
        width: auto;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-offer-text {
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .holiday-badge {
        position: static;
        margin-bottom: 20px;
        font-size: 12px;
        padding: 7px 12px;
    }

    .main-heading {
        font-size: 31px;
    }

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

    .about .container p {
        font-size: 15px;
        margin-left: -16px;
        padding-left: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        border-left-width: 2px;
    }

    .device-mockup {
        max-width: 100%;
    }

    .cta-button {
        padding: 0 32px;
        font-size: 16px;
        height: 60px;
        line-height: 60px;
        display: block;
        width: 100%;
        margin-bottom: 40px;
    }

    .cta-button svg {
        position: relative;
        top: 2px;
    }

    .cta-buttons-mobile {
        display: block;
    }

    .btn-row {
        flex-direction: column;
        gap: 12px;
    }

    .app-store-btn {
        width: 100%;
        height: 60px;
        font-size: 16px;
        padding: 14px 20px;
    }

    .partners-logos {
        gap: 24px;
    }

    .partners-text {
        padding-left: 20px;
    }

    .partner-logo {
        font-size: 18px;
    }

    .logo-ai {
        font-size: 28px;
    }

    .content-column {
        padding-right: 0;
    }

    .nav-mobile {
        width: 100%;
    }

    .content-grid {
        padding-top: 20px;
    }

    /* Gift Page - Mobile */
    .gift-hero {
        padding: 40px 20px 60px;
    }

    .gift-hero-title {
        font-size: 36px;
    }

    .gift-options-section {
        padding-bottom: 60px;
    }

    .gift-option {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .gift-option-badge {
        font-size: 12px;
        padding: 6px 12px;
        top: -12px;
        right: 16px;
    }

    .gift-option-title {
        font-size: 18px;
        padding-right: 0;
    }

    .gift-pricing {
        margin-bottom: 24px;
    }

    .gift-price {
        font-size: 36px;
    }

    .gift-price-original {
        font-size: 20px;
    }

    .gift-details-intro {
        font-size: 14px;
    }

    .gift-course-list li {
        font-size: 13px;
        padding-left: 26px;
    }

    .gift-course-list li::before {
        width: 16px;
        height: 16px;
        top: 10px;
        border-radius: 4px;
        border-width: 1px;
    }

    .gift-course-list li::after {
        left: 5px;
        top: 16px;
        width: 6px;
        height: 3px;
    }

    .gift-cta-button {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* App Store Modal */
.app-store-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.app-store-modal.open {
    display: flex;
}

.app-store-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.app-store-modal-content {
    position: relative;
    background: linear-gradient(180deg, rgba(40, 15, 60, 0.98) 0%, rgba(20, 5, 30, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.app-store-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}

.app-store-modal-close:hover {
    background: rgba(233, 30, 140, 0.3);
}

.app-store-modal-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

.app-store-modal-close span:first-child {
    transform: rotate(45deg);
}

.app-store-modal-close span:last-child {
    transform: rotate(-45deg);
}

.app-store-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.app-store-modal-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.app-store-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-store-modal-buttons .app-store-btn {
    height: 60px;
    font-size: 18px;
}

/* Make credentials cards clickable */
.credentials-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.credentials-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(233, 30, 140, 0.2);
}

@media (max-width: 640px) {
    .app-store-modal-content {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .app-store-modal-title {
        font-size: 24px;
    }

    .app-store-modal-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .app-store-modal-buttons .app-store-btn {
        height: 56px;
        font-size: 16px;
    }
}