/* Minimalist Palette: Whites, Light Grays, Soft Charcoal */
:root {
    --strat-bg: #fafafa;
    --strat-surface: #ffffff;
    --strat-text: #333333;
    --strat-text-light: #666666;
    --strat-accent: #2c2c2c;
    --strat-border: #eaeaea;
    --strat-radius: 16px;
    --strat-font: 'Nunito', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--strat-font);
    background-color: var(--strat-bg);
    color: var(--strat-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--strat-accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--strat-accent);
}

.strat-giant-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -1px;
}

.strat-title-med {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

/* Header */
.strat-head-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    border-bottom: 1px solid var(--strat-border);
}

.strat-brand-mark {
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strat-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-weight: 600;
}

.strat-ghost-link {
    color: var(--strat-text-light);
}

.strat-action-btn {
    background: var(--strat-accent);
    color: var(--strat-surface);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.strat-action-btn:hover {
    opacity: 0.9;
    color: var(--strat-surface);
}

/* Hero Section */
.strat-hero-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 8rem 5% 6rem;
    align-items: center;
}

.strat-hero-sub {
    font-size: 1.25rem;
    color: var(--strat-text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.strat-btn-primary {
    display: inline-block;
    background: var(--strat-accent);
    color: var(--strat-surface);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
}

.strat-btn-primary:hover {
    color: #fff;
}

.strat-hero-visual {
    position: relative;
}

.strat-shape-blob {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: #ececec;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
}

.strat-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--strat-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Feedback (Testimonials) */
.strat-praise-zone {
    background: var(--strat-surface);
    padding: 5rem 5%;
    border-top: 1px solid var(--strat-border);
    border-bottom: 1px solid var(--strat-border);
}

.strat-section-label {
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--strat-text-light);
    margin-bottom: 3rem;
}

.strat-praise-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.strat-praise-card {
    flex: 1 1 300px;
    background: var(--strat-bg);
    padding: 2rem;
    border-radius: var(--strat-radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.strat-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.strat-client-id {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.strat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.strat-client-id strong {
    display: block;
    line-height: 1.2;
}

.strat-client-id span {
    font-size: 0.85rem;
    color: var(--strat-text-light);
}

/* Approach (Services) */
.strat-method-grid {
    padding: 7rem 5%;
}

.strat-method-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.strat-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.strat-step-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--strat-radius);
    margin-bottom: 1.5rem;
}

.strat-step-item h3 {
    font-size: 1.4rem;
}

.strat-step-item a {
    text-decoration: underline;
}

/* About Section */
.strat-firm-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 6rem 5%;
    background: var(--strat-surface);
    align-items: center;
}

.strat-eyebrow {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #eee;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.strat-firm-text p {
    margin-bottom: 1.5rem;
    color: var(--strat-text-light);
}

.strat-firm-text a {
    text-decoration: underline;
}

.strat-data-points {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--strat-border);
}

.strat-counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--strat-accent);
    line-height: 1;
}

.strat-suffix {
    font-size: 2rem;
    font-weight: 800;
}

.strat-data-label {
    display: block;
    font-size: 0.9rem;
    color: var(--strat-text-light);
    margin-top: 0.5rem;
    font-weight: 600;
}

.strat-firm-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--strat-radius);
}

/* Contact */
.strat-connect-panel {
    padding: 8rem 5%;
    display: flex;
    justify-content: center;
}

.strat-connect-inner {
    background: var(--strat-surface);
    padding: 4rem;
    border-radius: var(--strat-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    width: 100%;
    max-width: 800px;
}

.strat-connect-inner p {
    margin-bottom: 2.5rem;
    color: var(--strat-text-light);
}

.strat-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.strat-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.strat-full-span {
    grid-column: 1 / -1;
}

.strat-form-layout label {
    font-weight: 600;
    font-size: 0.9rem;
}

.strat-form-layout input,
.strat-form-layout textarea {
    padding: 0.8rem;
    border: 1px solid var(--strat-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--strat-bg);
}

.strat-form-layout input:focus,
.strat-form-layout textarea:focus {
    outline: none;
    border-color: var(--strat-text-light);
}

.strat-submit-btn {
    background: var(--strat-accent);
    color: var(--strat-surface);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
}

.strat-submit-btn:hover {
    opacity: 0.9;
}

/* Footer */
.strat-base-footer {
    background: var(--strat-accent);
    color: #fff;
    padding: 5rem 5% 2rem;
}

.strat-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.strat-footer-col strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.strat-footer-col p,
.strat-footer-col a {
    color: #aaaaaa;
    margin-bottom: 0.5rem;
    display: block;
}

.strat-footer-col a:hover {
    color: #fff;
}

.strat-tiny-link {
    font-size: 0.8rem;
    margin-top: 1rem;
}

.strat-footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.strat-disclaimer {
    font-size: 0.75rem;
}

/* Internal Pages */
.strat-internal-page {
    padding: 8rem 5% 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.strat-internal-page h1 {
    margin-bottom: 2rem;
}

.strat-internal-page p {
    margin-bottom: 1.5rem;
    color: var(--strat-text-light);
}

/* Responsive Asymmetry & Leakage */
@media (max-width: 900px) {
    .strat-hero-area,
    .strat-firm-overview {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .strat-hero-area {
        padding-top: 4rem;
    }
    .strat-nav-links {
        display: none;
    }
    .strat-form-layout {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 1200px) {
    .strat-method-grid {
        padding-left: 8%;
        padding-right: 8%;
    }
    .strat-firm-overview {
        gap: 8rem;
    }
}
