/* custom.css - Paragex.com */
/* Accent: #0ea5e9 */

/* Override Materialize default nav background (#ee6e73 pink) */
nav { background-color: transparent !important; color: inherit !important; height: auto !important; line-height: normal !important; }
.navbar-brand { color: var(--text) !important; }

:root {
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --accent-light: #38bdf8;
    --bg: #0a0e1a;
    --surface: #111827;
    --surface2: #1a2236;
    --text: #e2e8f0;
    --text-muted: #8fabc4;
    --border: rgba(255,255,255,0.08);
    --radius: 10px;
    --nav-height: 70px;
    --bg-rgb: 10,14,26;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 18px; }

body {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    font-size: 18px;
    line-height: 1.85;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    text-transform: none !important;
    letter-spacing: 0 !important;
}

h1 { font-size: 58px; }
h2 { font-size: 40px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p { color: var(--text-muted); margin-bottom: 1rem; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* Article images - R-IMG */
article img { max-width: 100%; width: 100%; height: auto; display: block; }

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   NAVBAR
   ===================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(var(--bg-rgb), 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background 0.3s;
}

.site-nav .navbar {
    height: var(--nav-height);
    padding: 0 0;
}

.site-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.site-nav .navbar-brand img {
    height: 36px;
    width: auto;
}

.site-nav .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted) !important;
    padding: 0 14px !important;
    transition: color 0.2s;
    white-space: nowrap;
}

.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav .nav-link.active {
    color: var(--text) !important;
}

/* R77 nav cleanup */
.nav-item {
    margin-bottom: 0 !important;
    background-image: none !important;
}
.site-logo { max-width: none !important; }
.btn-accent, .cta-primary, .cta-secondary { white-space: nowrap; }

.site-nav .navbar-toggler {
    border: 1px solid var(--border);
    padding: 6px 10px;
}
.site-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(226,232,240,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    background: var(--accent);
    color: #fff !important;
    border: none;
    transition: background 0.2s;
}
.nav-btn:hover { background: var(--accent-dark); color: #fff !important; }

/* =====================
   SECTIONS
   ===================== */
.section {
    padding: 90px 0;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

/* =====================
   PAGE HERO
   ===================== */
.page-hero {
    padding: 140px 0 80px;
    background: var(--surface);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: 48px;
    color: var(--text);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================
   HOME HERO
   ===================== */
.hero-section {
    padding: 160px 0 100px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    min-height: 680px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: transparent;
    pointer-events: none;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.25);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 22px;
}

.hero-section h1 {
    font-size: 58px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.12;
    margin-bottom: 22px;
    max-width: 760px;
}

.hero-section .hero-sub {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* =====================
   BUTTONS - R75 + R-BTN
   ===================== */
/* Primary button - dark bg context */
.btn-primary-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    background: var(--accent);
    color: #fff !important;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary-dark:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff !important;
    text-decoration: none;
}

/* Outline button - dark bg context */
.btn-outline-dark-bg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #e2e8f0 !important;
    border: 2px solid rgba(226,232,240,0.35);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-outline-dark-bg:hover {
    border-color: #e2e8f0;
    color: #fff !important;
    text-decoration: none;
}

/* Primary button - light bg context */
.btn-primary-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    background: var(--accent);
    color: #fff !important;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary-light:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff !important;
    text-decoration: none;
}

/* Outline button - light bg context */
.btn-outline-light-bg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #1e293b !important;
    border: 2px solid #1e293b;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-outline-light-bg:hover {
    background: #1e293b;
    color: #fff !important;
    text-decoration: none;
}

/* Small button variants */
.btn-sm-accent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    background: var(--accent);
    color: #fff !important;
    border: none;
    transition: background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-sm-accent:hover {
    background: var(--accent-dark);
    color: #fff !important;
    text-decoration: none;
}

/* =====================
   FEATURE CARDS
   ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: rgba(14,165,233,0.35);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(14,165,233,0.12);
    margin-bottom: 18px;
    font-size: 22px;
}

/* R81 force accent color on icons */
.feature-icon .fa,
.card-icon .fa,
.step-icon .fa { color: var(--accent) !important; }

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

/* =====================
   STEPS - R80 CSS Grid
   ===================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.step {
    text-align: center;
    padding: 28px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.step-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 14px;
    line-height: 1;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* =====================
   STATS
   ===================== */
