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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --coral: #f97316;
    --coral-light: #ffedd5;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);
}

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

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ─── Geometric Background Shapes ─── */
.geo-shape {
    position: fixed;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
}

.geo-shape--circle {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--teal-600);
    top: -200px;
    right: -200px;
}

.geo-shape--square {
    width: 300px;
    height: 300px;
    background: var(--coral);
    bottom: 20%;
    left: -80px;
    transform: rotate(45deg);
}

.geo-shape--triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid var(--teal-400);
    top: 50%;
    right: -100px;
    opacity: 0.03;
}

/* ─── Header ─── */
.header {
    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(15, 23, 42, 0.06);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--slate-900);
}

.logo__mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.logo__text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo__amp {
    color: var(--teal-600);
    font-style: italic;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav__link {
    text-decoration: none;
    color: var(--slate-600);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.nav__link--cta {
    background: var(--teal-600);
    color: #fff !important;
    margin-left: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav__link--cta:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}

.nav__hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav__hamburger::before,
.nav__hamburger::after,
.nav__hamburger span {
    display: block;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger::before { content: ''; }
.nav__hamburger span { content: ''; width: 100%; }
.nav__hamburger::after { content: ''; }

.nav__toggle[aria-expanded="true"] .nav__hamburger::before {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__hamburger span {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav__toggle { display: block; }
    .nav__menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
        pointer-events: none;
    }
    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav__link {
        padding: 14px 16px;
        font-size: 16px;
        width: 100%;
    }
    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-50) 0%, #fff 50%, var(--slate-50) 100%);
}

.hero__geo {
    position: absolute;
    pointer-events: none;
}

.hero__geo--left {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--teal-200), var(--teal-100));
    border-radius: 50%;
    top: -150px;
    left: -200px;
    opacity: 0.4;
}

.hero__geo--right {
    width: 300px;
    height: 300px;
    background: var(--coral);
    bottom: 10%;
    right: -80px;
    opacity: 0.08;
    transform: rotate(30deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-100);
    color: var(--teal-800);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__accent {
    color: var(--teal-600);
    font-style: italic;
}

.hero__subheadline {
    font-size: 17px;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
}

.hero__stat-label {
    font-size: 12px;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    color: #fff;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn--outline {
    background: #fff;
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
}

.btn--outline:hover {
    border-color: var(--teal-400);
    color: var(--teal-700);
    background: var(--teal-50);
}

.btn--white {
    background: #fff;
    color: var(--teal-700);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

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

/* Hero image */
.hero__image-wrapper {
    position: relative;
}

.hero__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.hero__floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero__floating-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.hero__floating-card-label {
    font-size: 12px;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero__floating-card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-800);
}

@media (max-width: 968px) {
    .hero { padding: 100px 0 60px; }
    .hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero__image-wrapper { max-width: 480px; margin: 0 auto; }
    .hero__floating-card { left: 0; }
    .hero__stats { gap: 16px; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__floating-card { display: none; }
}

/* ─── Section Shared ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-600);
    background: var(--teal-100);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ─── Services ─── */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.service-card__icon {
    width: 60px;
    height: 60px;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    margin-bottom: 20px;
    transition: background 0.3s;
}

.service-card:hover .service-card__icon {
    background: var(--teal-100);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-500);
}

@media (max-width: 968px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .services__grid { grid-template-columns: 1fr; }
    .services { padding: 72px 0; }
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}

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

.about__image-stack {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__img-main img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

.about__img-secondary img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about__geo-accent {
    position: absolute;
    top: -30px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: var(--coral);
    opacity: 0.15;
    border-radius: var(--radius-md);
    transform: rotate(20deg);
}

.about__content .section-tag { margin-bottom: 16px; }
.about__content .section-title { margin-bottom: 24px; text-align: left; }

.about__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 16px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
}

.about__feature-icon {
    width: 28px;
    height: 28px;
    background: var(--teal-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .about__inner { grid-template-columns: 1fr; gap: 48px; }
    .about__content .section-title { text-align: center; }
    .about__content .section-tag { display: block; text-align: center; }
    .about__text { text-align: center; }
    .about__img-secondary { right: -10px; bottom: -20px; }
}

@media (max-width: 480px) {
    .about__features { grid-template-columns: 1fr; }
    .about { padding: 72px 0; }
}

/* ─── Gallery ─── */
.gallery {
    padding: 100px 0;
    background: #fff;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 7;
}

.gallery__item:nth-child(2),
.gallery__item:nth-child(3),
.gallery__item:nth-child(4) {
    grid-column: span 4;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery__item--large { grid-column: span 2; grid-row: span 1; min-height: 280px; }
    .gallery__item--wide { grid-column: span 2; min-height: 220px; }
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4) { grid-column: span 1; min-height: 200px; }
}

@media (max-width: 480px) {
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--large,
    .gallery__item--wide,
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4) { grid-column: span 1; min-height: 220px; }
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--teal-600);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    opacity: 0.1;
}

.testimonials .section-tag { background: rgba(13, 148, 136, 0.2); }
.testimonials .section-title { color: #fff; }
.testimonials .section-subtitle { color: var(--slate-400); }

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: var(--coral);
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-300);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.testimonial-card__role {
    font-size: 12px;
    color: var(--slate-400);
}

@media (max-width: 968px) {
    .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ─── CTA Strip ─── */
.cta-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500), var(--teal-400));
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    left: -100px;
}

.cta-strip::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -120px;
    right: 5%;
}

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

.cta-strip__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-strip__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .cta-strip__inner { flex-direction: column; text-align: center; }
    .cta-strip__text { max-width: 100%; }
    .cta-strip__actions { flex-direction: column; width: 100%; }
    .cta-strip__actions .btn { justify-content: center; }
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: #fff;
}

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

.contact__info .section-tag { margin-bottom: 16px; }
.contact__info .section-title { margin-bottom: 16px; text-align: left; }
.contact__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

.contact__detail-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate-400);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.6;
}

.contact__link {
    color: var(--teal-600);
    text-decoration: none;
    transition: color 0.2s;
}

.contact__link:hover { color: var(--teal-500); }

/* Form */
.contact__form-wrapper {
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--slate-100);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--slate-800);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-input::placeholder { color: var(--slate-400); }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    border-radius: var(--radius-sm);
    color: var(--teal-800);
    font-size: 14px;
    font-weight: 500;
}

.form-success svg { color: var(--teal-600); flex-shrink: 0; }

@media (max-width: 968px) {
    .contact__inner { grid-template-columns: 1fr; gap: 48px; }
    .contact__info .section-title { text-align: center; }
    .contact__info .section-tag { display: block; text-align: center; }
    .contact__text { text-align: center; }
    .contact__form-wrapper { padding: 28px; }
}

/* ─── Footer ─── */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: var(--slate-500);
    max-width: 280px;
}

.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-300);
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    color: var(--slate-500);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer__col a:hover { color: var(--teal-400); }

.footer__bottom {
    border-top: 1px solid var(--slate-800);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.footer__bottom a {
    color: var(--teal-400);
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; text-align: center; }
}
