:root {
    /* Enterprise Navy & Slate Palette */
    --primary-50: #f4f7fa;
    --primary-100: #e9eef5;
    --primary-200: #d2dee9;
    --primary-300: #adc3d8;
    --primary-400: #7e9fc1;
    --primary-500: #5a81ac;
    /* Refined Blue */
    --primary-600: #1e3a8a;
    /* Deep Enterprise Navy */
    --primary-700: #1a357a;
    --primary-800: #162c64;
    --primary-900: #0f1e44;

    /* Luxury Accents (Gold/Sand) */
    --accent-gold: #c5a059;
    --accent-gold-light: #e2cf9e;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #020617;
    /* Deepest black-blue */

    --emerald-500: #10b981;
    --emerald-600: #059669;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--slate-50);
    color: var(--slate-800);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--slate-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo span {
    color: var(--primary-600);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

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

nav a {
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border-radius: 8px;
    /* Sharper, more professional */
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary-600);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.3);
}

.btn-white {
    background: white;
    color: var(--primary-900);
    border: 1px solid var(--slate-200);
}

.btn-white:hover {
    background: var(--slate-50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-cta {
    background: var(--accent-gold);
    color: white;
}

.btn-cta:hover {
    background: #b6904d;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, var(--primary-800), var(--primary-900), var(--slate-900));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 25% 25%, white 2px, transparent 2px);
    background-size: 60px 60px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(96, 165, 250, 0.3);
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.2);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1.5rem;
    color: white;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

.stat-value span {
    color: var(--primary-300);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.dashboard-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-100);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red {
    background: #ff5f57;
}

.dashboard-dot.yellow {
    background: #febc2e;
}

.dashboard-dot.green {
    background: #28c840;
}

.dashboard-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--slate-50);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--slate-100);
}

.dashboard-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.dashboard-info {
    flex: 1;
}

.dashboard-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate-800);
}

.dashboard-meta {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.dashboard-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-600);
}

.badge-progress {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-600);
}

/* Sections */
.section-label {
    display: inline-block;
    color: var(--primary-600);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Problem */
.problem {
    padding: 8rem 5%;
    background: white;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
}

.problem h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.problem-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    margin-bottom: 4rem;
    max-width: 600px;
}

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

.problem-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: var(--primary-300);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.problem-card p {
    color: var(--slate-500);
    font-size: 1.10rem;
}

/* Solution */
.solution {
    padding: 8rem 5%;
    background: var(--slate-50);
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-header {
    text-align: center;
    margin-bottom: 5rem;
}

.solution h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.solution-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto;
}

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

.step {
    position: relative;
    padding: 2.5rem 2rem;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    transition: all 0.3s;
}

.step:hover {
    border-color: var(--primary-400);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.step-icon {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.step p {
    color: var(--slate-500);
    font-size: 1.10rem;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--emerald-600);
    font-weight: 600;
}

/* Benefits */
.benefits {
    padding: 8rem 5%;
    background: white;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 5rem;
}

.benefits h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

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

.benefit {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-50), white);
    border: 1px solid var(--primary-100);
    border-radius: 20px;
    transition: all 0.3s;
}

