/*
Theme Name: Forward Point Financial Marketing
Theme URI: https://forwardpointmarketing.com
Author: Forward Point
Description: WordPress theme for Forward Point Financial Marketing. Matches the static HTML site with editable content via Customizer.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: forward-point-financial-marketing
*/

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

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation - Floating & Minimal */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1600px;
    z-index: 1000;
    padding: 0.5rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(13, 74, 44, 0.08);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: 0;
}

.logo-img {
    height: 38px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    background: transparent;
    display: block;
}

/* Header company name - keep small; inline style in header.php is backup */
.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem !important;
    font-weight: 600;
    color: #0d4a2c;
    letter-spacing: -0.5px;
    display: none;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.logo-img:not([src]) + .logo-text,
.logo-img[src=""] + .logo-text {
    display: inline-block;
}

/* Force any text in navbar logo area to stay small (overrides cached/old CSS) */
.navbar .logo .logo-text {
    font-size: 0.8rem !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #0d4a2c;
}

.nav-cta {
    background: #0d4a2c;
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: #1a5f3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13, 74, 44, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: #2d2d2d;
    transition: all 0.3s;
}

/* Hero Section - Split & Dynamic */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-section .hero-deco-image {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: url('https://cdn.pixabay.com/photo/2014/01/30/18/26/skyline-255116_1280.jpg') center / cover no-repeat;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.45;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(13, 74, 44, 0.1);
    color: #0d4a2c;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-section h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #0d1a0d;
}

.hero-section h1 .highlight {
    color: #0d4a2c;
    position: relative;
}

.hero-section .tagline {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: #0d4a2c;
    color: white;
    box-shadow: 0 4px 20px rgba(13, 74, 44, 0.25);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 74, 44, 0.35);
    background: #1a5f3f;
}

.cta-secondary {
    background: transparent;
    color: #0d4a2c;
    border: 2px solid #0d4a2c;
}

.cta-secondary:hover {
    background: #0d4a2c;
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 500px;
    min-width: 340px;
    margin-left: auto;
    margin-right: 0;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 2rem 2.25rem;
    backdrop-filter: blur(10px);
}

/* Top right */
.hero-card-1 {
    top: 0;
    right: 0;
    width: 340px;
    max-width: 100%;
    border-left: 4px solid #8FA36A;
    z-index: 3;
}

/* Bottom left of visual */
.hero-card-2 {
    bottom: 20px;
    left: 0;
    width: 320px;
    max-width: 100%;
    border-top: 4px solid #8FA36A;
    z-index: 2;
}

.hero-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    margin-bottom: 0.9rem;
    color: #1a1a1a;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.hero-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Trust Indicators - Staggered Layout */
.trust-section {
    background: #8FA36A;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    text-align: center;
}

.trust-item {
    padding: 1rem;
    position: relative;
}

.trust-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

.trust-item:last-child::after {
    display: none;
}

.trust-item .number {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
    line-height: 1;
}

.trust-item .label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Services Section - Asymmetric Grid */
.services-section {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
}

.section-header {
    margin-bottom: 6rem;
    max-width: 700px;
}

