/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Enhanced Ares Market Color Palette */
    --background: #0a0a0a;
    --background-secondary: #111111;
    --background-tertiary: #1a1a1a;
    --foreground: #f5f5f5;
    --card: #1a1a1a;
    --card-hover: #222222;
    --card-foreground: #f5f5f5;
    --primary: #8B0000;
    --primary-light: #A52A2A;
    --primary-dark: #660000;
    --primary-foreground: #f5f5f5;
    --secondary: #696969;
    --secondary-foreground: #f5f5f5;
    --muted: #2a2a2a;
    --muted-foreground: #a0a0a0;
    --accent: #CD853F;
    --accent-light: #DAA520;
    --accent-dark: #B8860B;
    --accent-foreground: #0a0a0a;
    --destructive: #DC143C;
    --border: #333333;
    --border-light: #444444;
    --radius: 0.625rem;
    --radius-lg: 1rem;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    --glow-primary: 0 0 20px rgba(139, 0, 0, 0.4);
    --glow-accent: 0 0 20px rgba(205, 133, 63, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--background) 0%, var(--background-tertiary) 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(205, 133, 63, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--background) 0%, var(--background-secondary) 25%, var(--background-tertiary) 50%, var(--background-secondary) 75%, var(--background) 100%);
    background-size: 400% 400%, 400% 400%, 100% 100%;
    animation: marbleShift 12s ease-in-out infinite;
    position: relative;
}

.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(205, 133, 63, 0.02) 2px,
            rgba(205, 133, 63, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-secondary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 2px solid var(--background-secondary);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
    box-shadow: var(--glow-accent);
}

/* Enhanced Animations */
@keyframes marbleShift {
    0%, 100% { 
        background-position: 0% 50%, 100% 50%, 0% 0%; 
        transform: scale(1);
    }
    25% { 
        background-position: 50% 0%, 50% 100%, 0% 0%; 
        transform: scale(1.01);
    }
    50% { 
        background-position: 100% 50%, 0% 50%, 0% 0%; 
        transform: scale(1);
    }
    75% { 
        background-position: 50% 100%, 50% 0%, 0% 0%; 
        transform: scale(1.01);
    }
}

@keyframes shieldPulse {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(1) rotate(0deg); 
        filter: blur(0px);
    }
    25% { 
        opacity: 0.4; 
        transform: scale(1.05) rotate(1deg); 
        filter: blur(1px);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.1) rotate(0deg); 
        filter: blur(0px);
    }
    75% { 
        opacity: 0.4; 
        transform: scale(1.05) rotate(-1deg); 
        filter: blur(1px);
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--glow-primary); }
    50% { box-shadow: var(--glow-accent); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Utility Classes */
.spartan-glow {
    box-shadow: var(--glow-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spartan-glow:hover {
    box-shadow: var(--glow-accent);
    transform: translateY(-2px);
}

.shield-glow {
    position: relative;
    overflow: hidden;
}

.shield-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle, rgba(205, 133, 63, 0.1) 0%, transparent 60%);
    animation: shieldPulse 8s ease-in-out infinite;
    z-index: 1;
}

.shield-glow > * {
    position: relative;
    z-index: 2;
}

.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--accent);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-scale {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hover-scale:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.glass-effect {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-border {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient-accent);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

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

.glow-text {
    text-shadow: 
        0 0 10px var(--accent),
        0 0 20px var(--accent),
        0 0 30px var(--accent);
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Enhanced Navigation */
.terminal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(205, 133, 63, 0.3);
    transition: all 0.3s ease;
}

.terminal-nav::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0.6;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 5rem;
    width: 150px;
    filter: drop-shadow(0 0 10px rgba(205, 133, 63, 0.3));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 15px rgba(205, 133, 63, 0.5));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.nav-item:hover::before,
.nav-item.active::before {
    left: 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(205, 133, 63, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gradient-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Enhanced Hero Section */
.hero-section {
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(205, 133, 63, 0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--foreground);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 
        0 0 20px rgba(139, 0, 0, 0.5),
        0 0 40px rgba(139, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Enhanced Sections */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.alt-bg {
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%),
        radial-gradient(circle at 80% 20%, rgba(205, 133, 63, 0.03) 0%, transparent 50%);
    border-top: 1px solid rgba(205, 133, 63, 0.1);
    border-bottom: 1px solid rgba(205, 133, 63, 0.1);
}

.section-container {
    max-width: 96rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Enhanced About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--foreground);
    line-height: 1.7;
    opacity: 0.95;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--gradient-dark);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(205, 133, 63, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.05;
    transition: left 0.4s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(205, 133, 63, 0.3));
}

.feature-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-size: 1.1rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.about-image .image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
}

.about-image .image:hover {
    transform: scale(1.02);
    box-shadow: 
        var(--shadow-xl),
        0 0 40px rgba(205, 133, 63, 0.2);
}

/* Enhanced Features Section */
.features-section {
    padding: 6rem 2rem;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%),
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.03) 0%, transparent 50%);
    border-top: 1px solid rgba(139, 0, 0, 0.1);
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

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

.feature-item {
    background: var(--gradient-dark);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(205, 133, 63, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 0;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}

.feature-item .feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.feature-item .feature-desc {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    opacity: 0.9;
}

/* Enhanced Mirrors Section */
.mirrors-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.mirrors-description {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.mirrors-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.mirror-card {
    background: var(--gradient-dark);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(205, 133, 63, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

.mirror-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.05;
    transition: left 0.3s ease;
}

.mirror-card:hover::before {
    left: 0;
}

.mirror-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.mirror-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mirror-card a:hover {
    color: var(--accent-light);
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

/* Enhanced Ordering Section */
.ordering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ordering-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--foreground);
    line-height: 1.7;
    opacity: 0.95;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gradient-dark);
    border-radius: var(--radius);
    border: 1px solid rgba(205, 133, 63, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-accent);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: var(--glow-accent);
}

.ordering-image .image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
}

.ordering-image .image:hover {
    transform: scale(1.02);
    box-shadow: 
        var(--shadow-xl),
        0 0 40px rgba(139, 0, 0, 0.2);
}

/* Enhanced Security Section */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--foreground);
    line-height: 1.7;
    opacity: 0.95;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-feature {
    background: var(--gradient-dark);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
    transition: left 0.3s ease;
}

.security-feature:hover::before {
    left: 0;
}

.security-feature:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.security-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.3));
}

.security-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-size: 1.1rem;
}

.security-desc {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.security-image .image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
}

.security-image .image:hover {
    transform: scale(1.02);
    box-shadow: 
        var(--shadow-xl),
        0 0 40px rgba(139, 0, 0, 0.2);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(205, 133, 63, 0.2);
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        padding: 6rem 1rem 4rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .about-grid,
    .ordering-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .security-grid .security-image {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .hero-section {
        padding: 5rem 1rem 3rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .step-item {
        padding: 0.75rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .security-feature {
        padding: 1rem;
    }
}

