:root {
    --navy: #0054A6;
    --navy-deep: #003B78;
    --ink: #06233F;
    --sky: #00AEEF;
    --sky-soft: #E6F7FD;
    --mist: #F0F6FA;
    --paper: #F7FBFD;
    --white: #ffffff;
    --text: #14324A;
    --muted: #5B7388;
    --line: rgba(0, 84, 166, 0.12);
    --brand-gradient: linear-gradient(135deg, #003B78 0%, #0054A6 52%, #00AEEF 100%);
    --signal-gradient: linear-gradient(135deg, #0054A6 0%, #00AEEF 100%);
    --soft-surface: linear-gradient(180deg, #F7FBFD 0%, #EAF4FA 100%);
    --shadow-sm: 0 10px 28px rgba(0, 59, 120, 0.08);
    --shadow-lg: 0 28px 60px rgba(0, 59, 120, 0.14);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --font-display: "Bricolage Grotesque", system-ui, sans-serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --nav-h: 78px;
    --signal: var(--sky);
    --teal: var(--sky);
    --content-max: 1080px;
    --page-gutter: clamp(1.75rem, 5.5vw, 3.25rem);
    --shell-max: calc(var(--content-max) + (var(--page-gutter) * 2));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(900px 420px at 92% -10%, rgba(0, 174, 239, 0.14), transparent 55%),
        radial-gradient(700px 380px at 0% 20%, rgba(0, 84, 166, 0.08), transparent 50%),
        var(--paper);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, .brand-display {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.section-shell {
    width: 100%;
    max-width: var(--shell-max);
    margin-inline: auto;
    padding-inline: var(--page-gutter);
}
.section-pad { padding: clamp(3.25rem, 6vw, 5.5rem) 0; }
.section-header { text-align: left; max-width: 640px; margin: 0 0 2.25rem; }
.section-header.center { text-align: center; margin-inline: auto; }
.section-header h4, .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.section-header h2 { font-size: clamp(1.7rem, 3.2vw, 2.45rem); color: var(--ink); margin-bottom: 0.75rem; }
.section-header p { color: var(--muted); font-size: 1rem; }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Navigation */
.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 0 max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.site-nav.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(0, 59, 120, 0.06);
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}
.logo-wrap img { width: 118px; height: auto; }
.logo-wordmark { display: none; }
.logo-wordmark strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 800;
}
.logo-wordmark span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 700;
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 1.6vw, 1.45rem);
}
.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.94rem;
    transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1100;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: var(--transition);
    /* Bridge the hover gap so the menu stays open while moving the pointer */
    margin-top: 0;
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 11px 13px;
    border-radius: 12px;
    font-size: 0.9rem;
    text-transform: none;
}
.dropdown-menu li a:hover { background: var(--sky-soft); color: var(--navy); }
.btn-prime {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--signal-gradient);
    color: #fff !important;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 174, 239, 0.28);
    transition: transform var(--transition), filter var(--transition);
}
.btn-prime:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 0.85rem 1.45rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}
.menu-btn {
    display: none;
    font-size: 1.4rem;
    color: var(--ink);
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: 0;
}

/* ===== HOME HERO (new composition) ===== */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: stretch;
    overflow: hidden;
    color: #fff;
}
.hero-v2-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroPan 20s ease-in-out infinite alternate;
}
.hero-v2-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0, 59, 120, 0.92) 0%, rgba(0, 84, 166, 0.72) 42%, rgba(0, 174, 239, 0.35) 100%),
        linear-gradient(180deg, transparent 40%, rgba(6, 35, 63, 0.55) 100%);
}
.hero-v2-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: calc(var(--nav-h) + 3.25rem) var(--page-gutter) 3.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: min(100vh, 760px);
    min-height: min(100dvh, 760px);
}
.hero-v2-brand {
    font-family: var(--font-display);
    font-size: clamp(2.55rem, 6.5vw, 4.6rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.045em;
    margin-bottom: 1rem;
    animation: riseIn 0.85s ease both;
}
.hero-v2-brand .sky { color: var(--sky); }
.hero-v2-brand .navy-text { color: #fff; }
.hero-v2-brand small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.28em;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}
.hero-v2 h1 {
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    font-weight: 600;
    max-width: 22ch;
    margin-bottom: 0.85rem;
    animation: riseIn 0.85s ease 0.1s both;
}
.hero-v2 .lede {
    max-width: 40ch;
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    animation: riseIn 0.85s ease 0.2s both;
}
.hero-v2 .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: riseIn 0.85s ease 0.3s both;
}

@keyframes heroPan {
    from { transform: scale(1.05) translate3d(0, 0, 0); }
    to { transform: scale(1.12) translate3d(-2%, -1%, 0); }
}
@keyframes riseIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

