:root {
    --bg: #ffffff;
    --surface: #fff7f2;
    --text: #1f2937;
    --muted: #5f6b7a;
    --accent: #f26a1b;
    --accent-dark: #dc5b13;
    --line: #eceff3;
    --shadow: 0 12px 30px rgba(18, 28, 45, 0.08);
    --radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 92px;
}

body {
    font-family: "Urbanist", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
    height: auto;
}

.icon-defs {
    position: absolute;
}

.ico {
    width: 1rem;
    height: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.section-head {
    margin-bottom: 2rem;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    line-height: 1.2;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 110;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.66rem;
}

.brand-logo {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
    background: #fff;
}

.brand-mark {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 10px;
    background: linear-gradient(140deg, #f38431, #f26a1b);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    letter-spacing: 0.04em;
}

.brand-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #17202d;
}

.menu-toggle {
    display: none;
    border: 1px solid #d8dee8;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 10px;
    color: #1f2937;
    background: #fff;
    cursor: pointer;
}

.menu-toggle .ico {
    width: 1.2rem;
    height: 1.2rem;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.nav-menu a {
    color: #2a3240;
    font-weight: 600;
    font-size: 0.94rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--accent);
}

.nav-menu a.active {
    color: var(--accent);
    position: relative;
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.nav-hire-btn {
    margin-left: 0.5rem;
    padding-inline: 1.1rem;
    box-shadow: 0 10px 22px rgba(242, 106, 27, 0.24);
}

.hero {
    padding: 4rem 0 3.6rem;
    background: linear-gradient(180deg, #fff 0%, #fff9f3 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.12;
    max-width: 14ch;
}

.hero-text {
    margin-top: 1rem;
    color: var(--muted);
    max-width: 50ch;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.8rem 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    background: var(--accent-dark);
    box-shadow: 0 10px 18px rgba(242, 106, 27, 0.3);
}

.btn-outline {
    border-color: #ffd6be;
    color: var(--accent);
    background: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    transform: translateY(-2px);
    background: #fff2e8;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero-card {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ffe0cc;
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.09);
}

.hero-card p {
    font-size: 0.82rem;
    color: var(--muted);
}

.hero-card h2 {
    font-size: 1.3rem;
    color: var(--accent);
    line-height: 1;
}

.hero-card span {
    font-size: 0.8rem;
    color: #4d5969;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: floaty 5s ease-in-out infinite;
}

.float-a {
    width: 120px;
    height: 120px;
    right: -24px;
    top: -18px;
    background: radial-gradient(circle, rgba(242, 106, 27, 0.28), rgba(242, 106, 27, 0));
}

.float-b {
    width: 150px;
    height: 150px;
    left: -36px;
    bottom: -26px;
    background: radial-gradient(circle, rgba(242, 106, 27, 0.2), rgba(242, 106, 27, 0));
    animation-delay: 1.2s;
}

.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #ffd8c2;
}

.service-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    background: #fff2e9;
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 0.7rem;
}

.service-icon .ico {
    width: 1.2rem;
    height: 1.2rem;
}

.service-card h3 {
    font-size: 1.06rem;
    margin-bottom: 0.35rem;
}

.service-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.process {
    background: var(--surface);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.process-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1rem;
}

.process-step {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem;
}

.process-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.process-card p {
    color: var(--muted);
}

.about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
    align-items: center;
}

.about-grid article p {
    color: var(--muted);
}

.about-grid h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.about-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.about-list li {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    font-weight: 600;
    color: #334155;
}

.about-list .ico {
    color: var(--accent);
}

.about-image img {
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--line);
}

.stats {
    padding-top: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
}

.stat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1.1rem;
    text-align: center;
}

.stat-card h3 {
    color: var(--accent);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.05;
}

.stat-card p {
    color: var(--muted);
    font-weight: 600;
}

.testimonials {
    background: #fff;
}

.client-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.review-card {
    background: #fffcf8;
    border: 1px solid #f1e7dc;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 22px rgba(15, 23, 34, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.review-card:hover,
.review-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 34, 0.14);
    border-color: #f8d5b7;
}

.review-project {
    font-size: 1.03rem;
    line-height: 1.35;
    margin-bottom: 0.55rem;
}

.review-rating-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.28rem;
}

.review-rating-stars {
    color: #f4b400;
    letter-spacing: 0.08em;
    font-size: 0.98rem;
    line-height: 1;
}

.review-rating-number {
    font-weight: 700;
    color: #2f3a4a;
    font-size: 0.92rem;
}

.review-duration {
    color: #637184;
    font-size: 0.84rem;
    margin-bottom: 0.72rem;
}

.review-text {
    color: #3f4c5f;
    font-size: 0.93rem;
    margin-bottom: 0.85rem;
}

.review-response {
    border-top: 1px dashed #e8ded3;
    padding-top: 0.7rem;
}

.review-response-label {
    color: #2f3a4a;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
}

.review-response p {
    color: #4e5c70;
    font-size: 0.9rem;
}

