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

:root {
    --charcoal-900: #111827;
    --charcoal-800: #1F2937;
    --charcoal-700: #374151;
    --charcoal-600: #4B5563;
    --charcoal-500: #6B7280;
    --charcoal-400: #9CA3AF;
    --charcoal-100: #F3F4F6;
    --charcoal-50: #F9FAFB;
    --coral-500: #F97583;
    --coral-400: #FB9A9F;
    --coral-300: #FECACA;
    --coral-600: #E85D6B;
    --white: #FFFFFF;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal-800);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s var(--ease-smooth);
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--charcoal-900);
    letter-spacing: -0.02em;
}

.logo-icon {
    color: var(--coral-500);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-600);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--charcoal-900);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal-700);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease-smooth);
    letter-spacing: 0.01em;
    text-align: center;
}

.btn-primary {
    background: var(--charcoal-900);
    color: var(--white);
    border-color: var(--charcoal-900);
}

.btn-primary:hover {
    background: var(--charcoal-700);
    border-color: var(--charcoal-700);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal-700);
    border-color: var(--charcoal-300);
}

.btn-outline:hover {
    border-color: var(--charcoal-700);
    color: var(--charcoal-900);
}

.btn-coral {
    background: var(--coral-500);
    color: var(--white);
    border-color: var(--coral-500);
}

.btn-coral:hover {
    background: var(--coral-600);
    border-color: var(--coral-600);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--charcoal-900);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--charcoal-100);
    transform: translateY(-1px);
}

.btn-outline-coral {
    background: transparent;
    color: var(--coral-500);
    border-color: var(--coral-500);
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

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

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 120px,
        rgba(0, 0, 0, 0.018) 120px,
        rgba(0, 0, 0, 0.018) 121px
    );
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.label-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--coral-500);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--charcoal-900);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-accent {
    color: var(--coral-500);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-500);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal-900);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--charcoal-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--charcoal-100);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 680/820;
    background: var(--charcoal-100);
}

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

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.2), transparent);
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--charcoal-900);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-badge svg {
    color: var(--coral-500);
}

/* ── Section Shared ── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--charcoal-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--charcoal-500);
    max-width: 560px;
    font-weight: 300;
    line-height: 1.75;
}

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

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

.section-header.center .section-subtitle {
    margin: 0 auto;
}

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

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

.service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--coral-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--charcoal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--charcoal-700);
    transition: all 0.3s var(--ease-smooth);
}

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

.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal-900);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.925rem;
    color: var(--charcoal-500);
    line-height: 1.75;
    font-weight: 300;
}

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

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

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 580/480;
    background: var(--charcoal-100);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 300/220;
    border: 6px solid var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: var(--charcoal-100);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -24px;
    right: -24px;
    background: var(--coral-500);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 32px rgba(249, 117, 131, 0.3);
}

.about-experience .exp-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.about-experience .exp-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

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

.about-text {
    font-size: 1rem;
    color: var(--charcoal-500);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-values {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--charcoal-700);
    font-weight: 400;
}

.value-item svg {
    color: var(--coral-500);
    flex-shrink: 0;
}

/* ── Process ── */
.process {
    padding: 120px 0;
    background: var(--charcoal-900);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 120px,
        rgba(255, 255, 255, 0.015) 120px,
        rgba(255, 255, 255, 0.015) 121px
    );
    pointer-events: none;
}

.process .section-header {
    position: relative;
    z-index: 1;
}

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

.process .section-subtitle {
    color: var(--charcoal-400);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--charcoal-600);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-smooth);
}

.process-step:hover .step-number {
    -webkit-text-stroke-color: var(--coral-500);
    color: var(--coral-500);
    opacity: 0.15;
}

.step-line {
    width: 40px;
    height: 1px;
    background: var(--charcoal-600);
    margin: 0 auto 20px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--charcoal-400);
    line-height: 1.75;
    font-weight: 300;
    max-width: 240px;
    margin: 0 auto;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 100px 0;
    background: var(--coral-500);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
    max-width: 460px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

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

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

.contact-info {
    padding-top: 10px;
}

.contact-text {
    font-size: 1rem;
    color: var(--charcoal-500);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal-600);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal-400);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal-700);
    font-weight: 400;
    line-height: 1.6;
}

.contact-value:hover {
    color: var(--coral-500);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ── Contact Form ── */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal-900);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--charcoal-400);
    margin-bottom: 32px;
    font-weight: 300;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal-600);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--charcoal-100);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal-800);
    background: var(--white);
    transition: all 0.2s;
    outline: none;
    -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral-500);
    box-shadow: 0 0 0 3px rgba(249, 117, 131, 0.1);
}

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

.form-privacy {
    font-size: 0.75rem;
    color: var(--charcoal-400);
    margin-top: 16px;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

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

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(249, 117, 131, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--coral-500);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal-900);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--charcoal-500);
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--charcoal-900);
    padding: 80px 0 0;
}

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

.footer-desc {
    font-size: 0.9rem;
    color: var(--charcoal-400);
    line-height: 1.75;
    margin-top: 20px;
    max-width: 280px;
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.875rem;
    color: var(--charcoal-400);
    transition: color 0.2s;
    font-weight: 300;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--coral-500);
}

.footer-contact li {
    font-size: 0.875rem;
    color: var(--charcoal-400);
    line-height: 1.7;
    font-weight: 300;
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--charcoal-500);
    font-weight: 300;
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-smooth);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal-900);
    letter-spacing: -0.02em;
    padding: 12px 24px;
    transition: color 0.2s;
}

.mobile-menu-link:hover {
    color: var(--coral-500);
}

.mobile-cta {
    margin-top: 16px;
    font-size: 1rem !important;
    color: var(--coral-500) !important;
}

.mobile-contact {
    margin-top: 32px;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--charcoal-500);
    font-weight: 400;
}

/* ── Reveal Animations ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

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

    .reveal:nth-child(2) { transition-delay: 0.08s; }
    .reveal:nth-child(3) { transition-delay: 0.16s; }
    .reveal:nth-child(4) { transition-delay: 0.24s; }
    .reveal:nth-child(5) { transition-delay: 0.32s; }
    .reveal:nth-child(6) { transition-delay: 0.40s; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-image {
        order: -1;
    }

    .hero-image-wrapper {
        aspect-ratio: 4/3;
    }

    .hero-badge {
        bottom: -12px;
        left: 12px;
        padding: 12px 16px;
        font-size: 0.8rem;
    }

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

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

    .hero-stats {
        gap: 20px;
    }

    .services {
        padding: 80px 0;
    }

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

    .about {
        padding: 80px 0;
    }

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

    .about-image-secondary {
        right: -16px;
        bottom: -24px;
    }

    .about-experience {
        right: -12px;
        top: -16px;
    }

    .process {
        padding: 80px 0;
    }

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

    .cta-banner {
        padding: 64px 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        max-width: 100%;
    }

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

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

    .contact {
        padding: 80px 0;
    }

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

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

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

    .footer {
        padding: 60px 0 0;
    }

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

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

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

    .nav-inner {
        padding: 0 20px;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }
}
