/* ==========================================
   جواهر ERP — Landing Page Styles (Emerald)
   ========================================== */

/* === CSS Variables === */
:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --emerald-light: #34d399;
    --deep-green: #022c22;
    --deep-green-2: #064e3b;
    --dark: #111827;
    --dark-lighter: #1F2937;
    --gray-bg: #F9FAFB;
    --gray-50: #f9fafb;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .10);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, .15);
    --shadow-emerald: 0 8px 30px rgba(16, 185, 129, .25);
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 2.5rem;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body.landing-body {
    font-family: 'Cairo', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

/* ==========================================
   NAVBAR
   ========================================== */
.landing-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(2, 44, 34, 0.90);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: var(--transition);
}

.landing-nav.scrolled {
    background: rgba(2, 44, 34, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--emerald);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.brand-icon-svg {
    width: 20px;
    height: 20px;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}

.brand-accent {
    color: var(--emerald);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.nav-btn-ghost {
    background: transparent;
    color: var(--white);
}

.nav-btn-ghost:hover {
    color: var(--emerald);
}

.nav-btn-primary {
    background: var(--emerald);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, .2);
}

.nav-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: var(--shadow-emerald);
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.4rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    background: radial-gradient(circle at top right, var(--deep-green-2) 0%, var(--deep-green) 100%);
    overflow: hidden;
    padding: 10rem 1.5rem 4rem;
    text-align: center;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, .1);
    color: var(--emerald);
    border: 1px solid rgba(16, 185, 129, .2);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--emerald);
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, .6);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Shared button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, .2);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-emerald);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, .05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Dashboard Mockup */
.hero-mockup {
    max-width: 72rem;
    margin: 5rem auto 0;
    position: relative;
}

.mockup-frame {
    background: var(--gray-800);
    border-radius: var(--radius-2xl);
    padding: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .05);
}

.mockup-img {
    width: 100%;
    border-radius: 0.875rem;
    opacity: 0.9;
    border: 1px solid rgba(255, 255, 255, .1);
    display: block;
}

/* Floating card */
.floating-card {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    display: none;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

@media (min-width: 768px) {
    .floating-card {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
}

.floating-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(16, 185, 129, .2);
    color: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-label {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, .5);
}

.floating-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* ==========================================
   TRUST / STATS SECTION
   ========================================== */
.trust-section {
    padding: 4rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.trust-title {
    text-align: center;
    color: var(--gray-400);
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.hero-stat .stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--emerald);
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* ==========================================
   SECTION SHARED
   ========================================== */
.section {
    padding: 6rem 1.5rem;
}

.section-dark {
    background: var(--deep-green);
    color: var(--white);
}

.section-white {
    background: var(--white);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: rgba(16, 185, 129, .1);
    color: var(--emerald);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, .6);
}

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

/* ==========================================
   FEATURES SECTION (2-col layout)
   ========================================== */
.features-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.features-text .section-label {
    margin-bottom: 1.5rem;
}

.features-text .section-title {
    margin-bottom: 2rem;
}

.section-subtitle-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.features-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.check-item {
    display: flex;
    gap: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(16, 185, 129, .1);
    color: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.check-svg {
    width: 16px;
    height: 16px;
}

.check-item p {
    color: var(--gray-700);
    font-weight: 700;
}

/* Card UI Mockup */
.features-card-ui {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-3xl);
    border: 1px solid var(--gray-100);
}

.card-ui-inner {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.card-ui-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-ui-header h4 {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-900);
}

.card-ui-action {
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
}

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

.chart-bars {
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}

.chart-bar {
    width: 100%;
    background: var(--emerald);
    border-radius: 6px 6px 0 0;
    transition: var(--transition);
}

.chart-bar-light {
    background: rgba(16, 185, 129, .4);
}

.card-ui-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
}

.card-ui-stat {
    background: var(--gray-50);
    padding: 0.75rem;
    border-radius: 8px;
}

.card-ui-stat-label {
    font-size: 0.625rem;
    color: var(--gray-400);
}

.card-ui-stat-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
}

.card-ui-stat-value.accent {
    color: var(--emerald);
}

/* ==========================================
   PLATFORM SECTION
   ========================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-2xl);
    transition: var(--transition);
    text-align: center;
}

.platform-card:hover {
    background: rgba(255, 255, 255, .05);
}

.platform-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.platform-card:hover .platform-icon {
    background: var(--emerald);
    color: var(--white);
}

.platform-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.platform-card p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.8;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    border: 2px solid rgba(16, 185, 129, .3);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--emerald);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-dark), var(--emerald), var(--emerald-light));
}

.pricing-badge {
    display: inline-block;
    background: var(--emerald);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--emerald);
}

.pricing-price .currency {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 600;
}

.pricing-trial {
    font-size: 0.95rem;
    color: var(--emerald);
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: right;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li .check {
    color: var(--emerald);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.05rem;
}

/* ==========================================
   STEPS SECTION
   ========================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 16.66%;
    left: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light), var(--emerald));
    opacity: 0.25;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.25rem;
    background: var(--emerald);
    color: var(--white);
    box-shadow: var(--shadow-emerald);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-card {
    max-width: 56rem;
    margin: 0 auto;
    background: var(--deep-green);
    padding: 3rem;
    border-radius: 2.5rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(16, 185, 129, .2);
    border-radius: 50%;
    filter: blur(3rem);
}

.cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.cta-card>p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2.5rem;
    position: relative;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, .05);
    padding: 0.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
}

@media (min-width: 640px) {
    .cta-form {
        flex-direction: row;
    }
}

.cta-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    outline: none;
    font-size: 0.875rem;
    color: var(--white);
    font-family: 'Cairo', sans-serif;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.cta-form .btn-primary {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-xl);
}

.cta-login {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 1.5rem;
    position: relative;
}

.cta-login a {
    color: var(--emerald);
    text-decoration: none;
}

.cta-login a:hover {
    text-decoration: underline;
}

/* ==========================================
   FOOTER
   ========================================== */
.landing-footer {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 6rem 1.5rem 3rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-900);
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.75rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--emerald);
}

.footer-links-col h5 {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col ul li a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links-col ul li a:hover {
    color: var(--emerald);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 500;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.625rem;
    color: var(--gray-400);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gray-900);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }

    .nav-actions.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        left: 0;
        background: rgba(2, 44, 34, .98);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        gap: 0.6rem;
    }

    .nav-actions.open .nav-btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 8rem 1rem 3rem;
    }

    .hero-mockup {
        margin-top: 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .features-layout {
        gap: 3rem;
    }

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

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

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

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

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

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

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

    .section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-brand .brand-text {
        font-size: 1.05rem;
    }

    .nav-brand .brand-icon {
        width: 28px;
        height: 28px;
    }
}