/* Process band */
.process-band {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.process-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
}
.process-item {
    padding: 1.45rem 0.85rem 1.45rem 0;
    border-right: 1px solid var(--line);
}
.process-item:last-child { border-right: 0; }
.process-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--sky);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.65rem;
}
.process-item h3 {
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.process-item p { color: var(--muted); font-size: 0.95rem; }

/* About split */
.about-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: 100%;
}
.about-split-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    color: var(--ink);
    margin-bottom: 1rem;
}
.about-split-copy .about-copy {
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.about-split-visual {
    position: relative;
    min-width: 0;
}
.about-split-visual img {
    width: 100%;
    height: clamp(280px, 38vw, 440px);
    object-fit: cover;
    border-radius: 8px 40px 8px 40px;
    box-shadow: var(--shadow-lg);
}
.about-accent-bar {
    position: absolute;
    left: -12px;
    top: 12%;
    bottom: 12%;
    width: 8px;
    border-radius: 999px;
    background: var(--signal-gradient);
}

/* Services — contained list/grid (overflow-safe) */
.services-area {
    background: var(--soft-surface);
    overflow: hidden;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    width: 100%;
    max-width: 100%;
}
.service-card-link {
    display: block;
    min-width: 0;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
}
.service-tile {
    min-width: 0;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-tile-media {
    position: relative;
    height: 168px;
    overflow: hidden;
    background: var(--navy-deep);
}
.service-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-tile:hover .service-tile-media img { transform: scale(1.06); }
.service-tile-body {
    padding: 1.15rem 1.2rem 1.3rem;
    min-width: 0;
}
.service-tile-body h3 {
    font-size: 1.12rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
    text-transform: none;
    overflow-wrap: anywhere;
}
.service-tile-body p {
    color: var(--muted);
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-tile-body .more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
}
.services-cta { text-align: center; margin-top: 2rem; }

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    width: 100%;
}
.portfolio-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: #fff;
    min-width: 0;
    min-height: 240px;
}
.portfolio-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.1rem;
    background: linear-gradient(180deg, transparent, rgba(0, 59, 120, 0.92));
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: none;
}

/* Blog */
.blogs-area { background: var(--soft-surface); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    width: 100%;
}
.blog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-card-media {
    height: 180px;
    overflow: hidden;
    background: var(--navy-deep);
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.06); }
.blog-card-body {
    padding: 1.15rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.blog-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
}
.blog-card-body h3 {
    font-size: 1.12rem;
    color: var(--ink);
    margin-bottom: 0.45rem;
    text-transform: none;
}
.blog-card-body p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-body .more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
}
.blog-details-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}
.blog-article-img {
    width: 100%;
    height: clamp(220px, 32vw, 380px);
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.4rem;
}
.blog-article-body {
    color: var(--muted);
    font-size: 1.02rem;
}
.blog-article-body h2,
.blog-article-body h3 {
    color: var(--ink);
    margin: 1.4rem 0 0.7rem;
}
.blog-article-body p { margin-bottom: 1rem; }
.blog-article-body ul,
.blog-article-body ol {
    margin: 0 0 1rem 1.2rem;
}
.blog-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}
.blog-share span {
    font-weight: 700;
    color: var(--ink);
}
.blog-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--sky-soft);
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}
.blog-share a:hover {
    background: var(--navy);
    color: #fff;
}
.blog-sidebar {
    display: grid;
    gap: 1.15rem;
}
.blog-sidebar h3 {
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 1rem;
}
.blog-recent-list {
    display: grid;
    gap: 0.85rem;
}
.blog-recent-item {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.blog-recent-item img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.blog-recent-item span {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.35;
}
.blog-cta-panel {
    background: var(--brand-gradient);
    color: #fff;
    border: 0;
}
.blog-cta-panel h3 { color: #fff; }
.blog-cta-panel p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 1.1rem;
}

/* App download */
.app-download {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #003B78 0%, #0054A6 55%, #0088C7 100%);
    color: #fff;
}
.app-download::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.35), transparent 65%);
    top: -160px;
    right: -100px;
    animation: pulseGlow 7s ease-in-out infinite;
}
.app-download-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    width: 100%;
}
.app-download h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    margin: 0.55rem 0 0.95rem;
}
.app-copy {
    color: rgba(255,255,255,0.82);
    max-width: 46ch;
    margin-bottom: 1.4rem;
}
.app-steps {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.7rem;
}
.app-steps li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    color: rgba(255,255,255,0.9);
}
.app-steps i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(0, 174, 239, 0.22);
    color: #fff;
    flex-shrink: 0;
}
.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 200px;
    padding: 0.95rem 1.15rem;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.store-btn:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.16);
}
.store-btn i { font-size: 1.85rem; }
.store-btn small {
    display: block;
    font-size: 0.72rem;
    opacity: 0.8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.store-btn strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}
.store-btn.play {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.4), rgba(0, 84, 166, 0.35));
}
.app-visual {
    position: relative;
    min-height: 340px;
    min-width: 0;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(0, 174, 239, 0.35), rgba(0, 59, 120, 0.45)),
        url("../images/about-img.jpg") center/cover;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.app-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0, 59, 120, 0.8));
}
.app-visual-card {
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    padding: 1.05rem 1.15rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.22);
}
.app-visual-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

