/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --secondary-color: #333333;
    --accent-color: #666666;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-light: #666666;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-dark: #000000;
    --border-color: #d2d2d7;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #000000, #333333);
    --gradient-secondary: linear-gradient(135deg, #333333, #666666);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="body-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(6, 182, 212, 0.03)"/><circle cx="90" cy="20" r="1" fill="rgba(6, 182, 212, 0.03)"/><circle cx="20" cy="80" r="1" fill="rgba(6, 182, 212, 0.03)"/><circle cx="80" cy="90" r="1" fill="rgba(6, 182, 212, 0.03)"/><circle cx="50" cy="50" r="1" fill="rgba(6, 182, 212, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23body-pattern)"/></svg>');
    background-size: cover, 100px 100px;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    animation: glow 1s ease-in-out infinite;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid --primary-color;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="nav-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 0 25 L 50 25 M 25 0 L 25 50" stroke="rgba(6, 182, 212, 0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23nav-pattern)"/></svg>');
    background-size: cover, 50px 50px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 28px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo a:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(51, 51, 51, 0.8)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255, 255, 255, 0.2)" stroke-width="0.5"/></pattern><pattern id="matrix" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" font-family="monospace" font-size="8" fill="rgba(255, 255, 255, 0.15)">01</text></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/><rect width="100" height="100" fill="url(%23matrix)"/></svg>');
    background-size: cover, 20px 20px, 40px 40px;
    animation: matrixFlow 20s linear infinite;
}

@keyframes matrixFlow {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 20px 20px, 40px 40px; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-grid {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cyber-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255, 255, 255, 0.4)"/><path d="M 10 5 L 10 15 M 5 10 L 15 10" stroke="rgba(255, 255, 255, 0.3)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cyber-pattern)"/></svg>');
    background-size: 20px 20px, 20px 20px, 20px 20px;
    animation: gridMove 20s linear infinite;
    opacity: 0.4;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: scanLine 4s ease-in-out infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

/* Cybersecurity-themed animations */
@keyframes scanLine {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.6); }
}

/* Add scan line effect to service cards */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #333333, transparent);
    animation: scanLine 3s ease-in-out infinite;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
}

/* Enhanced service icon glow effect */
.service-icon {
    animation: glow 2s ease-in-out infinite;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(245, 245, 247, 0.95), rgba(240, 240, 242, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 5 5 L 25 5 M 5 15 L 25 15 M 5 25 L 25 25 M 15 5 L 15 25" fill="none" stroke="rgba(0, 0, 0, 0.1)" stroke-width="1"/><circle cx="5" cy="5" r="2" fill="rgba(0, 0, 0, 0.2)"/><circle cx="25" cy="5" r="2" fill="rgba(0, 0, 0, 0.2)"/><circle cx="5" cy="15" r="2" fill="rgba(0, 0, 0, 0.2)"/><circle cx="25" cy="15" r="2" fill="rgba(0, 0, 0, 0.2)"/><circle cx="5" cy="25" r="2" fill="rgba(0, 0, 0, 0.2)"/><circle cx="25" cy="25" r="2" fill="rgba(0, 0, 0, 0.2)"/><circle cx="15" cy="5" r="2" fill="rgba(0, 0, 0, 0.2)"/><circle cx="15" cy="25" r="2" fill="rgba(0, 0, 0, 0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    background-size: cover, 30px 30px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="8" fill="none" stroke="rgba(0, 0, 0, 0.1)" stroke-width="1"/><path d="M 12.5 4.5 L 12.5 20.5 M 4.5 12.5 L 20.5 12.5" stroke="rgba(0, 0, 0, 0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech)"/></svg>');
    background-size: cover, 25px 25px;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Coming Soon Service Cards */
.service-card.coming-soon {
    position: relative;
    opacity: 0.8;
    filter: grayscale(0.3);
}

.service-card.coming-soon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    opacity: 1;
    filter: grayscale(0);
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-light);
    animation: pulse 2s infinite;
}

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 12.5 2 L 22.5 7 L 22.5 17 L 12.5 22 L 2.5 17 L 2.5 7 Z" fill="none" stroke="rgba(0, 0, 0, 0.08)" stroke-width="0.5"/></pattern><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0, 0, 0, 0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    background-size: cover, 25px 25px, 20px 20px;
    position: relative;
}