.testimonials-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.stars {
    color: var(--accent);
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.stars .ico {
    width: 0.95rem;
    height: 0.95rem;
}

.testimonial-card p {
    color: var(--muted);
    margin-bottom: 0.65rem;
}

.testimonial-card h3 {
    font-size: 1rem;
}

.blog {
    background: var(--surface);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.blog-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-card h3,
.blog-card p,
.blog-card a {
    padding-inline: 1rem;
}

.blog-meta {
    padding-inline: 1rem;
    margin-top: 0.75rem;
    color: #7b8798;
    font-size: 0.82rem;
    font-weight: 600;
}

.blog-card h3 {
    margin-top: 0.4rem;
    font-size: 1.07rem;
}

.blog-card p {
    color: var(--muted);
    margin-top: 0.35rem;
    margin-bottom: 0.8rem;
}

.blog-card a {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 700;
}

.blog-card.blog-extra {
    display: none;
}

.blog-grid.expanded .blog-card.blog-extra {
    display: block;
}

.blog-actions {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
}

.contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-copy p {
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.contact-copy h2 {
    font-size: clamp(1.7rem, 3.8vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.contact-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 0.55rem;
    font-weight: 600;
    color: #384456;
}

.contact-list .ico {
    color: var(--accent);
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.22rem;
    flex-shrink: 0;
}

.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1.1rem;
    display: grid;
    gap: 0.4rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #d6dde8;
    border-radius: 10px;
    padding: 0.72rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f7b992;
    box-shadow: 0 0 0 3px rgba(242, 106, 27, 0.12);
}

.page-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    padding: 4.4rem 0 3rem;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.25rem;
    align-items: center;
}

.page-hero-copy {
    max-width: 68ch;
}

.hero-pill-row {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ffd9c6;
    background: #fff4ec;
    color: #9a4d17;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.32rem 0.68rem;
}

.hero-media {
    margin-top: 0;
}

.hero-media img {
    aspect-ratio: 16 / 10;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    max-width: 24ch;
}

.page-hero p {
    max-width: 64ch;
    color: var(--muted);
    margin-top: 0.8rem;
}

/* Inner-page layout tuning (home does not use .page-hero). */
.page-hero .container {
    max-width: 1080px;
}

.inner-page .section > .container {
    max-width: 1080px;
}

.inner-page .section {
    scroll-margin-top: 86px;
}

.inner-page .section-head {
    max-width: 74ch;
}

.inner-page .section-head h1,
.inner-page .section-head h2 {
    max-width: 30ch;
}

.inner-page .blog .container {
    max-width: 1080px;
}

.inner-page .blog .section-head {
    margin-bottom: 0.4rem;
}
.page-hero .section-visual {
    margin-top: 1.4rem;
}

.page-hero-grid .section-visual {
    margin-top: 0;
}

.service-showcase-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.service-showcase-card {
    display: grid;
    gap: 0.65rem;
    height: 100%;
}

.service-showcase-card h3 {
    font-size: 1.05rem;
    margin-top: 0.2rem;
}

.service-showcase-card p {
    color: var(--muted);
}

.compact-media {
    margin-top: 0;
}

.compact-media img {
    aspect-ratio: 16 / 9;
}

.inline-link {
    font-weight: 700;
    color: var(--accent);
    margin-top: 0.15rem;
}

.inline-link:hover,
.inline-link:focus-visible {
    color: var(--accent-dark);
}

.contact-intro {
    margin-bottom: 1rem;
}

.section-soft {
    background: #f8fbff;
}

.card-surface {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 8px 24px rgba(18, 28, 45, 0.06);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.section-visual {
    margin-top: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(18, 28, 45, 0.08);
}

.section-visual img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    display: block;
}

.compact-visual {
    max-width: 720px;
    margin-top: 1.2rem;
}

.image-strip {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.image-strip img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.compact-contact {
    max-width: 760px;
    margin-inline: auto;
}

.intro-copy {
    color: var(--muted);
    max-width: 75ch;
}

.values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-detail h2 {
    margin-bottom: 0.5rem;
}

.service-detail {
    max-width: 1080px;
    margin-inline: auto;
    padding: clamp(1.1rem, 2.2vw, 1.6rem);
    display: grid;
    gap: 0.8rem;
}

.service-detail > p {
    max-width: 72ch;
}

.service-detail .section-visual {
    margin-top: 0.45rem;
}

.service-detail h3 {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.bullet-list {
    padding-left: 1.1rem;
    color: #4a5a70;
    display: grid;
    gap: 0.35rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.8rem;
    align-items: stretch;
}

.timeline-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 34, 0.05);
    height: 100%;
    display: grid;
    gap: 0.35rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);
    border-color: #ffd8c2;
    box-shadow: var(--shadow);
}

.timeline-card h3 {
    font-size: 1rem;
    line-height: 1.35;
}

.timeline-card p {
    color: var(--muted);
}

.timeline-card .process-step {
    justify-self: start;
    margin-bottom: 0.2rem;
    border-radius: 999px;
    border: 1px solid #ffd8c2;
    background: #fff4ec;
    color: #a7551d;
    padding: 0.28rem 0.6rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.why-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 0.95rem;
    text-align: center;
}

.why-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
}