.benefit:hover {
    border-color: var(--primary-400);
    transform: translateX(10px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.benefit h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.benefit p {
    color: var(--slate-500);
    font-size: 1.10rem;
}

.benefit-highlight {
    color: var(--primary-600);
    font-weight: 600;
}

/* Comparison */
.comparison {
    padding: 8rem 5%;
    background: var(--slate-900);
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.comparison-header .section-label {
    color: var(--primary-400);
}

.comparison h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: white;
}

.comparison-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2px;
    background: var(--slate-700);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-cell {
    padding: 1.25rem;
    background: var(--slate-800);
}

.comparison-header-cell {
    background: var(--slate-800);
    font-weight: 600;
    text-align: center;
    color: white;
}

.comparison-label {
    color: var(--slate-300);
}

.comparison-old {
    text-align: center;
    color: var(--slate-400);
}

.comparison-new {
    text-align: center;
    color: var(--primary-400);
    font-weight: 600;
}

.comparison-check {
    color: var(--emerald-500);
    font-size: 1.2rem;
}

.comparison-x {
    color: #ef4444;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 8rem 5%;
    background: var(--slate-50);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonials h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
    width: 95%;
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    transition: all 0.3s;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .testimonial {
        min-width: calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .testimonial {
        width: 40%;
    }
}

.testimonial:hover {
    border-color: var(--primary-300);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
}

.testimonial-stars {
    color: var(--amber-500);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--slate-600);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.testimonial-name {
    font-weight: 600;
    color: var(--slate-800);
}

.testimonial-company {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 0.25rem;
}

.testimonial-meta {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-meta span {
    font-weight: 600;
    color: var(--slate-600);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--slate-500);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-500);
    width: 25px;
    border-radius: 5px;
}

/* CTA */
.cta {
    padding: 8rem 5%;
    background: white;
}

.cta-container {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 5rem;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
}

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

.cta .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Feasibility Analysis specific styles */
.feasibility-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-num {
    width: 32px;
    height: 32px;
    background: white;
    color: var(--primary-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: white;
    font-size: 1.10rem;
    line-height: 1.4;
    margin: 0;
    max-width: 100%;
}

.cta-main {
    margin-bottom: 3rem;
}

.cta-availability {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem !important;
    font-style: italic;
}

.cta-direct-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-direct-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem !important;
}

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

.contact-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.contact-links a:hover {
    opacity: 0.8;
}

.contact-links span {
    color: rgba(255, 255, 255, 0.4);
}

/* Governance Section */
.governance {
    padding: 10rem 5%;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
}

.governance-container {
    max-width: 1200px;
    margin: 0 auto;
}

.governance-header {
    text-align: center;
    margin-bottom: 5rem;
}

.governance-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    max-width: 800px;
    margin-bottom: 4rem;
}

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

.gov-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gov-icon {
    font-size: 2.2rem;
    color: var(--primary-600);
}

.gov-item h3 {
    font-size: 1.2rem;
    color: var(--slate-900);
    font-family: 'DM Sans', sans-serif;
}

.gov-item p {
    color: var(--slate-500);
    font-size: 1.10rem;
    line-height: 1.6;
}

.governance-cta {
    margin-top: 2rem;
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: var(--slate-900);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.footer-logo span {
    color: var(--primary-400);
}

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

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-400);
}

.footer-copy {
    color: var(--slate-500);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-cta,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .comparison-header-cell:first-child {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .problem,
    .solution,
    .benefits,
    .comparison,
    .testimonials,
    .cta {
        padding: 5rem 5%;
    }

    .cta-container {
        padding: 3rem 1.5rem;
        max-width: 100%;
    }
}

/* Subpage Styles */
.subpage-hero {
    padding: 10rem 5% 6rem;
    background: radial-gradient(circle at top right, var(--slate-900), var(--primary-900));
    color: white;
    position: relative;
    overflow: hidden;
}

.subpage-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 1rem 0;
}

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

/* Security Pillars */
.security-pillars {
    padding: 8rem 5%;
    background: white;
}

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

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pillar h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--primary-600);
}

.pillar-list {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.pillar-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate-100);
    color: var(--slate-600);
    font-size: 1.10rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pillar-list li::before {
    content: '✓';
    color: var(--emerald-500);
    font-weight: bold;
}

/* FAQs */
.security-faqs {
    padding: 8rem 5%;
    background: var(--slate-50);
}

.security-faqs h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.faq-item p {
    color: var(--slate-500);
    line-height: 1.7;
}

/* CTA Simple */
.cta-simple {
    padding: 6rem 5%;
    background: white;
    text-align: center;
}

.cta-simple h2 {
    margin-bottom: 1rem;
}

.cta-simple p {
    color: var(--slate-500);
    margin-bottom: 2.5rem;
}