:root {
    --navy: #1d2d3e;
    --navy-2: #2b3d51;
    --blue: #0a6ed1;
    --blue-2: #438ceb;
    --ink: #32363a;
    --muted: #5b738b;
    --line: #d9d9d9;
    --soft: #f4f7f9;
    --white: #ffffff;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(18, 102, 233, 0.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(18, 102, 233, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
    z-index: -1;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: var(--navy);
    color: #c8d8ef;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: 0.25s ease;
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(7, 23, 53, 0.07);
}

.nav-wrap {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 190px;
    height: auto;
}

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

.main-nav > a:not(.nav-cta) {
    position: relative;
    color: #52627a;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: var(--blue);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    width: 100%;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-cta {
    padding: 12px 17px;
    color: var(--white) !important;
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(18, 102, 233, 0.2);
}

.nav-cta:hover,
.btn-primary:hover {
    background: #0756cc;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    display: block;
    margin: 5px 0;
}

.hero {
    position: relative;
    padding: 92px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(47, 146, 255, 0.12);
    filter: blur(10px);
    right: -190px;
    top: -160px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 70px;
    align-items: center;
}

.eyebrow,
.kicker {
    color: var(--blue);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid #cfe0f8;
    background: #f4f8ff;
    border-radius: 999px;
    margin-bottom: 25px;
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28b46e;
    box-shadow: 0 0 0 6px rgba(40, 180, 110, 0.12);
}

h1,
h2,
h3,
h4 {
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.12;
    color: var(--navy);
}

.hero h1 {
    font-size: clamp(48px, 5.3vw, 74px);
    max-width: 720px;
    letter-spacing: -0.055em;
}

h1 em,
h2 span {
    color: var(--blue);
    font-style: normal;
}

.hero-lead,
.inner-hero p {
    margin-top: 24px;
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
}

.btn {
    min-height: 50px;
    padding: 0 21px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(18, 102, 233, 0.2);
}

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

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.btn-link {
    color: var(--navy);
    padding-left: 0;
    padding-right: 0;
}

.btn-link:hover {
    color: var(--blue);
    gap: 17px;
}

.hero-proof {
    display: flex;
    gap: 32px;
    margin-top: 55px;
}

.hero-proof div {
    padding-right: 28px;
    border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
    border-right: 0;
}

.hero-proof strong {
    display: block;
    font-family: "Manrope";
    font-size: 24px;
}

.hero-proof span {
    display: block;
    color: #7b889c;
    font-size: 11px;
    margin-top: 2px;
}

.hero-visual {
    min-height: 560px;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 8% 5%;
    background: rgba(18, 102, 233, 0.12);
    filter: blur(55px);
    border-radius: 50%;
}

.hero-visual img,
.dashboard-art {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    filter: drop-shadow(0 28px 45px rgba(15, 48, 97, 0.15));
    animation: float 6s ease-in-out infinite;
}

.hero-visual .hero-art {
    position: relative;
    z-index: 2;
    width: min(100%, 610px);
}

.float-chip {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #dce7f4;
    box-shadow: var(--shadow);
    border-radius: 15px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
}

.float-chip strong {
    color: var(--blue);
    font-size: 18px;
}

.chip-one {
    left: 2%;
    top: 19%;
    animation: floatSmall 4.8s ease-in-out infinite;
}

.chip-two {
    right: 1%;
    bottom: 17%;
    animation: floatSmall 5.2s 0.8s ease-in-out infinite;
}

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

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

