@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Oswald:wght@500;600;700&display=swap');

:root {
    --primary: #2D2D2D;
    --primary-dark: #1A1A1A;
    --accent: #1D6BB5;
    --accent-light: #3A8FE0;
    --text: #374151;
    --text-muted: #6B7280;
    --bg: #FFFFFF;
    --bg-alt: #F8FAFD;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.1), 0 6px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 32px 64px rgba(0,0,0,0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: 0.01em;
}

h1, h2 { font-weight: 700; }
h3, h4 { font-weight: 600; }

p { margin-bottom: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

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

section { padding: 6rem 0; }

/* Section Label */
.section-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: #E8F0FE;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-title > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    line-height: 1;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29,107,181,0.35);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* ━━━━━━━━━━ HEADER ━━━━━━━━━━ */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}

header.scrolled {
    padding: 0.6rem 0;
    box-shadow: var(--shadow);
}

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

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.03em;
}

.logo-icon { flex-shrink: 0; }

.logo i { color: var(--accent); }

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

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text);
}

.nav-links a:not(.nav-cta):hover { color: var(--primary); }

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.75rem;
}

.lang-btn {
    padding: 0.15rem;
    border: none;
    background: transparent;
    line-height: 0;
    border-radius: 4px;
    opacity: 0.45;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--accent);
}

.lang-btn:not(.active):hover {
    opacity: 0.8;
}

.lang-btn .flag {
    height: 18px;
    width: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.menu-toggle {
    display: none;
    font-size: 1.35rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: 0.25rem;
}

/* ━━━━━━━━━━ HERO ━━━━━━━━━━ */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(rgba(20,20,20,0.82), rgba(25,25,25,0.86)),
        url('assets/hero-new.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 6rem 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 40%, rgba(29,107,181,0.12) 0%, transparent 65%);
    pointer-events: none;
}

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

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

.hero-kicker {
    display: inline-block;
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    padding-left: 3rem;
}

.hero-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.2rem;
    height: 2px;
    background: var(--accent-light);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.0;
    letter-spacing: 0.03em;
    margin-bottom: 2.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .hero-btns { width: 100%; }
    .hero-btns .btn {
        flex: 1;
        justify-content: center;
        min-height: 48px;
    }
}

