/* ========================================
   DesignCase -- Shared Base Styles
   Color: DesignCase Blue (#00aeef) + Warm Slate + Amber Accent
   Fonts: Inter (body), Playfair Display (headings)
   ======================================== */

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

:root {
    --blue: #00aeef;
    --blue-dark: #0095cc;
    --blue-light: #e8f4fd;
    --blue-muted: #d0ecfa;
    --navy: #1e3a5f;
    --navy-light: #24456e;
    --amber: #f5a623;
    --amber-light: #f7b94d;
    --white: #ffffff;
    --off-white: #f8fafb;
    --cream: #f5f7f9;
    --gray-100: #e5e9ed;
    --gray-200: #d1d5db;
    --gray-300: #a0a8b4;
    --gray-500: #5f6b7a;
    --text: #2d3748;
    --text-light: #4a5568;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --max-width: 1140px;
    --section-pad: 72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 44px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-sub {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-small {
    padding: 6px 14px;
    font-size: 0.78rem;
    width: 100%;
}

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    border-bottom-color: var(--gray-100);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a.nav-active {
    color: var(--blue);
    font-weight: 600;
}

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- PAGE HEADER (subpages) --- */
.page-header {
    padding: 140px 0 60px;
    background: var(--off-white);
    text-align: center;
}

.page-header-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 16px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.15;
    color: var(--navy);
}

/* --- HERO -- Split Layout --- */
.hero {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 100vh;
    padding-top: 72px;
}

.hero-text {
    display: flex;
    align-items: center;
    padding: 60px 24px 60px 0;
}

.hero-text-inner {
    max-width: 480px;
    margin-left: auto;
    padding-left: 24px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero-accent {
    color: var(--blue);
}

.hero-bridge {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--navy);
    padding: 28px 0;
}

.trust-credentials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-badge-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.trust-badge-org {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-logos img {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.trust-logos img:hover {
    opacity: 0.8;
}

.trust-tagline {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
}

/* --- THINKING-FIRST --- */
.thinking {
    background: var(--off-white);
}

.thinking-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: start;
}

.thinking-content h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 24px;
}

.thinking-lead {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.thinking-lead em {
    color: var(--blue-dark);
    font-style: italic;
}

.thinking-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.thinking-content p strong {
    color: var(--navy);
}

.thinking-sidebar {
    position: sticky;
    top: 120px;
}

.thinking-timeline {
    padding: 28px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-100);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.timeline-item:last-of-type {
    border-bottom: none;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-300);
    min-width: 40px;
}

.timeline-tool {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text);
}

.timeline-item.active {
    background: var(--blue-light);
    margin: 0 -28px;
    padding: 12px 28px;
    border-radius: 6px;
    border-bottom: none;
}

.timeline-item.active .timeline-year {
    color: var(--blue);
}

.timeline-item.active .timeline-tool {
    color: var(--blue-dark);
    font-weight: 700;
}

.timeline-constant {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.5;
}

/* --- SERVICES --- */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.08);
    transform: translateY(-3px);
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--blue);
    margin-bottom: 18px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- ABOUT --- */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content p strong {
    color: var(--navy);
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.credential {
    background: var(--navy);
    color: var(--blue-light);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --- ABOUT EXPANDED (about page) --- */
.about-expanded-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-expanded-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin: 32px 0 20px;
}

.about-expanded-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 700px;
}

.milestone-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
}

.milestone {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 10px;
    border-left: 3px solid var(--blue);
}

.milestone-year {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    min-width: 60px;
    flex-shrink: 0;
}

.milestone h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.milestone p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- PROOF --- */
.proof {
    background: var(--white);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonial blockquote {
    position: relative;
    padding: 0;
    border: none;
}

.testimonial blockquote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--blue);
    line-height: 0;
    position: absolute;
    top: 30px;
    left: -10px;
    opacity: 0.25;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 0 20px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--blue);
    font-size: 0.9rem;
}

.clients-section {
    margin-bottom: 50px;
}

