/*
Theme Name: Sagamore Global Consulting
Theme URI: https://sagamoreglobalconsulting.com
Author: Sagamore Global Consulting
Description: Custom WordPress theme for Sagamore Global Consulting — bilingual (Japanese/English) sales consulting site for the U.S. market.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: sagamore
Tags: business, consulting, bilingual, responsive
*/

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

:root {
    --navy:       #1B2D4F;
    --blue:       #2E6DA4;
    --blue-light: #4A8FC2;
    --red:        #C0392B;
    --red-light:  #E74C3C;
    --white:      #FFFFFF;
    --off-white:  #F8F9FA;
    --gray-100:   #F1F3F5;
    --gray-200:   #E9ECEF;
    --gray-500:   #6C757D;
    --gray-700:   #495057;
    --dark:       #1A1A2E;
    --font-en:    'Raleway', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-ja:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
    --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);
    --radius:     4px;
    --transition: 0.25s ease;
    --container:  1100px;
    --header-h:   130px;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-en);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
:lang(ja) body, .lang-ja { font-family: var(--font-ja); }

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1,h2,h3,h4 { line-height: 1.3; color: var(--navy); font-weight: 700; }

/* =========================================
   LAYOUT
   ========================================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}
.section-pad { padding: 5rem 0; }

/* =========================================
   HEADER
   ========================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }
.site-logo { padding-top: 12px; }

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 2rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.logo-sub {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--red);
    transition: left var(--transition), right var(--transition);
}
.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after,
.main-nav a.active::after { left: 0.9rem; right: 0.9rem; }
.main-nav a.active { color: var(--blue); }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.lang-switcher .flag { font-size: 1.2rem; }
.lang-switcher .lang-sep { color: var(--gray-500); font-size: 0.85rem; }
.lang-switcher a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    transition: color var(--transition);
}
.lang-switcher a:hover,
.lang-switcher a.current { color: var(--navy); }
.lang-switcher a.current { text-decoration: underline; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
    margin-top: var(--header-h);
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-h));
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?w=1800&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
/* Dark overlay so text is readable */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 50, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 820px;
}
.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-cta {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(192,57,43,0.4);
}
.hero-cta:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.5);
}

/* =========================================
   INTRO SECTION
   ========================================= */
#intro {
    background: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
}
.intro-inner {
    max-width: 820px;
    margin: 0 auto;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    margin-bottom: 1rem;
}
#intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 0.75rem;
}
.divider {
    width: 48px; height: 3px;
    background: var(--red);
    margin: 1.25rem auto;
    border-radius: 2px;
}
#intro p {
    font-size: 1.08rem;
    color: var(--gray-500);
    line-height: 1.85;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   MISSION SECTION
   ========================================= */
#mission {
    background: var(--navy);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#mission::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(46,109,164,0.25) 0%, transparent 70%);
    pointer-events: none;
}
#mission::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.mission-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.mission-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red-light);
    margin-bottom: 1rem;
}
#mission h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}
.mission-divider {
    width: 48px; height: 3px;
    background: var(--red);
    margin: 0 auto 2rem;
    border-radius: 2px;
}
#mission p {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
}

/* =========================================
   CHALLENGES / CONTENT SECTION
   ========================================= */
#challenges {
    background: var(--off-white);
    padding: 5rem 0;
}
.challenges-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.challenges-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.5rem;
}
.challenges-text p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}
.challenges-text p:last-child { margin-bottom: 0; }

.challenges-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.insight-card {
    background: var(--white);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.insight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.insight-card.accent { border-left-color: var(--red); }
.insight-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.insight-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* =========================================
   STATS BAR
   ========================================= */
#stats {
    background: var(--blue);
    padding: 3.5rem 0;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    line-height: 1.4;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
#contact {
    background: var(--white);
    padding: 5rem 0;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.8;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.c-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #EBF5FB;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--blue);
}
.c-text strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 0.2rem;
}
.c-text span { font-size: 0.95rem; color: var(--navy); font-weight: 500; }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 0.3rem; font-size: 1.2rem; }
.contact-form-wrap > p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.7rem 0.9rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-en);
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(46,109,164,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    width: 100%;
    padding: 0.9rem 2rem;
    background: var(--navy);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--blue); transform: translateY(-1px); }

/* Form feedback */
.form-success {
    background: #D5F5E3; color: #1E8449;
    padding: 0.9rem 1.2rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.form-error {
    background: #FADBD8; color: #922B21;
    padding: 0.9rem 1.2rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 0 2rem;
    border-top: 3px solid var(--red);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.7); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 280px; }

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-light); transform: translateY(-1px); }