.stats-bar {
    background: var(--surface);
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

/* =====================
   BLOG GRID - R78
   ===================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
    border-color: rgba(14,165,233,0.35);
    transform: translateY(-3px);
}

.blog-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.blog-card a:hover { color: inherit; }

.blog-card-img {
    width: 100%;
    height: 200px;
    background: var(--surface2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card-body {
    padding: 22px;
}

.blog-card-body time {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* =====================
   TEAM CARDS
   ===================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 18px;
    display: block;
    border: 3px solid rgba(14,165,233,0.3);
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
}

.team-bio {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* =====================
   PRICING
   ===================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    transition: border-color 0.2s;
}

.pricing-card.featured {
    border-color: var(--accent);
    background: var(--surface2);
}

.pricing-card .badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 44px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.1;
}

.pricing-card .price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card .price-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.pricing-card .features li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.pricing-card .features li::before {
    content: "\f00c";
    font-family: FontAwesome;
    color: var(--accent);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* =====================
   CONTACT
   ===================== */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--text-muted);
}

.contact-list li .fa {
    color: var(--accent) !important;
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-form .form-control {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    margin-bottom: 16px;
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-control:focus {
    background: var(--surface2);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
    outline: none;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-grid h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px !important;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-grid ul li a {
    font-size: 15px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-grid ul li a:hover {
    color: var(--text);
}

.footer-grid p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-brand-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom a {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 20px;
}
.footer-bottom a:hover { color: var(--text); }

/* =====================
   DARK SECTIONS - R85
   ===================== */
.section-dark {
    background: var(--surface2);
    color: var(--text);
}

.section-dark h2, .section-dark h3 {
    color: var(--text) !important;
}

.section-dark p {
    color: #c8d6e5 !important;
}

/* =====================
   HERO OVERLAY - R89
   ===================== */
.tm-bg-overlay, [class*="overlay"] {
    pointer-events: none !important;
}

/* R79 - hero container */
.header-thumb {
    background: transparent !important;
    border: none !important;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 70px 40px;
    text-align: center;
    margin: 0 0 80px;
}

.cta-section h2 {
    font-size: 38px;
    color: var(--text);
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 28px;
}

/* =====================
   VALUES GRID
   ===================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.value-card .fa {
    font-size: 28px;
    color: var(--accent) !important;
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =====================
   MILESTONES
   ===================== */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.milestone-item {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
}

.milestone-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.milestone-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* =====================
   CASE STUDIES
   ===================== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.case-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.case-card .case-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.case-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.case-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.case-card .case-result {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.case-card .case-result-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================
   ACCORDION (FAQ) - BS4
   ===================== */
.faq-section .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px !important;
    margin-bottom: 12px;
}

.faq-section .card-header {
    background: transparent;
    border-bottom: none;
    padding: 0;
}

.faq-section .btn-link {
    width: 100%;
    text-align: left;
    color: var(--text) !important;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 22px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section .btn-link:hover { color: var(--accent) !important; }
.faq-section .btn-link[aria-expanded="false"] .faq-icon::before { content: "\f067"; }
.faq-section .btn-link[aria-expanded="true"] .faq-icon::before { content: "\f068"; }
.faq-section .faq-icon {
    font-family: FontAwesome;
    font-style: normal;
    font-size: 13px;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-section .card-body {
    padding: 8px 22px 20px;
    color: var(--text-muted) !important;
    font-size: 16px;
    line-height: 1.75;
}

/* =====================
   COOKIE BANNER
   ===================== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2236;
    border-top: 1px solid var(--border);
    z-index: 9999;
    padding: 18px 24px;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.cookie-text a { color: var(--accent); }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-decline {
    padding: 9px 20px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s;
}
#cookie-decline:hover { border-color: var(--text-muted); }

#cookie-accept {
    padding: 9px 20px;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
#cookie-accept:hover { background: var(--accent-dark); }

/* =====================
   INTEGRATIONS SECTION
   ===================== */
.integration-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: border-color 0.2s;
}

.chip .fa { color: var(--accent) !important; font-size: 14px; }
.chip:hover { border-color: rgba(14,165,233,0.35); color: var(--text); }

/* =====================
   SECTION HEADING
   ===================== */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    color: var(--text);
    margin-bottom: 14px;
}

.section-heading p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1199px) {
    .hero-section h1 { font-size: 48px; }
}

@media (max-width: 991px) {
    .hero-section { padding: 130px 0 70px; }
    .hero-section h1 { font-size: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .milestones-grid { grid-template-columns: repeat(2, 1fr); }
    .case-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    h2 { font-size: 34px; }
}

@media (max-width: 767px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .page-hero h1 { font-size: 34px; }
    .section { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .case-grid { grid-template-columns: 1fr; }
    .milestones-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-section { padding: 50px 24px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .site-nav .navbar-collapse { background: var(--surface); padding: 20px; margin-top: 10px; border-radius: 8px; border: 1px solid var(--border); }
    .pricing-grid { max-width: 100%; }
}

/* =====================
   CULTURE SECTION
   ===================== */
.culture-section {
    background: var(--surface2);
    padding: 70px 0;
    border-top: 1px solid var(--border);
}

.culture-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.culture-item {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.culture-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.culture-item p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .culture-items { grid-template-columns: 1fr; }
}
