/* --- Variables --- */
:root {
    --color-black: #050505;
    --color-white: #f0f0f0;
    --color-red: #ff2a2a;
    --color-dark-gray: #1a1a1a;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    font-size: 16px;
    background-color: var(--color-black);
    color: var(--color-white);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    /* Fade in on load */
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Typography Utilities --- */
.display-text {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
}

.h1 {
    font-size: clamp(4rem, 15vw, 14rem);
}

.h2 {
    font-size: clamp(2.5rem, 10vw, 7rem);
}

.h3 {
    font-size: clamp(2rem, 5vw, 4rem);
}

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

.text-uppercase {
    text-transform: uppercase;
}

/* --- Colors --- */
.text-red {
    color: var(--color-red);
}

.bg-red {
    background-color: var(--color-red);
}

.bg-white {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* --- Common UI --- */
.btn-primary {
    display: inline-block;
    padding: 1.5rem 3rem;
    border: 1px solid var(--color-white);
    border-radius: 100px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-black);
    border-color: var(--color-white);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAA5OTkAAABMTExERERmZmYzMzMyMjJ4D30OAAAACHRSTlMAMwA3M3YzM3YzIzv7AAAAjklEQVQ4y6XQwQ3AIAxE0Q9QsQMjVAL2X6UFYAQP0g2QcmsfPzLzEvF7C/D4rQW4/NYCTH5rASa/tQCT31qAyW8twOS3FmDyWwsw+a0FmPzWAkx+awEmv7UAk99agMlvLcDktxZg8lsLMPmtBZj81gJMfmsBJr+1AJPfWoDJby3A5LcWYPJbCzD5rQWY/NYCTH5rAR8A6wG1/s7z1wAAAABJRU5ErkJggg==');
}

/* --- Custom Cursor --- */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--color-red);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, width 0.3s, height 0.3s;
}

.cursor-hover .cursor {
    transform: translate(-50%, -50%) scale(0);
}

.cursor-hover .cursor-follower {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* --- Philosophy Section Styles (Moved from inline) --- */
.philosophy-section {
    min-height: 120vh;
    background-color: var(--color-black);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10vh 0;
}

.philo-container {
    width: 100%;
}

.line {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 15rem);
    line-height: 0.85;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
    padding: 0 2rem;
    display: flex;
}

.line:nth-child(odd) {
    justify-content: flex-start;
}

.line:nth-child(even) {
    justify-content: flex-end;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    transition: all 0.5s;
}

.line:hover .outline-text {
    -webkit-text-stroke: 2px var(--color-red);
    color: var(--color-red);
    opacity: 1;
}

.dominate-wrapper {
    margin-top: 10vh;
    text-align: center;
    position: relative;
    mix-blend-mode: difference;
}

.dominate-text {
    font-family: var(--font-display);
    font-size: clamp(5rem, 20vw, 30rem);
    line-height: 0.8;
    color: var(--color-white);
    opacity: 0.1;
    letter-spacing: -10px;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 5%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

/* Mobile Responsiveness for Philosophy */
@media (max-width: 768px) {
    .philo-container {
        width: 120%;
        /* Expand container width */
        margin-left: 0;
        /* Start from the left edge */
        margin-right: -20%;
        /* Allow overflow to the right */
    }

    .line {
        font-size: clamp(2.5rem, 15vw, 5rem);
        /* Reduced min size from 3.5rem */
        /* Adjust font size to be large but readable */
        padding: 0 1rem;
        white-space: nowrap;
        justify-content: flex-start !important;
        /* Force left alignment */
        text-align: left;
    }

    .line:nth-child(odd),
    .line:nth-child(even) {
        justify-content: flex-start !important;
        /* Override alternating align */
    }

    .dominate-text {
        font-size: 15vw;
        /* Reduced from 20vw */
        /* Massive background text for mobile */
    }

    .philosophy-section {
        padding: 5vh 0;
        /* Reduced padding */
    }
}

/* --- Hero Section Styles (Refactored) --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.main-title .line {
    display: block;
    overflow: hidden;
}

.main-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-white);
    opacity: 0.5;
    display: block;
}

.hero-meta {
    position: absolute;
    bottom: -30vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-red) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
    z-index: 1;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.25;
    }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--color-white);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }

    50% {
        transform-origin: top;
        transform: scaleY(1);
    }

    51% {
        transform-origin: bottom;
        transform: scaleY(1);
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

/* --- Marquee Section Styles (Refactored) --- */
.marquee-section {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 6;
    transform: rotate(-2deg) scale(1.05);
    /* Slight tilt for dynamism */
    margin: 5rem 0;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-black);
}