.clients-title {
    text-align: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-300);
    margin-bottom: 28px;
    font-weight: 600;
}

.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    padding: 24px 0;
    margin-bottom: 24px;
}

.logo-strip img {
    height: 40px;
    max-width: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-strip img:hover {
    transform: scale(1.08);
}

.clients-text-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    padding: 16px 0;
}

.clients-text-grid span {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: 500;
    position: relative;
}

.clients-text-grid span:not(:last-child)::after {
    content: '\00B7';
    margin-left: 20px;
    color: var(--gray-200);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* --- URGENCY --- */
.urgency {
    padding: 0;
}

.urgency-bg {
    background: var(--navy);
    color: var(--white);
    padding: var(--section-pad) 0;
}

.urgency .section-header h2 {
    color: var(--white);
}

.urgency .section-sub {
    color: rgba(255,255,255,0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.urgency-cta {
    text-align: center;
}

.urgency-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.urgency-cta p strong {
    color: var(--white);
}

/* --- 3-STEP PLAN --- */
.plan {
    background: var(--off-white);
}

.plan-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.plan-step {
    flex: 1;
    text-align: center;
    padding: 0 28px;
}

.plan-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.plan-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.plan-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-100);
    margin-top: 28px;
    flex-shrink: 0;
}

/* --- CONTACT --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.contact-form-side h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-form-side > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-form-styled {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form-styled input,
.contact-form-styled textarea {
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s;
    background: var(--white);
}

.contact-form-styled input:focus,
.contact-form-styled textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.contact-form-styled textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
}

.contact-info-item span,
.contact-info-item a {
    font-size: 0.95rem;
    color: var(--text);
}

.contact-info-item a:hover {
    color: var(--blue);
}

.contact-expect-list {
    list-style: none;
    padding: 0;
}

.contact-expect-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 6px 0 6px 20px;
    position: relative;
}

.contact-expect-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- FORMS --- */
.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta .form input,
.cta .form textarea {
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.cta .form input::placeholder,
.cta .form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.cta .form input:focus,
.cta .form textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255,255,255,0.12);
}

.form textarea {
    resize: vertical;
    min-height: 80px;
}

.form .btn {
    width: 100%;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.form-success p {
    color: rgba(255,255,255,0.7);
}

/* --- CTA (Contact) --- */
.cta {
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--gray-300);
}

/* --- FOOTER --- */
.footer {
    background: #132640;
    color: rgba(255,255,255,0.5);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-credentials {
    display: flex;
    gap: 24px;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 0.8rem;
}

/* --- SCROLL ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }

    .thinking-layout {
        grid-template-columns: 1fr 250px;
        gap: 40px;
    }

    .contact-layout {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 52px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    /* Nav mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-top: 1px solid var(--gray-100);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero mobile */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: 40px 24px;
        order: 1;
    }

    .hero-text-inner {
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        text-align: center;
    }

    .hero-image {
        order: 2;
        max-height: 350px;
    }

    /* Trust bar mobile */
    .trust-credentials {
        gap: 24px;
    }

    .trust-badge-org {
        font-size: 0.85rem;
    }

    /* Thinking mobile */
    .thinking-layout {
        grid-template-columns: 1fr;
    }

    .thinking-sidebar {
        position: static;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        aspect-ratio: 4/3;
        max-height: 350px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    /* Stats mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .logo-strip {
        gap: 20px;
    }

    .logo-strip img {
        height: 32px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .photo-grid img {
        height: 150px;
    }

    /* Plan mobile */
    .plan-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .plan-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .plan-step {
        padding: 20px;
    }

    /* Contact mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* CTA mobile */
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-credentials {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .trust-credentials {
        gap: 16px;
    }

    .trust-badge {
        flex: 0 0 calc(50% - 8px);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    .thinking-content h2 {
        font-size: 1.8rem;
    }

    .credentials {
        flex-direction: column;
    }

    .clients-text-grid {
        gap: 6px 12px;
    }
}