/* Reviews */
.reviews-section {
    background: var(--ink);
    color: #fff;
}
.reviews-section .section-header h2 { color: #fff; }
.reviews-section .section-header p { color: rgba(255,255,255,0.7); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    width: 100%;
}
.review-card {
    min-width: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 1.4rem;
}
.review-card .rating {
    color: #FFC93C;
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.2rem;
}
.review-card p {
    color: rgba(255,255,255,0.86);
    margin-bottom: 1rem;
}
.review-card cite {
    font-style: normal;
    font-weight: 700;
    color: var(--sky);
}

/* Contact */
.contact-modern { background: var(--paper); }
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.75rem;
    align-items: start;
    width: 100%;
}
.contact-aside {
    background: var(--brand-gradient);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.1rem);
    min-width: 0;
}
.contact-aside h2 { margin: 0.4rem 0 0.8rem; }
.contact-aside p { color: rgba(255,255,255,0.78); margin-bottom: 1.3rem; }
.contact-meta {
    list-style: none;
    display: grid;
    gap: 1rem;
}
.contact-meta li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}
.contact-meta i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.16);
    color: #fff;
}
.contact-meta a { text-decoration: none; color: #fff; }
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.35rem, 3vw, 1.9rem);
    box-shadow: var(--shadow-sm);
    min-width: 0;
}
.form-grid { display: grid; gap: 0.95rem; }
.form-grid label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--ink);
}
.form-grid input,
.form-grid textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font: inherit;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-grid input:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
}
.form-grid textarea { min-height: 130px; resize: vertical; }

/* Page hero (inner) */
.page-hero {
    position: relative;
    padding: calc(var(--nav-h) + 3.6rem) 0 3.2rem;
    background: var(--brand-gradient);
    color: #fff;
    overflow: hidden;
}
.page-hero .section-shell { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(1.85rem, 3.8vw, 2.7rem);
    margin-bottom: 0.55rem;
}
.page-hero p {
    max-width: 52ch;
    color: rgba(255,255,255,0.84);
}

.content-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    box-shadow: var(--shadow-sm);
}
.content-panel h2 {
    font-size: 1.55rem;
    margin: 1.5rem 0 0.65rem;
    color: var(--ink);
}
.content-panel h2:first-child { margin-top: 0; }
.content-panel p, .content-panel li { color: var(--muted); }
.detail-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 1rem;
    width: 100%;
}
.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform var(--transition);
}
.gallery-grid img:hover { transform: scale(1.03); }

.review-summary { text-align: center; margin-bottom: 2.5rem; }
.review-summary .score {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--ink);
}
.review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}
.review-form {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.35rem, 3vw, 1.9rem);
    box-shadow: var(--shadow-sm);
}
.review-form h3 { text-align: center; margin-bottom: 1.2rem; }

/* Footer */
.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1200;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.72);
    padding-top: 3.4rem;
}
.footer-main {
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 0 var(--page-gutter) 2.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}
.footer-col { min-width: 0; }
.footer-col h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-transform: none;
}
.footer-col ul { list-style: none; display: grid; gap: 0.65rem; }
.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.72);
    display: inline-flex;
    align-items: flex-start;
    gap: 0.45rem;
    transition: color var(--transition);
    text-transform: none !important;
    overflow-wrap: anywhere;
}
.footer-col a:hover { color: var(--sky); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 1.15rem var(--page-gutter) 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

@media (max-width: 980px) {
    .process-row,
    .about-split,
    .app-download-inner,
    .contact-layout,
    .service-grid,
    .portfolio-grid,
    .blog-grid,
    .blog-details-layout,
    .reviews-grid,
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .process-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .about-split,
    .app-download-inner,
    .contact-layout,
    .blog-details-layout { grid-template-columns: minmax(0, 1fr); }
    .about-accent-bar { display: none; }
}

@media (max-width: 768px) {
    .menu-btn { display: block; }
    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(86vw, 340px);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--nav-h) + 1.2rem) 1.4rem 2rem;
        gap: 0.35rem;
        transform: translateX(105%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links > li { width: 100%; }
    .nav-links > li > a {
        display: block;
        padding: 0.85rem 0.2rem;
        border-bottom: 1px solid var(--line);
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        display: none;
        padding: 0 0 0.4rem 0.6rem;
        min-width: 0;
        width: 100%;
    }
    .dropdown.open .dropdown-menu { display: block; }
    .process-row,
    .service-grid,
    .portfolio-grid,
    .blog-grid,
    .reviews-grid,
    .review-list,
    .footer-main {
        grid-template-columns: minmax(0, 1fr);
    }
    .logo-wrap img { width: 96px; }
    .hero-v2-inner { padding-bottom: 3rem; }
    .site-nav {
        padding-inline: var(--page-gutter);
    }
    .process-item { padding-right: 0; }
}
