/* === BASE STYLES === */
:root {
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --dark: #111827;
    --dark-medium: #1f2937;
    --dark-light: #374151;
    --light: #f9fafb;
    --light-medium: #f3f4f6;
    --light-dark: #e5e7eb;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
    --text-dark: #111827;
    --text-medium: #4b5563;
    --text-light: #9ca3af;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    color: var(--light);
}

h3 {
    font-size: 1.75rem;
    color: var(--light);
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-medium);
}

a {
    text-decoration: none;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

ul {
    list-style: none;
}

/* === BACKGROUND ANIMATION === */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles div {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    bottom: -150px;
    animation: animate 25s linear infinite;
}

.circles div:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    animation-duration: 20s;
    background: rgba(79, 70, 229, 0.1);
}

.circles div:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
    background: rgba(139, 92, 246, 0.1);
}

.circles div:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
    animation-duration: 15s;
    background: rgba(16, 185, 129, 0.1);
}

.circles div:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
    background: rgba(79, 70, 229, 0.1);
}

.circles div:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    animation-duration: 11s;
    background: rgba(139, 92, 246, 0.1);
}

.circles div:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
    animation-duration: 25s;
    background: rgba(16, 185, 129, 0.1);
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
        border-radius: 50%;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* === NAVIGATION === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.75rem 5%;
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--light);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.logo-highlight {
    margin-left: 5px;
    color: var(--light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background-color: var(--light);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

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

.nav-links li {
    margin: 0 1.2rem;
}

.nav-links a {
    color: var(--light-medium);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.download-btn::after {
    display: none !important;
}

/* === HERO SECTION === */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 5% 5rem;
    min-height: 100vh;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--light-medium);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    display: inline-block;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    color: white;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #232838, #1a1f2c);
    border-radius: 40px;
    padding: 10px;
    position: relative;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 2px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
    transform: perspective(800px) rotateY(-15deg) rotateX(10deg);
    transition: all 0.6s ease;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
    border-radius: 40px 40px 0 0;
    pointer-events: none;
}

.phone-mockup:hover {
    transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.auth-app {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.auth-header {
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 40px;
    color: var(--light);
}

.auth-code {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.digit {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light);
    margin: 0 2px;
    width: 30px;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.auth-timer {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-ring__circle {
    transform-origin: center;
    transform: rotate(-90deg);
    stroke-dasharray: 326.56;
    stroke-dashoffset: 0;
    animation: countdown 30s linear infinite;
}

@keyframes countdown {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 326.56;
    }
}

.timer-count {
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    animation: countdownText 30s linear infinite;
}

@keyframes countdownText {
    0% {
        content: '30';
    }

    3.33% {
        content: '29';
    }

    6.66% {
        content: '28';
    }

    /* etc for all seconds */
    96.66% {
        content: '1';
    }

    100% {
        content: '0';
    }
}

.auth-accounts {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    overflow-y: auto;
    flex-grow: 1;
}

.account {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.account.active {
    background: rgba(79, 70, 229, 0.2);
    border-left: 3px solid var(--primary);
}

.account-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.account-name {
    color: var(--light);
    font-weight: 500;
}

/* === FEATURES SECTION === */
.features {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, var(--dark) 0%, var(--dark-medium) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    background: rgba(31, 41, 55, 0.8);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-light);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--light);
}

.feature-card p {
    color: var(--light-medium);
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, var(--dark-medium) 0%, var(--dark) 100%);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 15px;
    height: calc(100% - 30px);
    width: 2px;
    background: rgba(79, 70, 229, 0.3);
}

.step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 2rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
    position: relative;
}

.step-content {
    padding-top: 0.5rem;
    flex: 1;
}

.step-content h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--light-medium);
}

/* === DOWNLOAD SECTION === */
.download {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, var(--dark) 0%, var(--dark-medium) 100%);
}

.download-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.4);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-content {
    flex: 1;
    padding: 4rem;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.app-store,
.web-store,
.play-store {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--light);
    min-width: 180px;
}

.app-store:hover,
.web-store:hover,
.play-store:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.app-store i,
.web-store i,
.play-store i {
    font-size: 2rem;
    margin-right: 10px;
}

.app-buttons span {
    display: flex;
    flex-direction: column;
}

.app-buttons small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.download-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.download-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* === PAGE HEADER === */
.page-header {
    padding: 10rem 5% 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--dark) 0%, var(--dark-medium) 100%);
}

.page-header h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-medium);
}

/* === ABOUT CONTENT === */
.about-content {
    padding: 4rem 5% 6rem;
    background: linear-gradient(to bottom, var(--dark-medium) 0%, var(--dark) 100%);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    background: rgba(31, 41, 55, 0.4);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.about-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-socials a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* === LEGAL CONTENT === */
.legal-content {
    padding: 4rem 5% 6rem;
    background: linear-gradient(to bottom, var(--dark-medium) 0%, var(--dark) 100%);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.4);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.legal-section ul {
    margin: 1rem 0 2rem 1.5rem;
    list-style-type: disc;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--light-medium);
}

/* === FOOTER === */
footer {
    background: var(--dark);
    padding: 4rem 5% 1rem;
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h4 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === ANIMATIONS === */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1s forwards;
}

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

.delay-2 {
    animation-delay: 0.4s;
}

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        padding-bottom: 2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin-bottom: 4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .download-container {
        flex-direction: column;
    }

    .download-content {
        padding: 3rem 2rem;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.5s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .phone-mockup {
        transform: none;
    }

    .legal-container {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .steps-container::before {
        display: none;
    }

    .about-feature {
        flex-direction: column;
    }

    .about-feature-icon {
        margin-bottom: 1.5rem;
        margin-right: 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}