.section-header .label {
    font-size: 0.85rem;
    color: #0d4a2c;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(13, 74, 44, 0.08);
    border-radius: 30px;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #0d1a0d;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: #fafafa;
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d4a2c, #1a5f3f);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: white;
    border-color: rgba(13, 74, 44, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Approach Section - Diagonal Split */
.approach-section {
    background: #2F3F33;
    color: white;
    padding: 140px 0;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(143, 163, 106, 0.1) 0%, transparent 100%);
}

.approach-section h2 {
    font-family: 'Inter', sans-serif;
    color: white;
    position: relative;
    z-index: 1;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.approach-item {
    padding: 2rem 0;
    position: relative;
}

.approach-number {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(243, 244, 238, 0.85);
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
}

.approach-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
    margin-top: 0;
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.approach-item p {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: #2F3F33;
    color: white;
    padding: 100px 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section:first-child p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 400px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    line-height: 2.2;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ========== Inner page styles (What We Do, Services, Our Clients, Insights, Contact) ========== */
.page-header {
    background: linear-gradient(135deg, #0d4a2c 0%, #1a5f3f 50%, #2d2d2d 100%);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}
.page-header p {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 1;
}
.content-section { padding: 120px 0; }
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.content-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #0d1a0d;
    line-height: 1.08;
    letter-spacing: -1px;
}
.content-text p { font-size: 1.15rem; color: #555; margin-bottom: 1.5rem; line-height: 1.9; }
.partner-links { margin-top: 1.25rem; }
.partner-links p { margin-bottom: 0.6rem; }
.partner-link-btn {
    display: inline-block;
    color: #0d4a2c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.partner-link-btn:hover { color: #1a5f3f; }
.highlight-box {
    background: linear-gradient(135deg, #0d4a2c 0%, #1a5f3f 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(13, 74, 44, 0.2);
    position: relative;
    overflow: hidden;
}
.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.highlight-box h3 { font-family: 'Inter', sans-serif; color: white; margin-bottom: 1.5rem; font-size: 2.2rem; position: relative; z-index: 1; }
.highlight-box h3 { line-height: 1.2; letter-spacing: -0.02em; }
.highlight-box p { color: rgba(255,255,255,0.95); margin-bottom: 1rem; line-height: 1.9; font-size: 1.1rem; position: relative; z-index: 1; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}
.value-card {
    background: #fafafa;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border-left: 4px solid #0d4a2c;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: white;
}
.value-card h3 { font-family: 'Inter', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; color: #1a1a1a; }
.value-card h3 { line-height: 1.24; letter-spacing: -0.02em; }
.value-card p { color: #555; line-height: 1.8; font-size: 1.05rem; }
.asset-classes-section {
    background: #1a1a1a;
    color: white;
    padding: 100px 40px;
}
.asset-classes-section .section-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.asset-classes-section .section-header .label {
    font-size: 0.85rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}
.asset-classes-beige .asset-class-label {
    color: #F3F4EE !important;
    background: transparent !important;
    border: 1px solid rgba(243, 244, 238, 0.45);
}
.asset-classes-section .section-header h2 { font-family: 'Inter', sans-serif; font-size: 3.5rem; font-weight: 900; margin-bottom: 1.5rem; color: white; line-height: 1.1; letter-spacing: -1.5px; }
.asset-classes-section .section-header p { font-size: 1.25rem; color: rgba(255,255,255,0.9); line-height: 1.8; }
.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.asset-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid #0d4a2c;
    transition: all 0.3s;
}
.asset-item:hover { background: rgba(255,255,255,0.08); transform: translateX(5px); }
.asset-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: white; }
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 100%; margin: 0 auto 4rem; }
.cta-section {
    background: linear-gradient(135deg, #2F3F33 0%, #8FA36A 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
}
.cta-section h2 { font-family: 'Inter', sans-serif; font-size: 3rem; font-weight: 900; margin-bottom: 1.5rem; letter-spacing: -1px; }
.cta-section p { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.95; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-button {
    display: inline-block;
    background: white;
    color: #0d4a2c;
    padding: 1.1rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.portfolio-section { padding: 100px 0; }
.portfolio-section .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Our Clients page – center all text content */
.our-clients-page .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.our-clients-page .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}
.our-clients-page .section-header .label {
    display: inline-block;
}
.resources-section { padding: 100px 0; }
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.resource-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.resource-card.resource-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border: 1px solid rgba(13, 74, 44, 0.1);
}
.resource-card.resource-card-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(13, 74, 44, 0.2);
}
.resource-card.resource-card-link:hover .resource-link {
    gap: 1rem;
}
.resource-content { padding: 2rem 2.5rem; }
.resource-content .category { font-size: 0.8rem; color: #0d4a2c; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 0.75rem; }
.resource-content h3 { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: #1a1a1a; line-height: 1.3; }
.resource-content h3 { letter-spacing: -0.02em; }
.resource-content p { color: #555; line-height: 1.7; margin-bottom: 1.25rem; font-size: 0.95rem; }
.resource-link { color: #0d4a2c; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s; }
.contact-section { padding: 100px 40px; }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.contact-form h2 { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; color: #1a1a1a; }
.contact-form p { color: #666; margin-bottom: 2.5rem; font-size: 1.05rem; }
.form-group { margin-bottom: 1.8rem; }
.form-group label { display: block; margin-bottom: 0.6rem; font-weight: 600; color: #1a1a1a; font-size: 0.95rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: #0d4a2c; background: white; }
.form-group textarea { resize: vertical; min-height: 150px; }
.submit-button {
    background: #0d4a2c;
    color: white;
    padding: 1.1rem 2.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    width: 100%;
}
.submit-button:hover { background: #1a5f3f; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(13, 74, 44, 0.3); }
.contact-info { padding: 1rem 0; }
.contact-info h2 { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 2rem; color: #1a1a1a; }
.info-item { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid #e5e5e5; }
.info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-item h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; color: #1a1a1a; }
.info-item p { color: #555; font-size: 1.05rem; line-height: 1.8; }
.info-item a { color: #0d4a2c; text-decoration: none; font-weight: 500; }
.info-item a:hover { text-decoration: underline; }
.contact-section .highlight-box { padding: 2.5rem; border-radius: 8px; margin-top: 2rem; }
.contact-section .highlight-box h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.contact-info .highlight-box { margin-top: 0; }
.contact-logo-wrap {
    position: relative;
    z-index: 1;
    margin-top: 2.35rem;
}
.contact-sidebar-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1.25rem;
    }
    
    .logo-img {
        height: 36px;
        max-width: 130px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .navbar {
        top: 15px;
        width: calc(100% - 30px);
        padding: 0.8rem 1.5rem;
        border-radius: 30px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 20px;
        margin-top: 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 36px;
        max-width: 120px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        height: 300px;
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-item::after {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .page-header {
        padding: 140px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
