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

:root {
    --primary-color: #be123c;
    /* Rose 700 - Deep & Elegant */
    --primary-light: #fda4af;
    /* Rose 300 */
    --primary-dark: #881337;
    /* Rose 900 */
    --accent-color: #d97706;
    /* Amber 600 - Gold touches */

    --bg-dark: #1c1917;
    /* Warm Black */
    --bg-dark-overlay: rgba(28, 25, 23, 0.85);
    --bg-white: #ffffff;
    --bg-soft: #fff1f2;
    /* Very light rose tint */

    --text-main: #292524;
    /* Warm Gray 800 */
    --text-light: #57534e;
    /* Warm Gray 600 */
    --text-white: #fafaf9;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;

    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;

    --header-height: 90px;
    --container-width: 1400px;
    /* Wider for modern feel */
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-offset {
    padding-top: calc(var(--header-height) + 20px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-white {
    color: var(--text-white);
}

.text-primary {
    color: var(--primary-color);
}

/* --- NAVIGATION: Floating Island Style --- */
.landing-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    /* Pill shape */
    z-index: 1000;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-nav.scrolled {
    top: 0rem !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px -10px rgb(0 0 0 / 32%);
}

.nav-inner {
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    /* Ensure above mobile menu */
    position: relative;
}

.locale-switcher summary {
    display: flex;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1001;
    padding: 6rem 2rem 2rem;
    /* Top padding to account for toggle */
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.nav-badge {
    margin-left: 0.5rem;
    padding: 0.15rem 0.45rem;
    border-radius: 9999px;
    background: var(--bg-soft);
    color: var(--primary-color);
    border: 1px solid var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.nav-btn-link {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--text-main);
    position: relative;
}

.nav-btn-link:hover {
    color: var(--primary-color);
}

/* --- HERO SECTION: Immersive Dark Theme --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-white);
}

.faq-hero {
    height: 45vh;
    min-height: 360px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.3) saturate(1.1);
    /* Cinematic look */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark) 5%, transparent 60%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    /* Elegant, not bulky */
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    font-family: var(--font-sans);
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.5em;
    /* Smaller, bolder contrast */
    display: block;
    letter-spacing: 4px;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.hero-title .hero-kicker {
    font-size: clamp(1.25rem, 3.5vw, 4.5rem);
    font-weight: 500;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* Unique Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(190, 18, 60, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(190, 18, 60, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* --- ROLE SELECTION: Split Interactive Cards --- */
.roles-section {
    padding: 0;
    position: relative;
}

.roles-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.role-panel {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s;
    border-right: 1px solid rgb(0 0 0 / 23%);
    background: var(--bg-white);
    overflow: hidden;
    cursor: pointer;
}

.role-panel:last-child {
    border-right: none;
}

.role-panel:hover {
    flex: 1.5;
    /* Expands on hover */
    background: #be123c;
}

.role-panel:hover .role-title,
.role-panel:hover .role-desc,
.role-panel:hover .btn-role {
    color: white;
}

.role-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.role-panel:hover::before {
    transform: scaleX(1);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.role-panel:hover .role-icon {
    transform: scale(1.2) rotate(-5deg);
    color: white;
}

.role-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.role-desc {
    color: var(--text-light);
    max-width: 300px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.btn-role {
    padding: 0.8rem 2rem;
    border: 1px solid var(--text-main);
    border-radius: 50px;
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
}

.role-panel:hover .btn-role {
    background: var(--text-main);
    color: white;
}

/* --- FEATURES: Zig-Zag Layout with Overlap --- */
.features-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: var(--bg-white);
    position: relative;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
    position: relative;
}

.feature-visual-box {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    border: solid 30px #e1204a;
    z-index: 1;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.feature-row:nth-child(even) .feature-visual-box {
    transform: rotate(5deg);
}

.feature-row:hover .feature-visual-box {
    transform: rotate(0);
}

.feature-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.4;
}

.feature-visual-image {
    height: 200px;
}

.feature-icon-lg {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.feature-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.feature-card-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    padding: 1.5rem;
    background: var(--bg-soft);
}

.feature-card-body {
    padding: 1.5rem;
}

.feature-card-title {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.feature-card-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-image {
        height: 140px;
        padding: 1rem;
    }
}

.features-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 5rem;
}

.features-section .pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.features-section .pricing-card.featured {
    border-color: var(--primary-color);
}

.features-section .pricing-badge {
    align-self: center;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-section .pricing-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.features-section .pricing-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.features-section .pricing-period {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.features-section .pricing-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.features-section .pricing-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
}

.features-section .pricing-features li {
    padding: 0.35rem 0 0.35rem 2rem;
    font-size: 0.95rem;
}



@media (max-width: 768px) {
    .features-section .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- GLOBAL SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- STEPS: Connected Flow --- */
.steps-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    color: white;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.steps-section .section-title {
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    text-align: left;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--primary-light);
    line-height: 1;
}

.hero-title .hero-logo {
    display: inline-block;
    width: auto;
    max-width: clamp(220px, 52vw, 500px);
    height: auto;
}



.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* --- PRICING: Glass Cards --- */
.pricing-section {
    padding: 8rem 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23be123c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 20px 50px 7px rgb(0 0 0 / 42%);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}


.pricing-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin: 1.5rem 0 0.5rem;
}

.pricing-period {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    color: var(--text-light);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- FAQ: Accordion Style (Visual) --- */
.faq-section {
    padding: 6rem 0;
    background: #e11d48;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-light);
}

/* --- CTA: Big Impact --- */
.cta-section {
    padding-bottom: 8rem;
    padding-top: 8rem;
    text-align: center;
    background: white;
}

/* CTA Button */
.btn-cta {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(190, 18, 60, 0.4);
    border: none;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(190, 18, 60, 0.6);
    color: white;
}

/* Role Modal - Modern Editorial Style */
.role-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1999;
}

.role-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.role-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    width: 95%;
    max-width: 900px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.role-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s;
}

.role-modal-close:hover {
    color: var(--primary-color);
}

.role-modal-header {
    text-align: center;
    padding: 3rem 2rem 1.5rem;
}

.role-modal-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.role-modal-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: none;
    padding: 0 2rem 3rem;
}

.role-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.role-card:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.role-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.role-card .role-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    transition: color 0.3s;
}

.role-card:hover .role-title {
    color: var(--primary-color);
}

.role-card .role-desc {
    font-family: var(--font-sans);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {

    /* Typography Reductions */
    h1,
    .hero-title {
        font-size: 2.5rem !important;
        /* Force smaller title */
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .feature-title {
        font-size: 1.75rem;
    }

    /* Hero Buttons Stacking */
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Modal Reductions */
    .role-modal-content {
        max-width: 90%;
        width: 90%;
        border-radius: 1rem;
        margin: 0 auto;
    }

    .role-modal-header {
        padding: 1.5rem 1rem 1rem;
        text-align: center;
    }

    .role-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .role-modal-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .role-modal-subtitle {
        font-size: 0.85rem;
    }

    .role-grid {
        grid-template-columns: 1fr;
        border-top: none;
        padding: 0 1rem 1.5rem;
        gap: 0.75rem;
    }

    .role-card {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        padding: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0.75rem;
        background: white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
        min-height: auto;
        /* Reset min-height if set */
    }

    .role-card:hover,
    .role-card:active {
        background: white;
        border-color: var(--primary-color);
        transform: translateX(2px);
    }

    .role-card:last-child {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .role-card .role-text {
        flex: 1;
    }

    .role-card .role-title {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
        font-family: var(--font-sans);
        font-weight: 600;
        color: var(--text-main);
    }

    .role-card:hover .role-title {
        color: var(--primary-color);
    }

    .role-card .role-desc {
        font-size: 0.8rem;
        line-height: 1.3;
        color: var(--text-light);
        margin-bottom: 0;
        /* Remove margin for compact view */
    }

    /* Add subtle arrow for mobile */
    .role-card::after {
        content: '→';
        font-size: 1.2rem;
        color: var(--primary-color);
        opacity: 0.5;
        margin-left: 0.5rem;
        font-weight: 300;
    }

    /* Feature Section Mobile */
    .feature-row {
        flex-direction: column !important;
        /* Force column stack */
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .feature-visual-box {
        padding: 1rem;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-row {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }

    .feature-visual-box {
        transform: rotate(0) !important;
    }

    .feature-item-icon {
        margin: 0 auto 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Reduced from 3rem/clamp */
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        /* Full width on mobile */
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .landing-nav {
        top: 1rem;
        width: 95%;
    }

    .section-title {
        font-size: 2rem;
        /* Reduced from 3rem */
    }

    .role-modal-content {
        max-width: 90%;
        width: 90%;
        border-radius: 1rem;
        margin: 0 auto;
    }

    .role-modal-header {
        padding: 1.5rem 1rem 1rem;
        text-align: center;
        /* Center align for better mobile look */
    }

    .role-modal-close {
        top: 0.5rem;
        right: 0.75rem;
        font-size: 1.75rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .role-modal-title {
        font-size: 1.5rem;
        /* Reduced */
        margin-bottom: 0.25rem;
    }

    .role-modal-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .role-grid {
        grid-template-columns: 1fr;
        border-top: none;
        padding: 0 1rem 1.5rem;
        gap: 0.75rem;
    }

    .role-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 1rem;
        /* Reduced padding */
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.75rem;
        background: white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    }

    .role-card:hover,
    .role-card:active {
        background: var(--bg-soft);
        transform: none;
        /* Disable shift on mobile */
    }

    .role-card:last-child {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .role-card .role-text {
        flex: 1;
        padding-right: 0.5rem;
    }

    .role-card .role-title {
        font-size: 1rem;
        /* Reduced */
        margin-bottom: 0.1rem;
        font-family: var(--font-sans);
        font-weight: 600;
        color: var(--text-main);
    }

    .role-card:hover .role-title {
        color: var(--primary-color);
    }

    .role-card .role-desc {
        font-size: 0.75rem;
        /* Reduced */
        line-height: 1.3;
        color: var(--text-light);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .role-card::after {
        content: '→';
        font-size: 1.2rem;
        color: var(--primary-color);
        opacity: 0.5;
        margin-left: 0.5rem;
        font-weight: 300;
    }
}

@media (max-width: 768px) {
    .hero-title .hero-logo {
        max-width: clamp(180px, 72vw, 360px);
    }
}