/* custom.css — Truely (trueIy.com) */

:root {
    --accent: #1a73e8;
    --accent-dark: #1558b0;
    --accent-light: #e8f0fe;
    --bg: #f8f9fa;
    --surface: #ffffff;
    --surface2: #f0f4f8;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: rgba(0,0,0,0.08);
    --radius: 12px;
    --nav-height: 70px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    background: var(--bg);
    padding: 0;
    margin: 0;
}

h1 { font-size: 58px; font-weight: 700; line-height: 1.15; text-transform: none; letter-spacing: 0; }
h2 { font-size: 40px; font-weight: 700; line-height: 1.2; text-transform: none; letter-spacing: 0; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.4; text-transform: none; letter-spacing: 0; }

p { font-size: 18px; line-height: 1.9; color: var(--text-muted); }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.site-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-brand span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: block;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--accent-light);
    color: var(--accent);
}

.nav-cta {
    background: var(--accent) !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 8px 18px !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    color: #ffffff !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 18px;
    color: var(--text);
}

/* ===== SECTIONS ===== */
.section {
    padding: 90px 0;
}

.section-alt {
    padding: 90px 0;
    background: var(--surface2);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ===== HERO ===== */
.hero-section {
    background: #0d1e3d;
    color: #ffffff;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-section p {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 36px;
}

.btn-gap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: #0d1e3d;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 20px;
    margin: 0 auto;
    max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--accent);
    color: #ffffff;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.feature-card .icon {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.stat-item .stat-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.stat-item .stat-label {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 10%;
    margin: 0 auto 20px;
    border: 4px solid var(--accent-light);
}

.team-card h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.team-email {
    font-size: 14px;
    color: var(--accent);
}

/* ===== BLOG GRID ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-img {
    height: 200px;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-body time {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.blog-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(26,115,232,0.15);
    transform: scale(1.02);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.price {
    font-size: 46px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin: 16px 0 8px;
}

.price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}

.price-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.features li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 24px;
    position: relative;
}

.features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: var(--surface2);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--surface);
}

.accordion-button {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    background: var(--surface);
    padding: 20px 24px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
}

.accordion-button:not(.collapsed) {
    color: var(--accent);
    background: var(--accent-light);
}

.accordion-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    padding: 16px 24px 24px;
}

/* ===== CONTACT ===== */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.contact-list li {
    font-size: 16px;
    color: var(--text-muted);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list li i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.contact-form .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--text);
    background: var(--surface);
    width: 100%;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    counter-reset: steps;
}

.step {
    padding: 24px;
}

.step-num {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-light);
    border-radius: 6px;
    padding: 4px 10px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.step h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--accent);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 16px;
}

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

.cta-section .btn-primary {
    background: #ffffff;
    color: var(--accent);
}

.cta-section .btn-primary:hover {
    background: var(--accent-light);
    color: var(--accent-dark);
}

/* ===== FOOTER ===== */
footer {
    background: #0d1e3d;
    color: #ffffff;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

footer h3 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

footer p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.footer-address {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

footer ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 48px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 520px;
    background: #1e293b;
    color: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    padding: 24px;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

.cookie-text p a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

#cookie-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

#cookie-decline:hover {
    border-color: rgba(255,255,255,0.6);
}

#cookie-accept {
    background: var(--accent);
    border: none;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#cookie-accept:hover {
    background: var(--accent-dark);
}

/* ===== ABOUT VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.value-card .icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 19px;
    color: var(--text);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== INVESTMENT SECTION ===== */
.investment-section {
    background: var(--surface2);
    padding: 80px 0;
    text-align: center;
}

.investment-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.investment-amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin: 24px 0 8px;
}

.investment-round {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-section { padding: 70px 0; }
    .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    body { font-size: 17px; }
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    .hero-section { min-height: auto; padding: 60px 0; }
    .hero-section h1 { font-size: 34px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        z-index: 999;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section, .section-alt { padding: 60px 0; }
    .btn-gap { flex-direction: column; }
}
