* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #c49a6c;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    --accent-gradient: linear-gradient(135deg, #c49a6c 0%, #d4af78 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Protected name styling - prevents direct text indexing */
.leader-name-protected {
    display: inline-block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.lang-toggle {
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    margin-left: 1rem;
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 154, 108, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8));
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-content {
    padding: 60px 0;
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--accent-color);
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

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

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

/* Identity Section */
.identity {
    padding: 100px 0;
    background: var(--white);
}

.identity-content {
    max-width: 1000px;
    margin: 0 auto;
}

.identity-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.identity-intro .lead-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-section {
    margin-top: 4rem;
}

.philosophy-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.philosophy-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.philosophy-item {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.philosophy-subtitle {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.identity-text .lead-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.identity-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Company Overview, Why Section, Challenges Section */
.company-overview,
.why-section {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.challenges-section {
    margin: 4rem auto 0;
}

.overview-title,
.why-title,
.challenges-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.company-overview p,
.why-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.company-overview p:last-child,
.why-section p:last-child {
    margin-bottom: 0;
}

.philosophy-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.philosophy-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.philosophy-intro p:first-child {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.philosophy-intro p:last-child {
    margin-bottom: 0;
}

.challenges-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.challenge-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(196, 154, 108, 0.1);
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.challenge-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.challenge-title {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.challenge-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-light);
}

.challenges-conclusion {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: var(--white);
}

.expertise .section-title,
.expertise .section-subtitle {
    color: var(--white);
}

.expertise-grid-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expertise-card-large {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(196, 154, 108, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.expertise-card-large:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(196, 154, 108, 0.1);
    line-height: 1;
}

.expertise-card-large h3 {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.card-points {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.card-points li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.card-points li:before {
    content: "\2022 ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.card-detail {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196, 154, 108, 0.2);
}

.card-detail h4 {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.card-detail h4:first-child {
    margin-top: 0;
}

.card-detail p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.solution-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-points li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.solution-points li:before {
    content: "→";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.card-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.service-philosophy {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 1rem;
}

.service-philosophy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-philosophy strong {
    color: var(--primary-color);
    font-weight: 600;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-detailed {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-card-detailed h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.service-details h4 {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details h4:first-child {
    margin-top: 0;
}

.service-details p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Legacy service styles (keeping for compatibility) */
.services-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-compact {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-card-compact:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card-compact h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-compact p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-content {
    flex: 1;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid #e2e8f0;
}

.service-list li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Leadership Section */
.leadership {
    padding: 100px 0;
    background: var(--light-bg);
}

.leadership-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 1rem;
}

.leadership-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.leadership-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.leader-card-main {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.leader-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.leader-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border: 3px solid var(--accent-color);
}

.leader-card-main h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-position {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.leader-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.leader-quote {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.leader-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.leader-areas {
    list-style: none;
    padding: 0;
    text-align: left;
}

.leader-areas li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
}

.leader-areas li:before {
    content: "\2022 ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.advisory-board {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
}

.advisory-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.advisor-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.advisor-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.advisor-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.advisor-position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.advisor-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Insight Section */
.insight {
    padding: 100px 0;
    background: var(--white);
}

.insight-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.insight-intro h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.insight-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.insight-intro p:last-child {
    margin-bottom: 0;
}

.insight-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.insight-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s;
    border-left: 4px solid var(--accent-color);
}

.insight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-category {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.insight-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.insight-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.insight-link:hover {
    color: var(--accent-color);
}

.insight-card-hidden {
    display: none;
}

.insight-card-hidden.show {
    display: block;
}

.insight-card-mobile-hidden {
    display: none;
}

.insight-card-mobile-hidden.show {
    display: block;
}

@media (min-width: 769px) {
    .insight-card-mobile-hidden {
        display: block;
    }
}

.insight-read-more {
    text-align: center;
    margin-top: 3rem;
}

.insight-read-more .btn {
    min-width: 200px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.insight-read-more .btn:hover {
    background: var(--accent-color);
    color: var(--white);
}

.insight-disclaimer {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin-top: 3rem;
}

.insight-disclaimer p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Section Updates */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.contact-map {
    margin-top: 2rem;
}

.map-placeholder {
    background: #e2e8f0;
    height: 200px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder p:first-child {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Footer Updates */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 1.5rem 0 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin: 0;
    opacity: 0.5;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.625rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 102px;
        flex-direction: column;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .lang-toggle {
        position: absolute;
        right: 70px;
        top: 34px;
        transform: none;
        margin-left: 0;
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
        min-width: 48px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lang-toggle:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(196, 154, 108, 0.5);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .identity-features {
        grid-template-columns: 1fr;
    }

    .philosophy-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-overview,
    .why-section {
        padding: 2rem;
        margin: 3rem auto 0;
    }

    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .expertise-grid-four {
        grid-template-columns: 1fr;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

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

    .leadership-grid-new {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .lang-toggle {
        right: 60px;
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }

    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-indicators {
        bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

    .services-grid-six {
        grid-template-columns: 1fr;
    }

    .company-overview,
    .why-section,
    .challenges-section {
        padding: 1.5rem;
        margin: 2rem auto 0;
    }

    .overview-title,
    .why-title,
    .challenges-title {
        font-size: 1.5rem;
    }

    .overview-text,
    .why-text,
    .philosophy-intro p,
    .challenges-intro,
    .challenge-desc,
    .challenges-conclusion {
        font-size: 0.95rem;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .challenge-card {
        padding: 1.25rem;
    }

    .challenge-icon {
        font-size: 1.75rem;
    }

    .challenge-title {
        font-size: 0.95rem;
    }

    .challenge-desc {
        font-size: 0.85rem;
    }

    .philosophy-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .philosophy-item {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Section Title & Subtitle */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Form Elements */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #d4af78;
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-social {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: none;
}

.social-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== NEW SECTIONS (2026 Update) ===== */

/* Consultation Process Section */
.consultation {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.consultation .section-title,
.consultation .section-subtitle {
    color: #ffffff;
}

.consultation-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(196, 154, 108, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    flex: 1;
    min-width: 130px;
    max-width: 155px;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #c49a6c;
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c49a6c 0%, #d4af78 100%);
    color: #0f172a;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.step-en-label {
    font-size: 0.75rem;
    color: #c49a6c;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}

.step-connector span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(196, 154, 108, 0.4);
}

/* UAE/ADGM Section */
.uae-section {
    padding: 100px 0;
    background: #ffffff;
}

.uae-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
}

.uae-sub-title {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

/* UAE Advantages */
.uae-advantages {
    margin-bottom: 4rem;
}

.uae-advantage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.uae-advantage-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(196, 154, 108, 0.15);
    transition: all 0.3s;
}

.uae-advantage-item:hover {
    transform: translateY(-3px);
    border-color: #c49a6c;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.advantage-icon {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.uae-advantage-item h4 {
    font-size: 1rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.uae-advantage-item p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* ADGM Section */
.adgm-section {
    margin-bottom: 4rem;
}

.adgm-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
}

/* Golden Visa Section */
.golden-visa-section {
    margin-bottom: 4rem;
}

.golden-visa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.golden-visa-info,
.golden-visa-process {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(196, 154, 108, 0.15);
}

.golden-visa-info h4,
.golden-visa-process h4 {
    font-size: 1.15rem;
    color: #1a365d;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.golden-visa-list {
    list-style: none;
    padding: 0;
}

.golden-visa-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.golden-visa-list li:last-child {
    border-bottom: none;
}

.golden-visa-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.visa-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.visa-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visa-step-num {
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.visa-step p {
    color: #334155;
    font-size: 0.95rem;
    margin: 0;
}

.visa-refund {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
}

.visa-refund strong {
    color: #c49a6c;
}

.golden-visa-note {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Korea Connection */
.korea-connection-section {
    margin-bottom: 3rem;
}

.korea-connection-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #1a365d;
    line-height: 1.8;
    font-weight: 600;
}

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

.korea-item {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(196, 154, 108, 0.15);
    transition: all 0.3s;
}

.korea-item:hover {
    transform: translateY(-3px);
    border-color: #c49a6c;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.korea-icon {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.korea-item h4 {
    font-size: 1.05rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.korea-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* CFC Warning */
.uae-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.warning-icon {
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.uae-warning p {
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.uae-warning strong {
    color: #92400e;
}

.uae-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.uae-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.uae-card:hover {
    transform: translateY(-5px);
    border-color: #c49a6c;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.uae-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.uae-card h3 {
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.uae-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* Partner Network Section */
.network-section {
    padding: 100px 0;
    background: #ffffff;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.network-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(196, 154, 108, 0.1);
}

.network-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #c49a6c;
}

.network-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-item h4 {
    font-size: 0.9rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.network-item p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* ===== SUMMARY SECTION (At-a-Glance) ===== */
.summary-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border-bottom: 1px solid rgba(196, 154, 108, 0.15);
}

.summary-three-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 2.5rem 3rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(196, 154, 108, 0.15);
}

.summary-item {
    flex: 1;
    text-align: center;
}

.summary-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.summary-item p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.summary-divider {
    width: 1px;
    height: 60px;
    background: rgba(196, 154, 108, 0.3);
    flex-shrink: 0;
}

.before-after-section {
    max-width: 900px;
    margin: 0 auto;
}

.before-after-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.before-after-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.before-after-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 154, 108, 0.15);
    transition: all 0.3s;
}

.before-after-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.ba-before,
.ba-after {
    flex: 1;
}

.ba-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.ba-before .ba-label {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.ba-after .ba-label {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.ba-before p,
.ba-after p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.ba-arrow {
    flex-shrink: 0;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

/* ===== PERSONA CARDS (Expertise Redesign) ===== */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

/* Center the last row of 2 cards in 5-card grid */
.persona-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.persona-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.5rem);
}
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(196, 154, 108, 0.15);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.persona-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.persona-icon {
    color: var(--accent-color);
    margin-bottom: 1.25rem;
}

.persona-card h3 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.persona-concern {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(196, 154, 108, 0.2);
    line-height: 1.5;
}

.persona-needs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.persona-needs li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.persona-needs li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.persona-cta {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding-top: 0.5rem;
}

.persona-cta:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* ===== CASE SCENARIO SECTION ===== */
.cases-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.case-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.case-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(196, 154, 108, 0.15);
    transition: all 0.3s;
}

.case-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.case-header {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(196, 154, 108, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-tag {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.case-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.case-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
}

.case-step {
    padding: 1.5rem;
    position: relative;
    border-right: 1px solid rgba(196, 154, 108, 0.1);
}

.case-step:last-child {
    border-right: none;
}

.case-step-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.case-step p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.case-step:last-child .case-step-label {
    color: #16a34a;
}

.case-step:last-child {
    background: rgba(34, 197, 94, 0.03);
}

/* ===== SECTION CTA ===== */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta .btn {
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.section-cta .btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
}

.section-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 154, 108, 0.4);
}

/* Expertise section CTA overrides */
.expertise .section-cta .btn-primary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--white);
}

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

/* Consultation section CTA overrides */
.consultation .section-cta .btn-primary {
    background: var(--accent-gradient);
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== CONSULTATION TIMELINE ENHANCEMENT ===== */
.consultation .consultation-steps {
    position: relative;
}

.consultation .step-card {
    position: relative;
}

.consultation .step-card::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.3s;
    border-radius: 2px;
}

.consultation .step-card:hover::after {
    width: 60%;
}

/* ===== RESPONSIVE: ALL NEW SECTIONS ===== */
@media (max-width: 968px) {
    /* Summary */
    .summary-three-lines {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .summary-divider {
        width: 60px;
        height: 1px;
        background: rgba(196, 154, 108, 0.3);
    }

    /* Persona */
    .persona-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    /* Before/After */
    .before-after-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .ba-arrow {
        transform: rotate(90deg);
    }

    /* Case */
    .case-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-step {
        border-right: none;
        border-bottom: 1px solid rgba(196, 154, 108, 0.1);
    }

    .case-step:nth-child(odd) {
        border-right: 1px solid rgba(196, 154, 108, 0.1);
    }

    .case-step:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* Consultation */
    .consultation-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
    }
    
    .step-connector {
        padding: 0.5rem 0;
    }
    
    .step-connector span {
        width: 2px;
        height: 20px;
    }
    
    /* UAE */
    .uae-grid {
        grid-template-columns: 1fr;
    }

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

    .golden-visa-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    /* Summary */
    .summary-three-lines {
        padding: 1.5rem;
    }

    .summary-item p {
        font-size: 0.9rem;
    }

    .before-after-title {
        font-size: 1.25rem;
    }

    /* Persona */
    .persona-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    /* Case */
    .case-timeline {
        grid-template-columns: 1fr;
    }

    .case-step {
        border-right: none !important;
        border-bottom: 1px solid rgba(196, 154, 108, 0.1);
    }

    .case-step:last-child {
        border-bottom: none;
    }

    .case-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .case-header h3 {
        font-size: 1.05rem;
    }

    /* Network */
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

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

    .korea-grid {
        grid-template-columns: 1fr;
    }

    .uae-warning {
        flex-direction: column;
        padding: 1.25rem;
    }

    /* Section CTA */
    .section-cta .btn {
        width: 100%;
    }
}