.why-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.logo-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 1rem;
    height: 100%;
}

.logo-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.logo-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.cta-band {
    background: linear-gradient(135deg, #0a2540 0%, #123961 100%);
    color: #fff;
    border-radius: 18px;
    padding: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cta-band h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

.cta-band .btn {
    white-space: nowrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.gallery-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(18, 28, 45, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 0.85rem 0.9rem;
    margin-top: auto;
}

.gallery-caption h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.gallery-caption p {
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-contact-block p {
    color: #a7b0bf;
    font-size: 0.92rem;
}

.footer-contact-block p + p {
    margin-top: 0.15rem;
}

.footer-newsletter {
    display: flex;
    gap: 0.45rem;
    margin: 0.55rem 0 0.9rem;
}

.footer-newsletter input {
    min-width: 0;
    flex: 1;
    border: 1px solid #334155;
    border-radius: 10px;
    background: #0f1722;
    color: #e5e7eb;
    padding: 0.58rem 0.6rem;
}

.footer-newsletter .btn {
    padding: 0.58rem 0.85rem;
    border-radius: 10px;
}

.map-wrap {
    margin-top: 0.9rem;
    border: 1px solid #dfe6f1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 260px;
}

.map-wrap iframe {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 260px;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
    display: grid;
    place-items: center;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 28px 0 var(--accent), -28px 0 var(--accent);
    animation: loaderPulse 0.9s infinite ease-in-out alternate;
}

@keyframes loaderPulse {
    from {
        transform: scale(0.75);
        opacity: 0.6;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.site-footer {
    background: #0f1722;
    color: #e5e7eb;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.85fr 1fr 0.85fr;
    gap: 1.2rem;
}

.follow-us {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    align-self: start;
    justify-self: end;
    text-align: right;
    padding-top: 0;
}

.follow-us h3 {
    margin-bottom: 0;
}

.footer-logo {
    font-size: 1.25rem;
    color: #fff;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.footer-logo-image {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #2a3648;
    background: #fff;
}

.footer-text {
    color: #98a3b4;
}

.footer-contact-inline {
    margin-top: 0.65rem;
    display: grid;
    gap: 0.2rem;
}

.footer-contact-inline p {
    color: #a7b0bf;
    font-size: 0.92rem;
}

.footer-contact-title {
    color: #e5e7eb;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.site-footer h3 {
    margin-bottom: 0.6rem;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.site-footer li a {
    color: #a7b0bf;
}

.site-footer li a:hover,
.site-footer li a:focus-visible {
    color: #fff;
}

.social-row {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.follow-us .social-row {
    margin-top: 0;
}

.social-row a {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 12px;
    border: 1px solid #2a3648;
    color: #d2d8e2;
    display: grid;
    place-items: center;
    justify-self: end;
}

.social-row .ico {
    width: 1.2rem;
    height: 1.2rem;
}

.social-row a:hover,
.social-row a:focus-visible {
    color: #fff;
    border-color: #3b4a62;
}

.copyright {
    margin-top: 2rem;
    text-align: center;
    color: #95a0b2;
    border-top: 1px solid #1b2534;
    padding-top: 1rem;
    font-size: 0.9rem;
}

.to-top,
.whatsapp-float {
    position: fixed;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 120;
}

.to-top {
    bottom: 1rem;
    border: 1px solid #d4dae5;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    bottom: 3.9rem;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.34);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px);
}

.whatsapp-float .ico {
    width: 1.35rem;
    height: 1.35rem;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floaty {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .stats-grid,
    .process-grid,
    .timeline-grid,
    .why-grid,
    .values-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero-grid,
    .service-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-media img {
        aspect-ratio: 16 / 8;
    }

    .client-reviews-grid,
    .blog-grid,
    .footer-grid,
    .logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .follow-us {
        align-items: flex-start;
        justify-self: start;
        text-align: left;
    }

    .follow-us .social-row {
        justify-content: initial;
    }

    .follow-us .social-row a {
        justify-self: start;
    }

    .hero-copy h1 {
        max-width: 20ch;
    }

    .page-hero {
        padding: 3.8rem 0 2.6rem;
    }

    .inner-page .section-head h1,
    .inner-page .section-head h2 {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-wrap {
        position: absolute;
        top: 74px;
        left: 1rem;
        right: 1rem;
        display: none;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow);
        padding: 0.75rem;
    }

    .nav-wrap.open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .nav-hire-btn {
        margin-left: 0;
        margin-top: 0.35rem;
        width: 100%;
    }

    .services-grid,
    .stats-grid,
    .process-grid,
    .timeline-grid,
    .why-grid,
    .values-grid,
    .client-reviews-grid,
    .blog-grid,
    .footer-grid,
    .logo-grid,
    .image-strip,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .hero-pill {
        font-size: 0.76rem;
    }

    .whatsapp-float {
        bottom: 4.1rem;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 3.8rem 0;
    }

    .hero {
        padding-top: 3rem;
    }

    .page-hero {
        padding-top: 3.2rem;
    }

    .to-top,
    .whatsapp-float {
        right: 0.7rem;
        width: 40px;
        height: 40px;
    }
}
