/* ========================================
   Mars — Legal & Financial Services
   Classic & Elegant Design System
   ======================================== */

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

:root {
    --forest: #1B4332;
    --forest-deep: #0D2818;
    --forest-mid: #2D6A4F;
    --forest-light: #40916C;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8E0D0;
    --gold: #C9A84C;
    --gold-light: #D4B86A;
    --gold-muted: #B8943F;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --white: #FFFFFF;
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06), 0 1px 2px rgba(27, 67, 50, 0.04);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.08), 0 2px 8px rgba(27, 67, 50, 0.04);
    --shadow-lg: 0 12px 48px rgba(27, 67, 50, 0.12), 0 4px 16px rgba(27, 67, 50, 0.06);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--cream-light);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--forest);
}

.section-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 4px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
}

.btn-primary:hover {
    background: var(--forest-deep);
    border-color: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn-ghost:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-ghost .btn-lg svg {
    width: 18px;
    height: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.4);
    font-size: 0.8125rem;
    padding: 10px 20px;
}

.btn-outline:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--cream);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.9375rem;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cream);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(245, 240, 232, 0.4);
    border-radius: 4px;
    transition: all var(--transition);
}

.logo-text {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.header.scrolled .logo-mark,
.header.scrolled .logo-text {
    color: var(--forest);
    border-color: var(--forest);
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.8);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.nav a:hover {
    color: var(--cream);
    background: rgba(245, 240, 232, 0.1);
}

.header.scrolled .nav a {
    color: var(--text-mid);
}

.header.scrolled .nav a:hover {
    color: var(--forest);
    background: rgba(27, 67, 50, 0.06);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all var(--transition);
    box-shadow: 0 -7px 0 0 var(--cream), 0 7px 0 0 var(--cream);
}

.mobile-toggle.active .hamburger {
    background: transparent;
    box-shadow: none;
}

.mobile-toggle.active .hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 1.5px;
    background: var(--forest);
    transform: rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 1.5px;
    background: var(--forest);
    transform: rotate(-45deg);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--forest-deep);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(45, 106, 79, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(180, 140, 50, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(27, 67, 50, 0.9) 0%, transparent 70%),
        linear-gradient(160deg, #0D2818 0%, #1B4332 40%, #2D6A4F 70%, #1B4332 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 820px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-headline br {
    display: none;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(245, 240, 232, 0.7);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid rgba(245, 240, 232, 0.12);
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(245, 240, 232, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245, 240, 232, 0.4), transparent);
    animation: scrollPulse 2s infinite;
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream-light);
}

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

.about-image-wrap {
    position: relative;
}

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

.about-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.4;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-values {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-mid);
}

.value-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Services --- */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services .section-header {
    margin-bottom: 64px;
}

.services .section-lead {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: 6px;
    padding: 40px 32px;
    border: 1px solid rgba(27, 67, 50, 0.08);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--forest);
}

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

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--forest);
}

.service-card > p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 0.875rem;
    color: var(--text-mid);
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* --- Approach --- */
.approach {
    padding: 120px 0;
    background: var(--cream-light);
}

.approach-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.approach-header .section-title {
    margin-bottom: 16px;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.step-number {
    display: inline-block;
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}

.step:hover .step-number {
    color: var(--gold-muted);
    opacity: 0.6;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--forest);
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(45, 106, 79, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(180, 140, 50, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #0D2818 0%, #1B4332 50%, #2D6A4F 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
}

.cta-content .section-eyebrow {
    color: var(--gold-light);
}

.cta-content .section-title {
    color: var(--cream);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-actions .btn-ghost {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.4);
}

.cta-actions .btn-ghost:hover {
    background: var(--cream);
    color: var(--forest);
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--forest);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

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

.contact-item a {
    color: var(--text-mid);
    transition: color var(--transition-fast);
}

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

/* --- Form --- */
.contact-form-wrap {
    background: var(--white);
    border-radius: 8px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1.5px solid var(--cream-dark);
    border-radius: 4px;
    outline: none;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}

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

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
    line-height: 1.5;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: var(--forest);
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

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

.form-success .btn {
    font-size: 0.875rem;
    padding: 12px 28px;
}

/* --- Footer --- */
.footer {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 64px;
}

.footer-brand .logo-mark,
.footer-brand .logo-text {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.3);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.55);
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--cream);
}

.footer-col p {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.35);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

    .step:not(:last-child)::after {
        display: none;
    }

    .about-grid {
        gap: 48px;
    }

    .contact-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        inset: 0;
        background: rgba(13, 40, 24, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav ul {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .nav a {
        font-size: 1.125rem;
        color: rgba(245, 240, 232, 0.8);
        padding: 12px 24px;
    }

    .nav a:hover {
        color: var(--cream);
        background: rgba(245, 240, 232, 0.08);
    }

    .nav .btn-outline {
        margin-top: 16px;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

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

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

    .about-image-wrap img {
        height: 360px;
    }

    .about-accent {
        display: none;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .approach-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step {
        text-align: left;
        padding: 24px;
        background: var(--white);
        border-radius: 6px;
        border: 1px solid rgba(27, 67, 50, 0.06);
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .services,
    .about,
    .approach,
    .contact {
        padding: 80px 0;
    }

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