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

:root {
    --navy: #0b1d3a;
    --navy-light: #132d55;
    --blue: #1a5ccf;
    --blue-light: #3b7ef7;
    --gold: #d4a843;
    --gold-light: #f0cb6e;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #e1e5eb;
    --gray-400: #9ba3b0;
    --gray-600: #5a6474;
    --gray-800: #2d3748;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(11, 29, 58, 0.08);
    --shadow-lg: 0 12px 48px rgba(11, 29, 58, 0.12);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

.section__tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 12px;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.25;
    text-align: center;
}

.section__title--left {
    text-align: left;
}

.section__sub {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 92, 207, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

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

.btn--white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(11, 29, 58, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.logo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 10px;
    font-size: 18px;
}

.logo__text span {
    color: var(--gold);
}

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

.nav__link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav__link--cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 92, 207, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 140px 0 80px;
}

.hero__inner {
    flex: 1;
    max-width: 680px;
}

.hero__portrait {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__portrait-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(212, 168, 67, 0.5);
    box-shadow: 0 0 0 8px rgba(212, 168, 67, 0.12), 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero__portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.hero__tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 50px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero__title em {
    color: var(--gold);
    font-style: italic;
}

.hero__sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 640px;
}

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

.hero__stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.hero__stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--navy-light));
    border-radius: var(--radius-sm);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__content p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about__list {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
}

.about__list li i {
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
}

.about__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__card {
    padding: 28px 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(30px);
}

.about__card.visible {
    opacity: 1;
    transform: translateX(0);
}

.about__card i {
    font-size: 24px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.about__card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.about__card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

.about__card--accent {
    background: var(--navy);
    border-color: var(--navy);
}

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

.about__card--accent h4 {
    color: var(--white);
}

.about__card--accent p {
    color: rgba(255, 255, 255, 0.65);
}

/* ===== PROCESS ===== */
.process {
    background: var(--gray-50);
}

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

.process__timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-200);
}

.process__step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

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

.process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process__step:hover .process__number {
    background: var(--blue);
    color: var(--white);
}

.process__step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.process__step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    padding: 0 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card__stars {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 15px;
    display: flex;
    gap: 2px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.testimonial-card__author span {
    font-size: 13px;
    color: var(--gray-400);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 32px;
}

/* ===== CONTACT ===== */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__info p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

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

.contact__detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__detail i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
    color: var(--blue);
    font-size: 16px;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.contact__detail a,
.contact__detail span {
    font-size: 14px;
    color: var(--gray-600);
}

.contact__detail a:hover {
    color: var(--blue);
}

.contact__form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 92, 207, 0.1);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a6474' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 64px 0 0;
}

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

.logo--light {
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer__social a:hover {
    background: var(--blue);
    color: var(--white);
}

.footer__links h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links a,
.footer__hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

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

.footer__bottom {
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* ===== ANIMATIONS ===== */
.service-card,
.about__card,
.process__step,
.testimonial-card {
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:nth-child(2),
.about__card:nth-child(2),
.process__step:nth-child(2),
.testimonial-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3),
.about__card:nth-child(3),
.process__step:nth-child(3),
.testimonial-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card:nth-child(4),
.process__step:nth-child(4) {
    transition-delay: 0.3s;
}

.service-card:nth-child(5) {
    transition-delay: 0.4s;
}

.service-card:nth-child(6) {
    transition-delay: 0.5s;
}

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

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

    .process__timeline::before {
        display: none;
    }

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

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

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section__tag {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .section__title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .section__sub {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Header */
    .header {
        padding: 14px 0;
    }

    .header--scrolled {
        padding: 10px 0;
    }

    .logo {
        font-size: 18px;
        gap: 8px;
    }

    .logo__icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 8px;
    }

    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 40px;
        gap: 4px;
        transition: right 0.35s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav--open {
        right: 0;
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-bottom: 20px;
    }

    .hero__row {
        flex-direction: column-reverse;
        padding: 110px 0 50px;
        gap: 32px;
    }

    .hero__portrait-frame {
        width: 180px;
        height: 180px;
    }

    .hero__inner {
        text-align: center;
    }

    .hero__tag {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero__title br {
        display: none;
    }

    .hero__sub {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding-top: 28px;
    }

    .hero__stat {
        flex: 1 1 33.33%;
        text-align: center;
        padding: 8px 4px;
    }

    .hero__stat strong {
        font-size: 22px;
    }

    .hero__stat span {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .service-card__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
        margin-bottom: 0;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .service-card p {
        font-size: 13px;
    }

    /* About */
    .about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section__title--left {
        font-size: 24px;
    }

    .about__content p {
        font-size: 14px;
    }

    .about__list {
        margin: 16px 0 24px;
        gap: 10px;
    }

    .about__list li {
        font-size: 14px;
        gap: 10px;
    }

    .about__list li i {
        font-size: 16px;
    }

    .about__card {
        padding: 20px 16px;
        gap: 12px;
    }

    .about__card i {
        font-size: 20px;
    }

    .about__card h4 {
        font-size: 15px;
    }

    .about__card p {
        font-size: 13px;
    }

    /* Process */
    .process__timeline {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .process__number {
        width: 52px;
        height: 52px;
        font-size: 17px;
        margin-bottom: 16px;
    }

    .process__step h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .process__step p {
        font-size: 13px;
        padding: 0 4px;
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-card p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 48px 0;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-banner p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Contact */
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact__info p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .contact__details {
        gap: 16px;
    }

    .contact__detail i {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .contact__form {
        padding: 24px 16px;
    }

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

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .footer__links h4 {
        margin-bottom: 14px;
    }

    .footer__bottom {
        padding: 18px 0;
    }
}

/* ===== RESPONSIVE — SMALL PHONES ===== */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .hero__row {
        padding: 100px 0 40px;
    }

    .hero__portrait-frame {
        width: 150px;
        height: 150px;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero__stat {
        flex: 1 1 100%;
    }

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

    .hero__stat {
        text-align: left;
    }

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

    .section__title {
        font-size: 22px;
    }

    .section__title--left {
        font-size: 21px;
    }

    .cta-banner h2 {
        font-size: 20px;
    }

    .service-card {
        flex-direction: column;
        gap: 12px;
    }

    .contact__form {
        padding: 20px 12px;
    }
}
