/* ============================================
   MONEY HUNTER - Modern Precision Engineering
   Electronic Component Manufacturing - 2026
   ============================================ */

/* Font Loading - Fallback for when Google Fonts fails */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #e8eaed;
    background: #0a0e11;
    background-image: 
        radial-gradient(at 20% 30%, rgba(34, 197, 94, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(138, 144, 153, 0.03) 0px, transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: #a8b1bb;
    font-size: 1.0625rem;
    line-height: 1.8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a {
    color: #22C55E;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: inherit;
}

a:hover {
    color: #e8c298;
}

ul {
    list-style: none;
}

button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

input, textarea, select {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

/* ============================================
   NAVIGATION HEADER
   ============================================ */
.site-header {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #22C55E, transparent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 4px;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    position: relative;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: #22C55E;
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
    box-shadow: 0 1px 2px rgba(34, 197, 94, 0.3);
}

.mobile-menu-toggle.active {
    background: rgba(34, 197, 94, 0.15);
}

.mobile-menu-toggle.active span {
    background: #e8c298;
}

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

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

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

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

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #a8b1bb;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22C55E, transparent);
    transition: width 0.4s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

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

/* ============================================
   HERO SECTION (Home Page)
   ============================================ */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #020617 0%, #0b1120 50%, #020617 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.6;
}

.geometric-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(34, 197, 94, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center;
    position: relative;
    animation: patternPulse 20s ease-in-out infinite;
}

@keyframes patternPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

.geometric-pattern::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.geometric-pattern::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(138, 144, 153, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-5deg); }
    75% { transform: translate(15px, 15px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 3rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title br {
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a8b1bb;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider (home hero) */
.hero-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 3rem 2rem;
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slider-dots {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-dot.active {
    background: #ffffff;
    border-color: #ffffff;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: #0a0e11;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #22C55E;
    border-color: #22C55E;
    border-width: 2px;
}

.btn-secondary:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    border-width: 2px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #22C55E;
    color: #22C55E;
    transform: translateY(-3px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #22C55E;
    margin-bottom: 1.25rem;
    padding: 0.625rem 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 2px;
}

.section {
    padding: 7rem 0;
    position: relative;
}

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

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a2229 0%, #0f1419 100%);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22C55E, transparent);
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    transform: translateY(-50%);
    border-radius: 50%;
}

.page-hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.page-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #22C55E;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.page-hero p {
    font-size: 1.375rem;
    color: #a8b1bb;
    line-height: 1.8;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.intro-section {
    background: linear-gradient(180deg, #0f1419 0%, #0a0e11 100%);
    padding: 8rem 0;
}

.intro-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.375rem;
    line-height: 2;
    color: #c5cdd5;
    font-weight: 400;
}

/* ============================================
   CAPABILITIES GRID
   ============================================ */
.capabilities-section {
    background: #0f1419;
    position: relative;
    padding: 8rem 0;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
}

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

.capability-card {
    background: rgba(26, 34, 41, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #22C55E, #16A34A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.capability-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.capability-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.capability-icon {
    font-size: 3rem;
    font-weight: 900;
    color: #22C55E;
    margin-bottom: 1.5rem;
    font-family: 'Inter', monospace;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.capability-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.capability-card p {
    color: #a8b1bb;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
    background: linear-gradient(180deg, #0f1419 0%, #0a0e11 100%);
    padding: 8rem 0;
}

.why-content h2 {
    margin-bottom: 3rem;
    font-size: 3rem;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.why-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(26, 34, 41, 0.4);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #22C55E, #16A34A);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(34, 197, 94, 0.3);
}

.why-marker {
    display: none;
}

.why-item h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.why-item p {
    color: #a8b1bb;
    line-height: 1.9;
    font-size: 1.0625rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #1a2229 0%, #0f1419 100%);
    text-align: center;
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22C55E, transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.375rem;
    color: #a8b1bb;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTENT SECTIONS (About Page)
   ============================================ */
.content-section {
    background-color: #1e2529;
}

.content-main {
    max-width: 900px;
}

.content-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
}

.content-main p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #b8bdc1;
    margin-bottom: 1.5rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    background-color: #2a3439;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

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

.value-card {
    background-color: rgba(30, 37, 41, 0.4);
    padding: 2rem;
    border-left: 3px solid #22C55E;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #f5f7fa;
}

.value-card p {
    color: #8a9099;
    line-height: 1.7;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.commitment-section {
    background-color: #1e2529;
}

.commitment-content {
    max-width: 900px;
}

.commitment-text h2 {
    margin-bottom: 1.5rem;
}

.commitment-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #b8bdc1;
}

/* ============================================
   SERVICES LAYOUT
   ============================================ */
.services-section {
    background: #0a0e11;
    padding: 8rem 0;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-block {
    background: linear-gradient(135deg, rgba(26, 34, 41, 0.6) 0%, rgba(15, 20, 25, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 4rem 3.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #22C55E, #16A34A);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateX(8px);
}

.service-block:hover::before {
    transform: scaleY(1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22C55E 0%, #e8c298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', monospace;
    line-height: 1;
    flex-shrink: 0;
}

.service-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0;
    font-weight: 800;
}

.service-description {
    font-size: 1.1875rem;
    line-height: 2;
    color: #c5cdd5;
    margin-bottom: 2.5rem;
}

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

.service-features li {
    padding: 1rem 0 1rem 2.5rem;
    color: #a8b1bb;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.6;
    background: rgba(34, 197, 94, 0.03);
    border-left: 3px solid rgba(34, 197, 94, 0.3);
    padding-left: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0.5rem;
    color: #22C55E;
    font-weight: 700;
    font-size: 1.25rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(180deg, #0a0e11 0%, #0f1419 100%);
    padding: 8rem 0;
}

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

.pricing-card {
    background: linear-gradient(135deg, rgba(26, 34, 41, 0.8) 0%, rgba(15, 20, 25, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, #22C55E, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card.featured {
    border-color: #22C55E;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(26, 34, 41, 0.9) 100%);
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.07);
}

.pricing-card:hover::before,
.pricing-card:hover::after {
    opacity: 1;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: #0a0e11;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
    z-index: 10;
    white-space: nowrap;
    border-radius: 2px;
}

.pricing-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-tier {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
}

.pricing-description {
    color: #a8b1bb;
    font-size: 1rem;
    line-height: 1.7;
}

.pricing-price {
    padding: 2rem 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
}

.price-label {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22C55E 0%, #e8c298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-features h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #22C55E;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.pricing-features li {
    padding-left: 2rem;
    color: #a8b1bb;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-cta {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.pricing-cta .btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 0.9375rem;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-section {
    background-color: #2a3439;
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(30, 37, 41, 0.4);
}

.comparison-table thead {
    background-color: rgba(34, 197, 94, 0.1);
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #f5f7fa;
    border-bottom: 2px solid #22C55E;
    font-size: 0.9375rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(138, 144, 153, 0.15);
    color: #b8bdc1;
    font-size: 0.9375rem;
}

.comparison-table tbody tr:hover {
    background-color: rgba(34, 197, 94, 0.05);
}

.comparison-table td:first-child {
    font-weight: 500;
    color: #f5f7fa;
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    background-color: #1e2529;
}

.info-content h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
}

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

.info-item h4 {
    color: #22C55E;
    margin-bottom: 0.75rem;
}

.info-item p {
    color: #8a9099;
    line-height: 1.7;
}

/* ============================================
   LEGAL SECTIONS
   ============================================ */
.legal-section {
    background-color: #1e2529;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    color: #f5f7fa;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #22C55E;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #b8bdc1;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.legal-content li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #8a9099;
    position: relative;
    line-height: 1.7;
}

.legal-content li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #22C55E;
    font-weight: 700;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 144, 153, 0.2);
    text-align: center;
}

.legal-footer p {
    color: #8a9099;
    font-size: 0.9375rem;
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
    background-color: #2a3439;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #22C55E, transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f5f7fa;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-tagline {
    color: #8a9099;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: #b8bdc1;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #22C55E;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(138, 144, 153, 0.15);
    text-align: center;
}

.footer-bottom p {
    color: #8a9099;
    font-size: 0.875rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    background: #0a0e11;
    padding: 6rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #a8b1bb;
    margin-bottom: 3rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(26, 34, 41, 0.4);
    padding: 2rem;
    border-left: 4px solid #22C55E;
    transition: all 0.4s ease;
}

.info-card:hover {
    background: rgba(26, 34, 41, 0.6);
    transform: translateX(8px);
}

.info-icon {
    font-size: 2rem;
    font-weight: 900;
    color: #22C55E;
    margin-bottom: 1rem;
    font-family: 'Inter', monospace;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.info-card p {
    color: #a8b1bb;
    line-height: 1.7;
    margin: 0;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(26, 34, 41, 0.6) 0%, rgba(15, 20, 25, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #22C55E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 14, 17, 0.6);
    border: 1px solid rgba(168, 177, 187, 0.2);
    color: #ffffff;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22C55E;
    background: rgba(10, 14, 17, 0.8);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(168, 177, 187, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #a8b1bb;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #22C55E;
    text-decoration: underline;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    width: 100%;
    margin-top: 0.5rem;
}

/* Additional Info Section */
.additional-info-section {
    background: linear-gradient(180deg, #0f1419 0%, #0a0e11 100%);
    padding: 6rem 0;
}

.additional-info-content {
    text-align: center;
}

.additional-info-content h2 {
    font-size: 2.75rem;
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: #0a0e11;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.process-step h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.process-step p {
    color: #a8b1bb;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
}

/* Desktop to Laptop */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 6rem 0;
    }

    .page-hero {
        padding: 6rem 0 4rem;
    }

    .page-hero h1 {
        font-size: 3.25rem;
    }
    
    .capabilities-section,
    .why-section,
    .services-section {
        padding: 6rem 0;
    }

    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .capability-card {
        padding: 2.5rem 2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    
    .pricing-card {
        padding: 3rem 2.5rem;
    }

    .why-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-item {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 3rem;
    }
    
    .service-number {
        font-size: 3.5rem;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-block {
        padding: 3rem 2.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.375rem;
    }

    p {
        font-size: 1rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }
    
    .logo {
        order: 2;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 17, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 1.25rem 0;
        font-size: 1rem;
        color: #ffffff;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: #22C55E;
        padding-left: 1rem;
        transition: padding-left 0.3s ease;
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Hero */
    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }

    /* Page Hero */
    .page-hero {
        padding: 4.5rem 0 3.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.125rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    /* Intro Section */
    .intro-text {
        font-size: 1.125rem;
    }

    /* Capabilities */
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .capability-card {
        padding: 2rem 1.75rem;
    }
    
    .capability-icon {
        font-size: 2.5rem;
    }

    /* Why Section */
    .why-content h2 {
        font-size: 2.25rem;
    }
    
    .why-list {
        gap: 1.5rem;
    }

    .why-item {
        padding: 1.75rem;
    }
    
    .why-item h4 {
        font-size: 1.25rem;
    }

    /* Services */
    .services-layout {
        gap: 3rem;
    }

    .service-block {
        padding: 2.5rem 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-header h2 {
        font-size: 1.75rem;
    }
    
    .service-description {
        font-size: 1.0625rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-features li {
        font-size: 0.9375rem;
        padding: 1rem;
        padding-left: 1.5rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-tier {
        font-size: 1.625rem;
    }

    .price-label {
        font-size: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.9375rem;
    }

    .pricing-cta .btn {
        padding: 1.125rem;
    }

    /* Comparison Table */
    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.875rem 0.75rem;
    }

    /* Info Grid */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .value-card {
        padding: 1.75rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 6rem 0;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Contact Page */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Buttons */
    .btn {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }

    /* Legal Content */
    .legal-content h2 {
        font-size: 1.625rem;
    }
    
    .legal-content h3 {
        font-size: 1.125rem;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .nav-links {
        gap: 1.25rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .page-hero h1 {
        font-size: 2.125rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    /* Navigation - Make it scrollable on very small screens */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .nav-links::-webkit-scrollbar {
        height: 2px;
    }
    
    .nav-links::-webkit-scrollbar-thumb {
        background: rgba(34, 197, 94, 0.3);
    }

    /* Hero */
    .hero {
        min-height: 75vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

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

    /* Page Hero */
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-label {
        font-size: 0.6875rem;
        padding: 0.5rem 1rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Capabilities */
    .capabilities-section {
        padding: 5rem 0;
    }

    .capability-card {
        padding: 1.75rem 1.5rem;
    }
    
    .capability-icon {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .capability-card h3 {
        font-size: 1.25rem;
    }

    /* Why Section */
    .why-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .why-item {
        padding: 1.5rem;
    }
    
    .why-item h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .why-item p {
        font-size: 0.9375rem;
    }

    /* Services */
    .service-block {
        padding: 2rem 1.5rem;
    }
    
    .service-header {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-header h2 {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-features li {
        padding: 0.875rem 0 0.875rem 1.5rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Pricing */
    .pricing-section {
        padding: 5rem 0;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-badge {
        font-size: 0.6875rem;
        padding: 0.5rem 1.25rem;
    }

    .pricing-tier {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }
    
    .pricing-description {
        font-size: 0.9375rem;
    }

    .pricing-price {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .price-label {
        font-size: 1.375rem;
    }
    
    .pricing-features h4 {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-features li {
        font-size: 0.875rem;
        padding-left: 1.75rem;
    }

    /* Comparison Table - Horizontal scroll */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 600px;
        font-size: 0.8125rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.625rem;
    }

    /* Values */
    .value-card {
        padding: 1.5rem;
    }

    /* CTA */
    .cta-section {
        padding: 5rem 0;
    }

    .cta-content h2 {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    /* Footer */
    .site-footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-logo {
        font-size: 1.125rem;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.8125rem;
    }

    /* Info Grid */
    .info-content h2 {
        font-size: 1.625rem;
    }

    /* Legal */
    .legal-content {
        font-size: 0.9375rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .legal-content h3 {
        font-size: 1.0625rem;
        margin-top: 1.25rem;
    }
    
    .legal-content p {
        font-size: 0.9375rem;
    }
    
    .legal-content li {
        font-size: 0.875rem;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-hero h1 {
        font-size: 1.625rem;
    }
    
    .nav-links a {
        font-size: 0.6875rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .hero-background,
    .geometric-pattern,
    .btn,
    .site-footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    h1, h2, h3, h4, h5, h6, p, li {
        color: black;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