.marquee-track span {
    padding-right: 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Services Section Styles (Refactored) --- */
.services-section {
    padding: 10rem 3rem;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.service-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.service-item:hover {
    padding-left: 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.service-item .num {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-red);
    margin-right: 2rem;
}

.service-item h3 {
    flex-grow: 1;
    transition: letter-spacing 0.4s;
    font-size: var(--h2-size, 4rem);
    /* Fallback */
}

.service-item:hover h3 {
    letter-spacing: 2px;
}

.service-item .desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    opacity: 0.7;
    margin-right: 2rem;
    max-width: 300px;
    text-align: right;
}

.service-item .arrow {
    font-size: 2rem;
    transform: rotate(-45deg);
    transition: transform 0.4s;
}

.service-item:hover .arrow {
    transform: rotate(0);
    color: var(--color-red);
}

/* --- Process Section Styles (Refactored) --- */
.process-section {
    padding: 10rem 3rem;
    position: relative;
    background: var(--color-black);
}

.timeline {
    position: relative;
    max-width: 1400px;
    margin: 5rem auto 0;
}

.line-center {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-red);
    transform: translateX(-50%);
    opacity: 0.3;
}

.step {
    padding: 2rem;
    position: relative;
    width: 50%;
    margin-bottom: 4rem;
}

.step.left {
    left: 0;
    text-align: right;
    border-right: 1px solid transparent;
}

.step.right {
    left: 50%;
    text-align: left;
}

.step.center {
    left: 10%;
    width: 80%;
    /* Massive width increase */
    margin-bottom: 0;
}

/* Force Global Deploy Title AND Description to one line */
.step.center h3,
.step.center p {
    white-space: nowrap;
}

.step .content {
    background: #0a0a0a;
    padding: 1.5rem;
    /* Reduced padding from 2rem */
    border: 1px solid #222;
    transition: transform 0.3s;
    /* Ensure content doesn't break out visually */
    min-width: fit-content;
}

.step .content p {
    margin-top: 0;
    line-height: 1.1;
}

.step:hover .content {
    transform: scale(1.05);
    border-color: var(--color-red);
}

.step h3 {
    margin-bottom: 0.25rem;
    /* Further reduced from 0.5rem */
    font-size: 2rem;
    line-height: 0.9;
}

/* --- Deployment Section Styles (Refactored) --- */
.deployment-section {
    padding: 10rem 3rem;
    background: var(--color-white);
    color: var(--color-black);
    overflow: hidden;
}