/* ━━━━━━━━━━ PARTNERS SLIDER ━━━━━━━━━━ */
.partners {
    padding: 2.5rem 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.partners-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.partners-track:hover { animation-play-state: paused; }

.partners-slide {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 0 1.75rem;
    flex-shrink: 0;
}

.partner-logo {
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.partner-logo:hover { opacity: 0.8; }

.partner-logo svg {
    height: 32px;
    width: auto;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ━━━━━━━━━━ SERVICES ━━━━━━━━━━ */
.services { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: 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(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 54px;
    height: 54px;
    background: #E8F0FE;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.card-link:hover { gap: 0.65rem; }

/* ━━━━━━━━━━ BENEFITS ━━━━━━━━━━ */
.benefits {
    background: var(--primary);
    color: var(--white);
}

.benefits .section-tag {
    background: rgba(255,255,255,0.12);
    color: var(--accent-light);
}

.benefits .section-title h2 { color: var(--white); }
.benefits .section-title > p { color: rgba(255,255,255,0.65); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-content h4 {
    color: var(--white);
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.benefit-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.93rem;
    margin-bottom: 0;
    line-height: 1.65;
}

/* ━━━━━━━━━━ PROCESS ━━━━━━━━━━ */
.process {
    background: linear-gradient(rgba(26,26,26,0.86), rgba(26,26,26,0.86)), url('assets/process-bg.jpg') center/cover no-repeat;
    color: var(--white);
}
.process .section-title h2 { color: var(--white); }
.process .section-title > p { color: rgba(255,255,255,0.65); }
.process .section-tag { background: rgba(255,255,255,0.12); color: var(--accent-light); }
.process .step-number { background: var(--accent); }
.process-step h3 { color: var(--white); }
.process-step p { color: rgba(255,255,255,0.7); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    opacity: 0.4;
    z-index: 0;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--accent-light);
    transform: scale(1.08);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ━━━━━━━━━━ PORTFOLIO ━━━━━━━━━━ */
.portfolio { background: var(--bg); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img { transform: scale(1.06); }

/* Before / After hover swap */
.ba-item .ba-before {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.45s ease;
}
.ba-item:hover .ba-before { opacity: 1; }

.ba-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.9);
    font-family: 'Oswald', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
.ba-item .ba-badge-before { opacity: 0; }
.ba-item:hover .ba-badge-before { opacity: 1; }
.ba-item:hover .ba-badge-after { opacity: 0; }
.ba-item .portfolio-overlay { z-index: 2; }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,43,75,0.82) 0%, rgba(27,43,75,0.15) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
}

.portfolio-info { padding: 1.5rem; }

.portfolio-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.4rem;
}

.portfolio-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ━━━━━━━━━━ TESTIMONIALS ━━━━━━━━━━ */
.testimonials { background: var(--bg-alt); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 7rem;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.stars {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

.testimonial-quote {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.client-info h4 {
    margin-bottom: 0.1rem;
    font-size: 0.97rem;
}

.client-info p {
    margin-bottom: 0;
    font-size: 0.83rem;
    color: var(--text-muted);
}

/* ━━━━━━━━━━ ABOUT ━━━━━━━━━━ */
.about {
    background: var(--bg);
    overflow: hidden;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

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

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

.about-badge strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
}

.about-badge span {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
}

.about-content { padding-right: 1rem; }

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.about-content p { color: var(--text-muted); line-height: 1.8; }

/* ━━━━━━━━━━ CONTACT ━━━━━━━━━━ */
.contact { background: var(--bg-alt); }

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.65rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.info-text p {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-hours {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 0.5rem;
}

.contact-hours h4 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-hours h4 i { color: var(--accent); }

.contact-hours p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.85;
    margin-bottom: 0;
}

.contact-form-container {
    background: var(--white);
    padding: 2.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

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

.form-row .form-group { margin-bottom: 0; }

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

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.93rem;
    color: var(--text);
    background: var(--bg-alt);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(29,107,181,0.12);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

/* ━━━━━━━━━━ FOOTER ━━━━━━━━━━ */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 4.5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i { color: var(--accent); }

.footer-info > p {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.footer-license {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    margin-top: 0.5rem;
}

.footer-links h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.35);
}

/* ━━━━━━━━━━ PORTFOLIO MODAL ━━━━━━━━━━ */
.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.portfolio-modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 20, 40, 0.88);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.modal-dialog {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-xl);
    transform: scale(0.94) translateY(16px);
    transition: transform 0.3s ease;
}

.portfolio-modal.open .modal-dialog {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
    z-index: 10;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.modal-image-wrap {
    position: relative;
    overflow: hidden;
}

.modal-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.modal-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-project-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.65rem;
}

.modal-body h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.modal-body > p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.modal-meta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: var(--bg-alt);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text);
}

.modal-meta-item i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

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

    .process-grid::before { display: none; }

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

    .footer-info { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }

    /* Nav */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1.5rem 2rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        gap: 0;
    }

    .nav-links.active { display: flex; }

    .nav-links li {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .menu-toggle { display: block; }

    /* Hero */
    .hero {
        min-height: 80vh;
        padding: 4.5rem 0;
        text-align: center;
    }

    .hero-content { margin: 0 auto; }

    .hero-content > p { margin: 0 auto 2.5rem; }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 0;
    }

    .stat { align-items: center; }

    /* About */
    .about-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image img { height: 320px; }
    .about-badge { right: 1rem; }
    .about-content { padding-right: 0; }

    /* Process */
    .process-grid { grid-template-columns: 1fr 1fr; }

    /* Contact */
    .contact-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    /* 16px inputs stop iOS from auto-zooming on focus */
    .form-group input,
    .form-group textarea { font-size: 16px; }

    .contact-form-container { padding: 2rem; }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info { grid-column: auto; }

    /* Modal */
    .modal-dialog { grid-template-columns: 1fr; }

    .modal-image-wrap img {
        min-height: 220px;
        height: 220px;
    }

    .modal-body { padding: 2rem; }
}

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

    .hero h1 { font-size: 2.3rem; }

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

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

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

    .stat { padding: 0 1rem; }

    .stat-divider { margin-right: 1rem; }
}

/* ── Click-to-copy contact values ── */
.copyable {
    cursor: pointer;
    position: relative;
    color: var(--accent);
    border-bottom: 1px dashed rgba(29,107,181,0.4);
    transition: color 0.18s ease, border-color 0.18s ease;
}
.copyable:hover { border-bottom-color: var(--accent); }
.copyable::after {
    content: "\f0c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.72em;
    margin-left: 0.4em;
    opacity: 0.4;
}
.copyable:hover::after { opacity: 0.8; }
.copyable.copied { color: #16a34a; border-bottom-color: transparent; }
.copyable.copied::after {
    content: "Copied!";
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.7em;
    color: #16a34a;
    opacity: 1;
    margin-left: 0.45em;
}

.invoice-list {
    list-style: none;
    margin: 0.15rem 0 0;
    padding: 0;
}
.invoice-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.95;
    word-break: break-word;
}
.inv-label { color: var(--text); font-weight: 600; }
