/* ===== CSS VARIABLES ===== */
:root {
    /* Split-Complementary Color Scheme */
    --primary-color: #FF6B35; /* Orange-Red */
    --primary-light: #FF8A5B;
    --primary-dark: #E55A2B;
    --secondary-color: #35D4FF; /* Blue */
    --secondary-light: #5BDDFF;
    --secondary-dark: #2BC0E5;
    --accent-color: #B835FF; /* Purple */
    --accent-light: #C55BFF;
    --accent-dark: #A42BE5;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(184, 53, 255, 0.9) 100%);
    
    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes - Adaptive Typography */
    --text-xs: clamp(0.75rem, 0.69rem + 0.31vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.81rem + 0.31vw, 1rem);
    --text-base: clamp(1rem, 0.93rem + 0.31vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.38vw, 1.3125rem);
    --text-xl: clamp(1.25rem, 1.16rem + 0.44vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.36rem + 0.69vw, 1.875rem);
    --text-3xl: clamp(1.875rem, 1.67rem + 1.03vw, 2.375rem);
    --text-4xl: clamp(2.25rem, 1.98rem + 1.34vw, 2.99rem);
    --text-5xl: clamp(3rem, 2.59rem + 2.06vw, 4rem);
    
    /* Spacing */
    --space-xs: clamp(0.5rem, 0.46rem + 0.19vw, 0.5625rem);
    --space-sm: clamp(1rem, 0.93rem + 0.31vw, 1.125rem);
    --space-md: clamp(1.5rem, 1.36rem + 0.69vw, 1.875rem);
    --space-lg: clamp(2rem, 1.79rem + 1.03vw, 2.5rem);
    --space-xl: clamp(3rem, 2.59rem + 2.06vw, 4rem);
    --space-2xl: clamp(4rem, 3.38rem + 3.09vw, 5.5rem);
    
    /* Layout */
    --container-max-width: 1200px;
    --container-padding: var(--space-sm);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 600;
}

h3 {
    font-size: var(--text-3xl);
    font-weight: 600;
}

h4 {
    font-size: var(--text-2xl);
    font-weight: 500;
}

h5 {
    font-size: var(--text-xl);
    font-weight: 500;
}

h6 {
    font-size: var(--text-lg);
    font-weight: 500;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover,
a:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    gap: var(--space-xs);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
}

button,
input[type='submit'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow);
    min-height: 48px;
}

button:hover,
input[type='submit']:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
    margin: 0 auto;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-content h3 {
    margin-bottom: var(--space-sm);
}

.card-content p {
    margin-bottom: var(--space-sm);
    flex: 1;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: var(--z-fixed);
    transition: var(--transition-base);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.logo h2 {
    font-size: var(--text-2xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition-base);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius);
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--gray-100);
    text-decoration: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition-base);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.mobile-nav-menu {
    list-style: none;
    padding: var(--space-md);
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: var(--space-sm);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-sm);
    color: var(--gray-800);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.mobile-nav-link:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--text-2xl);
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--white);
    opacity: 0.9;
}

.hero-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    color: var(--white);
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MEDIA SECTION ===== */
.media-section {
    background: var(--gray-50);
}

.media-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.gallery-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-base);
}

.gallery-thumbnails {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: 1fr;
}

.thumbnail {
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow);
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.thumbnail img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.media-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .media-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

.pricing-section .section-title {
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-card.featured .card {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.pricing-card .card-content {
    color: var(--white);
}

.pricing-card h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.price {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: var(--space-md);
}

.features {
    list-style: none;
    margin: var(--space-md) 0;
    text-align: left;
}

.features li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-md);
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member .card-image {
    height: 300px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.team-member .card-content {
    text-align: center;
}

.team-member h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    position: relative;
}

.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.success-section .container {
    position: relative;
    z-index: 2;
}

.success-section .section-title {
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.success-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.success-story .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-story .card-content {
    color: var(--white);
}

.success-story h3 {
    color: var(--accent-light);
    margin-bottom: var(--space-md);
}

.success-story p {
    color: var(--white);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.author {
    color: var(--secondary-light);
    font-weight: 500;
    margin-top: auto;
}

/* ===== CLIENTELE SECTION ===== */
.clientele-section {
    background: var(--gray-50);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-card .card-image {
    height: 180px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card .card-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.clientele-description {
    text-align: center;
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
    background: var(--white);
}

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

.resources-content > p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    color: var(--gray-700);
    line-height: 1.7;
}

.resources-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.resource-item {
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    background: var(--gray-50);
    transition: var(--transition-base);
}

.resource-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.resource-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.info-item {
    margin-bottom: var(--space-lg);
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.info-item p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===== FORMS ===== */
.form {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-section h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-section ul li a {
    color: var(--gray-300);
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-links a {
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--gray-600);
    border-radius: var(--border-radius);
    color: var(--gray-300);
    font-weight: 500;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    margin: 0;
}

/* ===== SUCCESS PAGE STYLES ===== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
}

.success-content h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.success-content p {
    color: var(--white);
    opacity: 0.9;
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
}

/* ===== PRIVACY & TERMS PAGES ===== */
.content-page {
    padding-top: 100px;
}

.content-page .container {
    max-width: 800px;
}

.content-page h1 {
    margin-bottom: var(--space-lg);
}

.content-page h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.content-page h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--gray-800);
}

.content-page ul,
.content-page ol {
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.content-page li {
    margin-bottom: var(--space-xs);
}

/* ===== READ MORE LINKS ===== */
.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
    gap: var(--space-xs);
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: none;
    transform: translateX(4px);
}

.read-more::after {
    content: '→';
    transition: var(--transition-base);
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --container-padding: var(--space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
        --space-2xl: clamp(3rem, 2rem + 5vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section {
        padding: var(--space-lg) 0;
    }
    
    .pricing-grid,
    .team-grid,
    .success-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }
    
    .card-content {
        padding: var(--space-sm);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Focus styles for accessibility */
.btn:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.nav-link:focus,
.mobile-nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    }
    
    .card {
        border: 1px solid var(--gray-300);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    button {
        display: none;
    }
    
    .section {
        break-inside: avoid;
    }
    
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
}