.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trust-row {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.trust-row > span {
    color: #94a0b3;
    font-size: 10px;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.logos {
    display: flex;
    align-items: center;
    gap: 45px;
    color: #9ba8ba;
}

.logos b {
    font-family: "Manrope";
    font-size: 16px;
    letter-spacing: 0.03em;
}

.section {
    padding: 110px 0;
}

.section-light {
    background: var(--soft);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    margin-bottom: 52px;
}

.section-head h2,
.split-copy h2,
.about-statement h2 {
    margin-top: 12px;
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: -0.04em;
}

.section-head p {
    max-width: 440px;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    transition: 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(18, 102, 233, 0.08);
    right: -90px;
    bottom: -90px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #bdd5f4;
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: scale(1.4);
}

.service-no {
    color: #9ba8b9;
    font-size: 11px;
    font-weight: 800;
}

.icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 45px 0 25px;
    color: var(--blue);
    border-radius: 15px;
    background: #edf5ff;
    font-size: 23px;
}

.service-card h3 {
    font-size: 20px;
}

.service-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

.arrow {
    position: absolute;
    right: 26px;
    bottom: 25px;
    color: var(--blue);
    font-size: 20px;
}

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

.photo-frame {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.photo-frame img {
    width: 100%;
}

.split-copy p {
    margin-top: 22px;
    color: var(--muted);
}

.check-list {
    list-style: none;
    margin: 28px 0 34px;
    display: grid;
    gap: 13px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #42526b;
    font-size: 14px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: #e8f2ff;
    font-size: 11px;
    font-weight: 900;
}

.stats-section {
    background: var(--navy);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 10px 40px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }

.stat strong {
    display: block;
    font-family: "Manrope";
    font-size: 52px;
    letter-spacing: -0.05em;
}

.stat strong::after {
    content: "+";
    color: var(--blue-2);
}

.stat span {
    color: #aabbd4;
    font-size: 13px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 18px;
}

.project-card {
    position: relative;
    min-height: 460px;
    border-radius: 26px;
    overflow: hidden;
    background: var(--navy);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 34px;
    color: #fff;
    background: linear-gradient(transparent, rgba(4, 17, 40, 0.9));
}

.project-overlay span,
.portfolio-item span {
    color: #a9c9f7;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 10px;
    font-weight: 800;
}

.project-overlay h3 {
    color: #fff;
    font-size: 28px;
    margin: 8px 0 10px;
}

.project-overlay b {
    font-size: 12px;
}

.cta-banner {
    padding: 85px 0;
    background: linear-gradient(120deg, var(--navy), #103d83);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.cta-banner::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    right: -160px;
    top: -280px;
    border: 80px solid rgba(83, 182, 255, 0.08);
}

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

.cta-banner h2 {
    color: #fff;
    max-width: 700px;
    margin-top: 10px;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.04em;
}

.cta-banner .kicker {
    color: #75b8ff;
}

.inner-hero {
    padding: 115px 0 100px;
    background: linear-gradient(135deg, #f5f9ff, #fff 55%, #edf5ff);
    border-bottom: 1px solid var(--line);
}

.inner-hero h1 {
    max-width: 900px;
    margin-top: 14px;
    font-size: clamp(45px, 6vw, 72px);
    letter-spacing: -0.055em;
}

.service-detail + .service-detail {
    padding-top: 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 85px;
}

.detail-grid.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.detail-grid.reverse > div:first-child {
    order: 2;
}

.big-number {
    display: block;
    color: #a9b8cb;
    font-family: "Manrope";
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.detail-grid h2 {
    font-size: clamp(35px, 4vw, 52px);
    letter-spacing: -0.04em;
}

.detail-grid p {
    color: var(--muted);
    margin-top: 20px;
}

.detail-image img {
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.about-text {
    color: var(--muted);
    font-size: 17px;
}

.about-text p + p {
    margin-top: 22px;
}

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

.value-intro {
    grid-column: 1 / -1;
    margin-bottom: 30px;
}

.value-intro h2 {
    font-size: 44px;
    margin-top: 10px;
}

.value {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
}

.value b {
    color: var(--blue);
    font-size: 12px;
}

.value h3 {
    margin-top: 38px;
    font-size: 21px;
}

.value p {
    color: var(--muted);
    margin-top: 10px;
    font-size: 13px;
}

.team-banner {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.team-banner img {
    width: 100%;
}

.team-caption {
    position: absolute;
    left: 35px;
    bottom: 30px;
    color: #fff;
    display: grid;
    gap: 5px;
}

.team-caption strong {
    font-family: "Manrope";
    font-size: 24px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.portfolio-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    transition: 0.3s ease;
}

.portfolio-item.wide {
    grid-column: 1 / -1;
}

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

.portfolio-item img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.portfolio-item:not(.wide) img {
    aspect-ratio: 16 / 10;
}

.portfolio-item > div {
    padding: 27px 30px 32px;
}

.portfolio-item h2 {
    margin-top: 8px;
    font-size: 28px;
}

.portfolio-item p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 85px;
    align-items: start;
}

.contact-info h2 {
    font-size: 50px;
    margin-top: 12px;
    letter-spacing: -0.04em;
}

.contact-info > p {
    color: var(--muted);
    margin: 22px 0 38px;
}

.contact-line {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.contact-line > span {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #edf5ff;
    color: var(--blue);
    display: grid;
    place-items: center;
}

.contact-line b {
    display: block;
    font-size: 12px;
}

.contact-line p,
.contact-line a {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
}

.contact-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: #32435d;
    font-size: 12px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d7e1ed;
    border-radius: 11px;
    background: #f9fbfe;
    color: var(--ink);
    padding: 13px 14px;
    outline: 0;
    transition: 0.2s ease;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(18, 102, 233, 0.08);
    background: #fff;
}

.full {
    width: 100%;
    margin-top: 5px;
}

.contact-form small {
    display: block;
    margin-top: 14px;
    color: #8996a9;
    font-size: 11px;
    text-align: center;
}

.form-message {
    padding: 17px 18px;
    border-radius: 13px;
    margin-bottom: 20px;
    font-size: 13px;
}

.form-success {
    background: #eaf9f1;
    color: #157346;
    border: 1px solid #bce8d0;
}

.form-error {
    background: #fff1f1;
    color: #a12626;
    border: 1px solid #f0c5c5;
}

.footer {
    background: #05132e;
    color: #a7b8d0;
    padding: 72px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr 1fr 1fr;
    gap: 55px;
}

.footer-brand img {
    width: 190px;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.footer-grid p {
    max-width: 350px;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.8;
}

.footer h4 {
    color: #fff;
    font-size: 13px;
    margin-bottom: 18px;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) span {
    display: block;
    margin: 9px 0;
    font-size: 12px;
}

.footer-grid a:hover {
    color: #fff;
}

.socials {
    display: flex;
    gap: 9px;
    margin-top: 24px;
}

.socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 55px;
    padding-top: 22px;
    font-size: 10px;
}

.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 90;
}

.to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1000px) {
    .hero-grid,
    .split-grid,
    .detail-grid,
    .detail-grid.reverse,
    .contact-grid,
    .about-intro {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 25px;
    }

    .hero-visual {
        min-height: auto;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 0;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .detail-grid.reverse > div:first-child {
        order: initial;
    }

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

    .value-intro {
        grid-column: 1 / -1;
    }

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

    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-inner span:last-child {
        display: none;
    }

    .nav-wrap {
        height: 72px;
    }

    .brand img {
        width: 160px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 72px;
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255,255,255,0.98);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-cta {
        text-align: center;
    }

    .hero {
        padding: 65px 0 55px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-lead,
    .inner-hero p {
        font-size: 16px;
    }

    .hero-actions,
    .cta-inner,
    .section-head,
    .trust-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-proof {
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 38px;
    }

    .hero-proof div {
        padding-right: 18px;
    }

    .hero-visual {
        margin-top: 15px;
    }

    .float-chip {
        display: none;
    }

    .trust-row {
        justify-content: center;
        padding: 30px 0;
    }

    .logos {
        flex-wrap: wrap;
        gap: 20px 30px;
    }

    .section {
        padding: 75px 0;
    }

    .service-grid,
    .stats-grid,
    .values-grid,
    .portfolio-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat,
    .stat:nth-child(2) {
        padding-left: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding-bottom: 25px;
    }

    .stat:last-child {
        border-bottom: 0;
    }

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

    .project-card {
        min-height: 350px;
    }

    .portfolio-item.wide {
        grid-column: auto;
    }

    .inner-hero {
        padding: 75px 0;
    }

    .detail-grid,
    .detail-grid.reverse {
        gap: 40px;
    }

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

    .contact-form {
        padding: 22px;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