/* =========================================
   PAGE HERO BANNER (interior pages)
   ========================================= */
.page-hero {
    margin-top: var(--header-h);
    background: var(--navy);
    padding: 3rem 0;
    border-bottom: 3px solid var(--red);
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0;
}
.page-hero-en {
    font-size: 0.6em;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
}

/* =========================================
   SERVICE PAGE
   ========================================= */
.service-intro {
    max-width: 860px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.service-intro h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    margin-bottom: 1.25rem;
}
.service-intro p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.9;
}

.service-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-img-wrap img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 400px;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    padding: 1rem 0 1.2rem;
    border-bottom: 1px solid var(--gray-200);
}
.service-item:first-child { border-top: 1px solid var(--gray-200); }

.service-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.service-item h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}
.service-item p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.75;
    padding-left: 1rem;
}

/* Market Entry dark section */
.market-entry-section {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.market-entry-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(46,109,164,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.market-entry-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.market-entry-text h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.25rem;
}
.market-entry-text p {
    color: rgba(255,255,255,0.82);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.market-entry-features {
    margin: 1.75rem 0;
}
.features-label {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.market-entry-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.market-entry-features li {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    line-height: 1.6;
    padding-left: 1.2rem;
    position: relative;
}
.market-entry-features li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--red-light);
}

.market-entry-img img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 380px;
}

/* Assessment screenshot — full-width, bottom of section */
.market-entry-screenshot {
    margin-top: 3.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.market-entry-screenshot img {
    width: 100%;
    max-width: 760px;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* Service CTA button */
.btn-service-cta {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition);
    margin-top: 0.5rem;
}
.btn-service-cta:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}

/* Service contact CTA */
.service-contact-cta {
    background: var(--gray-100);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}
.cta-box {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-box h2 { margin-bottom: 0.75rem; }
.cta-box p  { color: var(--gray-500); margin-bottom: 1.75rem; line-height: 1.8; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-bio-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-bio-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--navy);
}
.about-bio-text p {
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.about-credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}
.credential-item { text-align: center; flex: 1; min-width: 80px; }
.credential-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.credential-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 0.4rem;
    line-height: 1.4;
}
.about-bio-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.about-card {
    background: var(--gray-100);
    border-left: 3px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
}
.about-card.accent { border-left-color: var(--red); }
.about-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}
.about-card p, .about-card li {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.7;
}
.about-card ul { padding-left: 1rem; }
.about-card li { margin-bottom: 0.35rem; }

/* About page – CEO photo */
.about-bio-photo {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.about-bio-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--blue);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .about-bio-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-credentials { gap: 1rem; }
}

/* =========================================
   APPROACH / METHODOLOGY PAGE
   ========================================= */
.approach-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.approach-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    margin-bottom: 1.25rem;
}
.approach-text p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.1rem;
}

/* Text + image layout inside approach text column */
.approach-text-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.approach-text-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    max-height: 300px;
}
@media (max-width: 768px) {
    .approach-text-with-image { grid-template-columns: 1fr; }
    .approach-text-img { order: -1; }
}

/* Victory Formula */
.victory-formula {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.vf-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}
.vf-diagram svg {
    width: 100%;
    height: auto;
}
.vf-legend {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--gray-500);
    font-style: italic;
}

/* Section header left-aligned */
.section-header-left { margin-bottom: 0; }
.section-header-left h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

/* Pillars grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
}
.pillar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pillar-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: var(--font-en);
}

.pillar-card h3 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.pillar-card h3 span {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 0.2rem;
}
.pillar-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .challenges-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1.5rem; }
    .stat-item:nth-child(2n) { border-bottom: none; }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }
    .section-pad { padding: 3.5rem 0; }

    .main-nav { display: none; }
    .main-nav.open {
        display: block;
        position: absolute;
        top: var(--header-h); left: 0; right: 0;
        background: var(--white);
        border-bottom: 3px solid var(--red);
        padding: 1.5rem 2rem;
        box-shadow: var(--shadow-md);
    }
    .main-nav.open ul { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
    .hamburger { display: flex; }

    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-row { grid-template-columns: 1fr 1fr; }

    .logo-name { font-size: 1.2rem; }
    .logo-sub  { font-size: 0.55rem; }
    .logo-icon { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.7rem; }
}

@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .service-two-col   { grid-template-columns: 1fr; gap: 2rem; }
    .market-entry-inner{ grid-template-columns: 1fr; gap: 2.5rem; }
    .approach-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
    .pillars-grid      { grid-template-columns: 1fr; }
    .service-img-wrap img { max-height: 260px; }
    .market-entry-img  { display: none; }
    .page-hero         { padding: 2rem 0; }
}