.methodology-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.methodology-text {
    flex: 1;
}

.methodology-text h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.methodology-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.methodology-features {
    list-style: none;
    margin-top: 1.5rem;
}

.methodology-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.methodology-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.methodology-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-text {
    font-weight: 500;
    color: var(--text-primary);
}

/* About Section */
.about {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(245, 245, 247, 0.95), rgba(240, 240, 242, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shield" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 20 5 L 35 15 L 35 25 C 35 35 20 35 20 35 C 20 35 5 35 5 25 L 5 15 Z" fill="none" stroke="rgba(0, 0, 0, 0.1)" stroke-width="1"/><path d="M 20 10 L 30 17 L 30 25 C 30 30 20 30 20 30 C 20 30 10 30 10 25 L 10 17 Z" fill="rgba(0, 0, 0, 0.05)"/></pattern><pattern id="binary" width="15" height="15" patternUnits="userSpaceOnUse"><text x="2" y="12" font-family="monospace" font-size="6" fill="rgba(0, 0, 0, 0.1)">10</text></pattern></defs><rect width="100" height="100" fill="url(%23shield)"/><rect width="100" height="100" fill="url(%23binary)"/></svg>');
    background-size: cover, 40px 40px, 15px 15px;
    position: relative;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="expertise-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="3" fill="none" stroke="rgba(0, 0, 0, 0.1)" stroke-width="1"/><path d="M 12.5 9.5 L 12.5 15.5 M 9.5 12.5 L 15.5 12.5" stroke="rgba(0, 0, 0, 0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23expertise-pattern)"/></svg>');
    background-size: cover, 25px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.expertise-item:hover::before {
    transform: scaleY(1);
}

.expertise-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.expertise-item i {
    color: #000000;
    font-size: 1.25rem;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stat-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 15 5 L 25 15 L 15 25 L 5 15 Z" fill="none" stroke="rgba(0, 0, 0, 0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23stat-pattern)"/></svg>');
    background-size: cover, 30px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(51, 51, 51, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lock" width="30" height="30" patternUnits="userSpaceOnUse"><rect x="10" y="15" width="10" height="8" rx="2" fill="none" stroke="rgba(255, 255, 255, 0.2)" stroke-width="1"/><rect x="12" y="12" width="6" height="6" rx="1" fill="none" stroke="rgba(255, 255, 255, 0.2)" stroke-width="1"/><circle cx="15" cy="18" r="1" fill="rgba(255, 255, 255, 0.3)"/></pattern><pattern id="stars" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(255, 255, 255, 0.3)"/><circle cx="20" cy="10" r="0.5" fill="rgba(255, 255, 255, 0.3)"/><circle cx="10" cy="20" r="0.5" fill="rgba(255, 255, 255, 0.3)"/><circle cx="15" cy="15" r="0.5" fill="rgba(255, 255, 255, 0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23lock)"/><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    background-size: cover, 30px 30px, 25px 25px;
    color: white;
    text-align: center;
    position: relative;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="matrix-dark" width="20" height="20" patternUnits="userSpaceOnUse"><text x="5" y="15" font-family="monospace" font-size="8" fill="rgba(255, 255, 255, 0.15)">01</text></pattern><pattern id="grid-dark" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255, 255, 255, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23matrix-dark)"/><rect width="100" height="100" fill="url(%23grid-dark)"/></svg>');
    background-size: cover, 20px 20px, 15px 15px;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-content p {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modal-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 20 5 L 35 15 L 35 25 C 35 35 20 35 20 35 C 20 35 5 35 5 25 L 5 15 Z" fill="none" stroke="rgba(0, 0, 0, 0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23modal-pattern)"/></svg>');
    background-size: cover, 40px 40px;
    margin: 1% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 95vh;
    position: relative;
    box-shadow: var(--shadow-heavy);
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-primary);
}

.quote-form {
    margin-top: 2rem;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
    padding-right: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    position: relative;
    width: 100%;
}

.form-group label {
    display: block;
    margin-left: 10px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    resize: none;
    overflow: hidden;
    min-height: 44px;
    max-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    transform: none;
    box-shadow: none;
}

/* Specific textarea styling to prevent expansion */
.form-group textarea {
    min-height: 44px;
    max-height: 44px;
    resize: none;
    overflow: hidden;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .methodology-content,
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 100px 0 60px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .modal-content {
        margin: 2% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.stat-item,
.expertise-item {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form field stability */
.form-group label {
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    position: relative;
    z-index: 0;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar,
.quote-form::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track,
.quote-form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb,
.quote-form::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover,
.quote-form::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: white;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.mission-icon i {
    font-size: 4rem;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #333333, #666666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.member-title {
    color: #333333;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-certifications {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badge {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* History Section */
.history {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.875rem;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.form-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #000000;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center; /* centers vertically */
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
    margin: 0;
    vertical-align: middle; /* key fix for alignment */
}

.checkbox-label .checkmark {
    display: none;
}

.checkbox-label a {
    color: #000000;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Office Locations */
.office-locations {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.location-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.location-badge {
    background: #000000;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.location-details p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-details i {
    color: #000000;
    width: 20px;
}

.location-features {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--border-color);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-question i {
    color: #000000;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .mission-content,
    .contact-form-container {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-left: 20px;
    }

    .timeline-year {
        margin-right: 1rem;
    }

    .timeline-content {
        margin: 0;
        max-width: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .mission-icon {
        width: 150px;
        height: 150px;
    }

    .mission-icon i {
        font-size: 3rem;
    }

    .timeline-item {
        margin-left: 10px;
    }

    .timeline-year {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Pricing Page Styles */
.cost-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.overview-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.overview-text .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.cost-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.highlight-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

.roi-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.roi-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.roi-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.roi-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.roi-calculator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.roi-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    text-align: center;
    min-width: 200px;
}

.roi-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.roi-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.roi-arrow {
    font-size: 2rem;
    color: var(--accent-color);
}

.roi-result {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    min-width: 200px;
}

div.roi-result p {
    color: #f1f1f1;
}

.roi-result h3 {
    color: white;
    margin-bottom: 1rem;
}

.roi-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-models {
    padding: 80px 0;
    background: white;
}

.pricing-models h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.model-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.model-card.bad {
    border-left: 4px solid #000000;
}

.model-card.good {
    border-left: 4px solid #333333;
}

.model-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.model-header i {
    font-size: 2rem;
}

.model-card.bad .model-header i {
    color: #000000;
}

.model-card.good .model-header i {
    color: #333333;
}

.model-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.model-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.model-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.model-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.model-features li i {
    width: 20px;
}

.model-card.bad .model-features li i {
    color: #000000;
}

.model-card.good .model-features li i {
    color: #333333;
}

.model-example {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.service-pricing h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.pricing-details {
    margin-bottom: 1.5rem;
}

.pricing-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pricing-details ul {
    list-style: none;
    margin-left: 0;
}

.pricing-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.pricing-factors h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-factors ul {
    list-style: none;
    margin-left: 0;
}

.pricing-factors li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-factors li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666666;
    font-weight: bold;
}

.roi-analysis {
    padding: 80px 0;
    background: white;
}

.roi-analysis h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-weight: 500;
}

.roi-comparison {
    margin-top: 4rem;
}

.comparison-item h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comparison-bad,
.comparison-good {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.comparison-bad {
    border-left: 4px solid #000000;
}

.comparison-good {
    border-left: 4px solid #333333;
}

.comparison-bad h4,
.comparison-good h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-bad ul,
.comparison-good ul {
    list-style: none;
    margin-left: 0;
}

.comparison-bad li,
.comparison-good li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.comparison-bad li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.comparison-good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #333333;
    font-weight: bold;
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 80px 0;
    background: white;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.policy-intro .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.policy-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-info-box {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.contact-info-box p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 768px) {
    .policy-container {
        padding: 0 1rem;
    }
    
    .policy-intro {
        margin-bottom: 3rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .policy-container {
        padding: 0 0.5rem;
    }
    
    .policy-intro .lead {
        font-size: 1.1rem;
    }
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .roi-calculator {
        flex-direction: column;
        gap: 1rem;
    }
    
    .roi-card,
    .roi-result {
        min-width: auto;
        width: 100%;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .roi-stats {
        grid-template-columns: 1fr;
    }
    
    .cost-highlight {
        grid-template-columns: 1fr;
    }
    
    .highlight-item h3 {
        font-size: 1.5rem;
    }
    
    .roi-amount {
        font-size: 2rem;
    }
    
    .roi-percentage {
        font-size: 2.5rem;
    }
}
