/* ===== CSS Custom Properties ===== */
:root {
    --forest-950: #0a2e1a;
    --forest-900: #0f3d23;
    --forest-800: #1a4d2e;
    --forest-700: #22633a;
    --forest-600: #2d7a4a;
    --forest-500: #3a8f58;
    --forest-400: #52a872;
    --forest-300: #7fbf96;
    --forest-200: #b2d4b8;
    --forest-100: #dcecdE;
    --forest-50: #edf5ef;
    
    --cream-50: #faf9f6;
    --cream-100: #f5f3ee;
    --cream-200: #ebe8e0;
    --cream-300: #d4d0c6;
    
    --text-dark: #1a1a18;
    --text-medium: #3d3d38;
    --text-light: #6b6b64;
    --text-muted: #9a9a92;
    
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(10, 46, 26, 0.06), 0 1px 2px rgba(10, 46, 26, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 46, 26, 0.08), 0 2px 6px rgba(10, 46, 26, 0.04);
    --shadow-lg: 0 12px 40px rgba(10, 46, 26, 0.12), 0 4px 12px rgba(10, 46, 26, 0.06);
    --shadow-xl: 0 20px 60px rgba(10, 46, 26, 0.15), 0 8px 20px rgba(10, 46, 26, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--forest-800);
    transition: var(--transition-fast);
}

.nav-logo:hover {
    color: var(--forest-700);
}

.nav-logo-icon {
    color: var(--forest-700);
}

.navbar.scrolled .nav-logo-icon {
    color: var(--forest-700);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.nav-phone) {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a:not(.nav-phone):hover {
    color: var(--forest-700);
}

.nav-links a:not(.nav-phone)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-600);
    border-radius: 1px;
    transition: var(--transition-base);
}

.nav-links a:not(.nav-phone):hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest-700);
    background: var(--forest-50);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-phone:hover {
    background: var(--forest-100);
    color: var(--forest-800);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-dark);
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--forest-700);
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--forest-700);
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--forest-700);
    margin-top: 1rem;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    padding: 8rem 1.5rem 4rem;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(26, 77, 46, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 122, 74, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(26, 77, 46, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--forest-600);
    background: var(--forest-50);
    border: 1px solid var(--forest-200);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.headline-accent {
    color: var(--forest-700);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
}

.trust-item svg {
    color: var(--forest-600);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 500/620;
}

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

.hero-image-accent {
    position: absolute;
    bottom: -1rem;
    left: -2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-50);
    width: 200px;
}

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

.hero-floating-card {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: var(--forest-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-700);
    flex-shrink: 0;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.floating-card-text strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.938rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest-700);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26, 77, 46, 0.3);
}

.btn-primary:hover {
    background: var(--forest-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--cream-300);
}

.btn-secondary:hover {
    border-color: var(--forest-300);
    color: var(--forest-700);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--text-dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--forest-800);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--forest-800);
}

.btn-light:hover {
    background: var(--forest-50);
    transform: translateY(-2px);
}

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

/* ===== Section Styles ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest-600);
    background: var(--forest-50);
    border: 1px solid var(--forest-200);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-tag-light {
    color: var(--forest-200);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.063rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
}

/* ===== Services Section ===== */
.services {
    padding: 6rem 1.5rem;
    background: var(--cream-100);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--forest-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-700);
    margin-bottom: 1.25rem;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--forest-700);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-sans);
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
}

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

/* ===== About Section ===== */
.about {
    padding: 6rem 1.5rem;
    background: var(--cream-50);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.about-experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--forest-800);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-experience-badge .exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.about-content-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-text {
    font-size: 1.063rem;
    color: var(--text-medium);
    line-height: 1.75;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin-top: 0.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-dark);
}

.value-check {
    width: 22px;
    height: 22px;
    background: var(--forest-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-700);
    flex-shrink: 0;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 6rem 1.5rem;
    background: var(--forest-800);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.04) 0%, transparent 60%),
                      radial-gradient(ellipse at 70% 100%, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.why-us-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-us-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.why-card-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.why-card h3 {
    font-family: var(--font-sans);
    font-size: 1.188rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.625rem;
}

.why-card p {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

.why-us-cta {
    text-align: center;
}

.why-us-cta p {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 6rem 1.5rem;
    background: var(--cream-100);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-intro {
    font-size: 1.063rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-700);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-detail-text strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-detail-text a,
.contact-detail-text span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-detail-text a:hover {
    color: var(--forest-700);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form-card > p {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.938rem;
    color: var(--text-dark);
    background: var(--cream-50);
    border: 1.5px solid var(--cream-200);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 122, 74, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--forest-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-700);
    margin: 0 auto 1.25rem;
}

.form-success h4 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--forest-950);
    color: var(--white);
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.25rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Scroll Reveal (Progressive Enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-image-accent {
        left: -1rem;
        width: 160px;
    }
    
    .hero-floating-card {
        right: -0.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-floating-card {
        right: 0;
        top: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-experience-badge {
        right: 1rem;
        bottom: -1rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.688rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-floating-card {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        justify-self: center;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .services,
    .about,
    .why-us,
    .contact {
        padding: 4rem 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}