.deployment-section .row {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.col-text {
    flex: 1;
}

.col-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.desc {
    font-size: 1.25rem;
    margin-top: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.store-links {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-badge {
    padding: 1rem 2rem;
    border: 1px solid var(--color-black);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.store-badge:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.phone-mockup {
    width: 300px;
    height: 550px;
    border: 4px solid var(--color-black);
    border-radius: 40px;
    padding: 10px;
    position: absolute;
    background: white;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-10deg);
    z-index: 2;
}

.phone-mockup.offset {
    z-index: 1;
    transform: rotate(5deg) translate(50px, 20px);
    border-color: var(--color-red);
}

.screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

/* --- Mobile / Tablet Overrides (Aggressive Size Reduction) --- */
/* --- Mobile / Tablet Overrides --- */

/* Tablet Specific (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Philosophy */
    .philosophy-section .line {
        font-size: clamp(3rem, 10vw, 6rem);
        justify-content: center;
    }

    .dominate-text {
        font-size: 15vw;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    /* Process Tablet */
    .step.center {
        width: 80%;
        left: 10%;
    }

    /* Deployment */
    .deployment-section .row {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .deployment-section .h2 {
        font-size: 4rem;
        /* Restored larger size */
        white-space: normal;
        /* Allow wrap naturally if needed, but size is big */
    }

    .col-text {
        flex: 2;
        /* Give more width to text column */
        padding-right: 1rem;
    }

    .col-visual {
        flex: 1;
        justify-content: flex-end;
        transform: scale(0.8);
    }

    .store-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        max-width: 100%;
        /* Allow full width */
    }

    .desc {
        max-width: 100%;
        /* Allow full width */
    }
}

/* Mobile Specific (Max 768px) */
@media (max-width: 768px) {

    /* Hero */
    .hero-section {
        height: 60vh;
    }

    .h1 {
        font-size: clamp(2rem, 10vw, 4rem) !important;
    }

    .main-title .line {
        line-height: 1;
    }

    /* Marquee */
    .marquee-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .marquee-track {
        font-size: 2rem;
    }

    /* Services */
    .services-section {
        padding: 3rem 1.5rem;
    }

    .service-item {
        flex-direction: column;
        padding: 1.5rem 0;
    }

    .service-item h3 {
        font-size: 2rem !important;
    }

    .service-item .desc {
        text-align: left;
        font-size: 0.9rem;
        margin-right: 0;
    }

    .service-item .num {
        margin-bottom: 0.5rem;
    }

    /* Philosophy - Aggressive Reduction */
    .philosophy-section {
        padding: 2rem 0;
        min-height: auto;
        /* Override global 120vh */
    }

    .philo-container {
        width: 100%;
        margin: 0;
    }

    .line {
        font-size: clamp(1.5rem, 8vw, 3rem);
        /* Significantly reduced max/min */
        padding: 0 1rem;
        white-space: nowrap;
        justify-content: center !important;
        height: auto;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .dominate-wrapper {
        margin-top: 2rem;
    }

    .dominate-text {
        font-size: 15vw;
        opacity: 0.1;
        width: 100%;
        left: 0;
        text-align: center;
        transform: none;
    }

    /* Process */
    .process-section {
        padding: 3rem 1.5rem;
    }

    .timeline {
        margin-top: 2rem;
    }

    .line-center {
        left: 20px;
    }

    .step {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding: 0 0 0 3rem;
        margin-bottom: 1.5rem;
    }

    .step h3 {
        font-size: 1.25rem;
    }

    /* Deployment */
    .deployment-section {
        padding: 3rem 1.5rem;
    }

    .deployment-section .row {
        flex-direction: column;
        gap: 1rem;
    }

    .col-text {
        order: 1;
        z-index: 5;
    }

    .col-visual {
        order: 2;
        width: 100%;
        height: 350px;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        transform: scale(1);
    }

    .phone-mockup {
        width: 160px;
        height: 300px;
        border-width: 3px;
        border-radius: 25px;
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    }

    .phone-mockup.offset {
        transform: rotate(5deg) translate(30px, 10px);
    }

    .desc {
        font-size: 1rem;
    }

    .store-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
}
/* --- Footer Styles (Refactored) --- */
.site-footer {
    padding: 10rem 3rem 3rem;
    background-color: var(--color-black);
    color: var(--color-white);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-top {
    text-align: center;
    margin-bottom: 5rem; 
}
.footer-cta-title {
    font-size: clamp(2rem, 5vw, 5rem); 
    line-height: 1.1;
}
.site-footer .outline-text {
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    color: transparent;
    transition: all 0.5s;
}
.site-footer:hover .outline-text {
    color: var(--color-white);
}
.cta-wrapper {
    margin-top: 3rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col h4 {
    color: var(--color-red);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; top: 0; 
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: #111;
    margin: 10% auto; 
    padding: 3rem; 
    border: 1px solid #333;
    width: 90%; max-width: 500px;
    position: relative;
    box-shadow: 0 0 50px rgba(255,42,42,0.1);
}
.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1.5rem; top: 1rem;
}
.close-modal:hover { color: white; }
.modal input, .modal textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #050505;
    border: 1px solid #333;
    color: white;
    font-family: inherit;
}
.modal textarea { resize: vertical; }
.full-width { width: 100%; }
.margin-top-1 { margin-top: 1rem; }
.margin-bottom-2 { margin-bottom: 2rem; }

/* Footer Mobile */
@media (max-width: 768px) {
    .site-footer { padding: 5rem 1.5rem 2rem; }
    .footer-bottom { flex-direction: column; gap: 3rem; align-items: flex-start; }
    .footer-top h2 { line-height: 1; }
    
    /* Ensure Button Visibility on Mobile */
    .btn-primary {
        background-color: transparent; /* Ensure no conflict */
        color: var(--color-white) !important; /* Force white text */
        border-color: var(--color-white);
    }
}

/* --- Premium Multi-Step Modal Styles --- */

.premium-modal {
    background-color: #000;
    border: 1px solid #1a1a1a;
    box-shadow: 0 0 100px rgba(255, 42, 42, 0.05); /* Reduced glow */
    max-width: 700px;
    width: 95%;
    padding: 3rem;
    position: relative;
    border-radius: 12px;
}

.multi-step-form {
    position: relative;
    min-height: 400px;
}

/* Progress Indicator */
.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.steps-indicator {
    display: flex;
    gap: 1rem;
}

.step-dot {
    width: 10px;
    height: 10px;
    background: #222;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--color-red);
    box-shadow: 0 0 10px var(--color-red);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Input Styles */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group.full {
    grid-column: span 2;
}

.input-group label, .input-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-left: 0.5rem;
}

.premium-modal input, .premium-modal textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s;
}

.premium-modal input:focus, .premium-modal textarea:focus {
    outline: none;
    border-bottom-color: var(--color-red);
}

.input.error {
    border-bottom-color: red;
}

/* Selection Grid (Cards) */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.selection-grid.small-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.selection-card {
    position: relative;
    cursor: pointer;
}

.selection-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
    height: 100%;
}

.selection-card:hover .card-content {
    border-color: #444;
    background: #111;
}

.selection-card input:checked + .card-content {
    border-color: var(--color-red);
    background: rgba(255, 42, 42, 0.1);
    color: var(--color-red);
}

/* Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.form-actions.right {
    justify-content: flex-end;
}

.btn-text {
    background: none;
    border: none;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

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

.arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.next-step:hover .arrow {
    transform: translateX(5px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .input-grid {
        grid-template-columns: 1fr;
    }
    .input-group.full {
        grid-column: auto;
    }
    .selection-grid {
        grid-template-columns: 1fr 1fr;
    }
    .premium-modal {
        padding: 2rem 1.5rem;
        margin: 5% auto;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}
