:root {
    --bg: #f3f8f1;
    --bg-soft: #eff6eb;
    --surface: #ffffff;
    --surface-mute: #f7fbf4;
    --ink: #1b2a1f;
    --ink-soft: #4a5b4f;
    --brand-900: #0f5e3d;
    --brand-800: #16714b;
    --brand-700: #1e8658;
    --brand-500: #2ca466;
    --accent: #f2a64f;
    --accent-soft: #f8dcb5;
    --line: #d7e6d8;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 14px 28px rgba(8, 37, 20, 0.08);
    --shadow-md: 0 24px 54px rgba(8, 37, 20, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: radial-gradient(circle at top right, #fbfef9 0%, #f0f7ed 55%, #ecf4e9 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin-inline: auto;
}

.section {
    padding: 6rem 0;
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    opacity: 0.25;
    animation: drift 14s ease-in-out infinite;
}

.shape-a {
    width: 380px;
    height: 380px;
    left: -100px;
    top: -140px;
    background: radial-gradient(circle at 30% 30%, #9fddb8, #4da174);
}

.shape-b {
    width: 280px;
    height: 280px;
    right: -100px;
    top: 30%;
    background: radial-gradient(circle at 35% 30%, #f6cd95, #e79f4a);
    animation-delay: -4s;
}

.shape-c {
    width: 240px;
    height: 240px;
    left: 40%;
    bottom: -120px;
    background: radial-gradient(circle at 20% 25%, #b3e7c5, #4c946b);
    animation-delay: -8s;
}

.top-bar {
    border-bottom: 1px solid #e0ebdf;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(8px);
}

.top-row {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-row p,
.top-row a {
    margin: 0;
    color: #476254;
    font-size: 0.87rem;
    text-decoration: none;
}

.top-row p,
.top-row a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.top-row i {
    color: #1f764d;
    font-size: 0.84rem;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(248, 253, 247, 0.92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(10px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.main-header.scrolled {
    border-bottom-color: #dbe8db;
    box-shadow: 0 12px 28px rgba(9, 45, 24, 0.08);
    background: rgba(255, 255, 255, 0.97);
}

.nav-row {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2ba764, #1c734c);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.32), 0 8px 18px rgba(20, 93, 60, 0.35);
    position: relative;
}

.brand-mark::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 24px;
    left: 14px;
    top: 9px;
    border-radius: 16px 16px 12px 12px;
    background: linear-gradient(180deg, #f7f3ce 0%, #cce49d 100%);
    transform: rotate(25deg);
}

.brand-text strong {
    display: block;
    color: #0f5c3b;
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    line-height: 1.2;
}

.brand-text small {
    color: #648272;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-wrap nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav-wrap nav a {
    text-decoration: none;
    color: #2f493b;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
}

.nav-wrap nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.nav-wrap nav a:hover::after,
.nav-wrap nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    text-decoration: none;
    padding: 0.74rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #ee8f36 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 12px 22px rgba(229, 139, 44, 0.36);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-2px);
    filter: saturate(1.1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #d6e2d4;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #2e4a3c;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: calc(100vh - 130px);
    display: grid;
    align-items: center;
    overflow: clip;
    color: #f7fff9;
    background-image: linear-gradient(110deg, rgba(9, 62, 41, 0.9) 0%, rgba(15, 94, 61, 0.86) 47%, rgba(26, 130, 84, 0.8) 100%), var(--hero-bg);
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 40%, rgba(146, 236, 172, 0.2), transparent 42%),
        radial-gradient(circle at 85% 22%, rgba(255, 196, 123, 0.18), transparent 45%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(-140deg, rgba(4, 41, 24, 0.25) 0%, transparent 55%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2.3rem;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    padding: 4.6rem 0 4.1rem;
}

.hero-copy {
    max-width: 650px;
}

.hero-badge {
    margin: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.84rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 1rem 0 1rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 5.2vw, 4.55rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    margin: 0;
    color: rgba(244, 254, 248, 0.93);
    max-width: 40rem;
    line-height: 1.72;
    font-size: 1.02rem;
}

.hero-actions {
    margin-top: 1.55rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.88rem 1.4rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
    color: #112f21;
    background: linear-gradient(135deg, #f5cb88 0%, #f2a64f 70%);
    box-shadow: 0 14px 26px rgba(248, 180, 97, 0.38);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(248, 180, 97, 0.46);
}

.btn-outline {
    color: #effff3;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.btn.light {
    color: #0f4f35;
}

.hero-stats {
    margin-top: 1.55rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.stat-card {
    padding: 0.95rem 0.95rem 0.85rem;
    border-radius: var(--radius-sm);
    background: rgba(4, 51, 32, 0.34);
    border: 1px solid rgba(190, 236, 204, 0.27);
    backdrop-filter: blur(5px);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 0.83rem;
    color: #ffe7c4;
    background: rgba(255, 188, 103, 0.18);
    border: 1px solid rgba(255, 223, 175, 0.33);
}

.stat-card .value {
    margin: 0.28rem 0 0;
    font-family: "Sora", sans-serif;
    font-size: 1.46rem;
    line-height: 1.1;
}

.stat-card .label {
    margin: 0.32rem 0 0;
    font-size: 0.76rem;
    color: rgba(229, 255, 239, 0.85);
}

.hero-visual {
    position: relative;
    padding-left: 2rem;
    max-width: 560px;
    margin-inline: auto;
}

.visual-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.visual-image img {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
}

.floating-chip {
    position: absolute;
    max-width: 220px;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #173424;
    background: #e6fbe7;
    border-radius: 12px;
    padding: 0.6rem 0.72rem;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
    animation: bob 4.6s ease-in-out infinite;
}

.floating-chip i {
    color: #1d714a;
}

.chip-top {
    top: 14px;
    right: -20px;
}

.chip-bottom {
    bottom: 18px;
    left: -30px;
    background: #fff5df;
    animation-delay: -2.1s;
}

.visual-panel {
    position: absolute;
    left: -16px;
    bottom: -26px;
    max-width: 270px;
    background: #f8fff9;
    color: #294639;
    border-radius: 15px;
    padding: 0.92rem 1rem;
    box-shadow: 0 20px 36px rgba(3, 33, 18, 0.24);
    animation: cardFloat 5.8s ease-in-out infinite;
}

.visual-panel p {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.8rem;
    color: #577869;
}

.visual-panel p i {
    color: #258052;
}

.visual-panel strong {
    display: block;
    margin-top: 0.22rem;
    font-size: 1.7rem;
    font-family: "Sora", sans-serif;
    color: #0d5a3a;
}

.visual-panel span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: #577869;
    line-height: 1.45;
}

.trust-strip {
    background: #f8fcf7;
    border-bottom: 1px solid #dfeadf;
    border-top: 1px solid #dfeadf;
}

.trust-grid {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.trust-grid p {
    margin: 0;
    color: #4f6a5b;
    font-size: 0.95rem;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.trust-items span {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2f4e3f;
    padding: 0.34rem 0.64rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dce9dd;
}

.trust-items span i {
    color: #1d7d51;
    font-size: 0.78rem;
}

.section-head {
    max-width: 760px;
}

.section-head.center {
    text-align: center;
    margin-inline: auto;
}

.section-tag {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.34rem 0.66rem;
    background: #e4f4e7;
    border: 1px solid #c7e7cf;
    color: #1c6c45;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.16);
    color: #f6fffa;
    border-color: rgba(220, 255, 234, 0.34);
}

.section-head h2 {
    margin: 0.85rem 0 0.78rem;
    color: #102f22;
    font-family: "Sora", sans-serif;
    line-height: 1.18;
    font-size: clamp(1.75rem, 3.8vw, 3rem);
}

.section-head p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.services {
    position: relative;
}

.service-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
    border: 1px solid #d8e9d9;
    box-shadow: var(--shadow-sm);
    transition: transform 0.23s ease, box-shadow 0.23s ease, border-color 0.23s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #bbdcc3;
    box-shadow: 0 22px 44px rgba(8, 45, 24, 0.14);
}

.service-media {
    overflow: hidden;
}

.service-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.06);
}

.service-body {
    padding: 1rem 1rem 1.15rem;
}

.service-body .order {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f7048;
    background: #def4e5;
}

.service-body .order i {
    font-size: 0.9rem;
}

.service-body h3 {
    margin: 0.85rem 0 0.45rem;
    font-family: "Sora", sans-serif;
    line-height: 1.32;
    color: #183b2a;
    font-size: 1.07rem;
}

.service-body p {
    margin: 0;
    color: #547060;
    line-height: 1.62;
    font-size: 0.91rem;
}

.about {
    background: linear-gradient(180deg, #edf6ea 0%, #f8fcf7 100%);
}

.about-grid {
    display: grid;
    gap: 2.3rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-visual {
    position: relative;
    padding: 0 1.3rem 1.3rem 0;
}

.about-photo {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #d5e4d6;
    box-shadow: var(--shadow-md);
}

.about-photo img {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
}

.about-float {
    position: absolute;
    right: -14px;
    bottom: -10px;
    max-width: 250px;
    background: #ffffff;
    border: 1px solid #daeadb;
    border-radius: 14px;
    padding: 0.8rem 0.92rem;
    box-shadow: var(--shadow-sm);
}

.about-float .kicker {
    margin: 0;
    color: #2f714f;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-float strong {
    display: block;
    margin-top: 0.38rem;
    color: #214334;
    font-size: 0.85rem;
    line-height: 1.45;
}

.about-copy h2 {
    margin: 0.9rem 0 0.9rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
    line-height: 1.2;
}

.about-copy p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.8;
}

.about-points {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.about-points li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.58rem;
    padding-left: 0;
    color: #3c5b4a;
    line-height: 1.65;
}

.about-points li i {
    margin-top: 0.27rem;
    color: #21945d;
    font-size: 0.85rem;
}

.mini-stats {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.mini-stats > div {
    background: #ffffff;
    border: 1px solid #d6e7d7;
    border-radius: 14px;
    padding: 0.86rem 0.94rem;
}

.mini-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e4f5e8;
    border: 1px solid #cbe7d2;
    color: #1c7c4f;
    font-size: 0.83rem;
}

.mini-stats strong {
    display: block;
    color: #145d3d;
    font-family: "Sora", sans-serif;
    font-size: 1.44rem;
    line-height: 1.1;
    margin-top: 0.26rem;
}

.mini-stats span {
    color: #577565;
    font-size: 0.84rem;
}

.workflow {
    background: #fbfefb;
}

.timeline {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 131, 80, 0.18) 0%, rgba(37, 131, 80, 0.5) 52%, rgba(37, 131, 80, 0.18) 100%);
}

.timeline-item {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border: 1px solid #d8e8d8;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.timeline-item .step {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(140deg, #2ea968, #1d7b4f);
    box-shadow: 0 6px 14px rgba(29, 123, 79, 0.35);
}

.timeline-item .step i {
    font-size: 0.87rem;
}

.timeline-item h3 {
    margin: 0 0 0.55rem;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    color: #1c3e2d;
}

.timeline-item p {
    margin: 0;
    color: #557261;
    font-size: 0.9rem;
    line-height: 1.62;
}

.gallery {
    background: linear-gradient(180deg, #f8fcf7 0%, #eef6ec 100%);
}

.gallery-grid {
    margin-top: 1.7rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-card {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d7e8d8;
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(10, 52, 29, 0.14);
}

.gallery-card img {
    width: 100%;
    height: clamp(220px, 28vw, 280px);
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 0.95rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.gallery-card figcaption > i {
    flex: 0 0 auto;
    color: #1d8052;
    font-size: 0.94rem;
}

.gallery-card strong {
    color: #1a3a2b;
    line-height: 1.36;
    font-size: 0.95rem;
}

.gallery-card span {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.77rem;
    color: #567365;
    border: 1px solid #d5e5d6;
    background: #f3faf3;
    border-radius: 999px;
    padding: 0.3rem 0.57rem;
    flex: 0 0 auto;
}

.gallery-card span i {
    font-size: 0.64rem;
    color: #2c7f55;
}

.contact {
    position: relative;
    color: #f5fff8;
    background: radial-gradient(circle at 84% 15%, rgba(255, 198, 123, 0.26), transparent 30%),
        linear-gradient(140deg, #0b5336 0%, #106742 45%, #0a4a32 100%);
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.2rem;
    align-items: center;
}

.contact-copy h2 {
    margin: 0.9rem 0 0.9rem;
    font-family: "Sora", sans-serif;
    line-height: 1.2;
    font-size: clamp(1.76rem, 3.4vw, 2.65rem);
}

.contact-copy p {
    margin: 0;
    color: rgba(231, 255, 241, 0.9);
    line-height: 1.76;
    max-width: 38rem;
}

.contact-copy .btn {
    margin-top: 1.2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(225, 255, 236, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.1rem;
}

.contact-card h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
}

.contact-card > p {
    margin: 0.75rem 0 0;
    color: rgba(236, 255, 243, 0.9);
    line-height: 1.68;
}

.contact-card ul {
    margin: 0.9rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.78rem;
}

.contact-card li {
    border-radius: 12px;
    border: 1px solid rgba(229, 255, 238, 0.25);
    background: rgba(7, 51, 33, 0.24);
    padding: 0.7rem 0.76rem;
}

.contact-card span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.76rem;
    color: rgba(212, 244, 224, 0.86);
}

.contact-card span i {
    color: #9ee0b9;
}

.contact-card strong {
    margin-top: 0.18rem;
    display: block;
    font-size: 0.89rem;
    line-height: 1.44;
}

.social-icons-only {
    margin-top: 0.22rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons-only a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e8fff1;
    background: rgba(9, 62, 40, 0.45);
    border: 1px solid rgba(177, 231, 203, 0.35);
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.social-icons-only a:hover,
.social-icons-only a:focus-visible {
    transform: translateY(-2px);
    background: rgba(21, 90, 58, 0.64);
    border-color: rgba(202, 247, 224, 0.55);
}

.social-icons-only i {
    font-size: 0.95rem;
}

.wa-request {
    position: relative;
    color: #f4f2ff;
    background:
        radial-gradient(circle at 8% 18%, rgba(70, 255, 247, 0.17), transparent 28%),
        radial-gradient(circle at 86% 80%, rgba(120, 124, 255, 0.24), transparent 36%),
        linear-gradient(140deg, #120d2a 0%, #1f1541 52%, #241458 100%);
    overflow: hidden;
}

.wa-request::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(177, 162, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(177, 162, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
    pointer-events: none;
}

.wa-request .container {
    position: relative;
    z-index: 1;
}

.quote-panel {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(149, 154, 255, 0.42);
    background: linear-gradient(140deg, rgba(24, 15, 55, 0.9) 0%, rgba(32, 19, 72, 0.85) 58%, rgba(41, 19, 91, 0.82) 100%);
    box-shadow: 0 28px 65px rgba(4, 3, 15, 0.55);
}

.quote-left {
    padding: 2.3rem 2.25rem 2rem;
}

.quote-kicker {
    margin: 0;
    color: #31f0f0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-left h2 {
    margin: 0.7rem 0 0.75rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.95rem, 4vw, 3rem);
    color: #f7f5ff;
    line-height: 1.1;
}

.quote-intro {
    margin: 0;
    max-width: 38rem;
    color: rgba(234, 236, 255, 0.9);
    line-height: 1.7;
}

.quote-meta {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.6rem;
}

.quote-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f4f8ff;
    font-weight: 700;
}

.quote-meta i {
    color: #2ce4f2;
}

.wa-form {
    margin-top: 1.2rem;
}

.wa-form h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.wa-form h3 i {
    color: #33f5ee;
}

.wa-form > p {
    margin: 0.72rem 0 0;
    color: rgba(230, 234, 255, 0.85);
    line-height: 1.64;
    font-size: 0.93rem;
}

.map-showcase {
    background: #f7fbf6;
    padding: 0;
}

.map-full-wrap {
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-top: 1px solid #d7e6d8;
    border-bottom: 1px solid #d7e6d8;
    background: #eaf2eb;
}

.map-full-wrap iframe {
    width: 100%;
    height: 430px;
    border: 0;
    display: block;
}

.form-grid {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.74rem;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    display: grid;
    gap: 0.34rem;
}

.form-field > span {
    color: rgba(223, 229, 255, 0.9);
    font-size: 0.77rem;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(130, 151, 255, 0.36);
    background: rgba(75, 64, 117, 0.42);
    border-radius: 10px;
    color: #f4f2ff;
    padding: 0.68rem 0.74rem;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(212, 221, 255, 0.62);
}

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #d8e1ff 50%), linear-gradient(135deg, #d8e1ff 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 10px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2rem;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(75, 241, 246, 0.88);
    box-shadow: 0 0 0 4px rgba(75, 241, 246, 0.2);
    background: rgba(80, 70, 128, 0.56);
}

.wa-form-actions {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.55rem;
}

.wa-submit-btn {
    width: 100%;
    border-radius: 0;
    border: 1px solid #34ecf2;
    background: rgba(52, 236, 242, 0.06);
    color: #f2ffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: none;
}

.wa-submit-btn:hover,
.wa-submit-btn:focus-visible {
    transform: none;
    background: rgba(52, 236, 242, 0.18);
    box-shadow: none;
}

.wa-feedback {
    margin: 0;
    min-height: 1.2rem;
    color: #b9f4f4;
    font-size: 0.82rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.wa-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

.quote-right {
    position: relative;
    min-height: 100%;
    border-left: 1px solid rgba(146, 157, 255, 0.3);
}

.quote-image {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(20, 18, 42, 0.06) 0%, rgba(20, 18, 42, 0.62) 100%),
        linear-gradient(100deg, rgba(32, 18, 77, 0.6) 0%, rgba(44, 22, 99, 0.35) 46%, rgba(11, 194, 223, 0.2) 100%),
        var(--quote-visual);
    background-size: cover;
    background-position: center;
}

.quote-proof {
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.3rem;
    display: grid;
    gap: 0.24rem;
    padding: 0.78rem 0.86rem;
    border-radius: 12px;
    background: rgba(18, 16, 35, 0.54);
    border: 1px solid rgba(168, 190, 255, 0.4);
}

.quote-proof strong {
    font-size: 2rem;
    line-height: 1;
    color: #31f2f0;
    font-family: "Sora", sans-serif;
}

.quote-proof span {
    color: rgba(236, 242, 255, 0.88);
    line-height: 1.45;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer {
    background: #082c1e;
    color: #d8f0df;
    border-top: 1px solid rgba(191, 236, 205, 0.16);
}

.footer-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-inner p {
    margin: 0;
    font-size: 0.86rem;
}

.to-top {
    position: fixed;
    right: 20px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(150deg, #2ba765, #1a744c);
    color: #ffffff;
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    cursor: pointer;
    z-index: 50;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.to-top i {
    font-size: 0.95rem;
}

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

.empty-state {
    margin: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px dashed #b8cfbc;
    background: #f8fcf8;
    color: #557260;
}

.reveal {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    transition:
        opacity 0.62s ease,
        transform 0.62s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

@keyframes drift {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(18px) translateX(-14px);
    }
}

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

@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .timeline::before {
        display: none;
    }
}

@media (max-width: 980px) {
    .top-row {
        min-height: 40px;
    }

    .main-header {
        top: 0;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-wrap {
        position: absolute;
        top: calc(100% + 8px);
        left: 4%;
        right: 4%;
        background: #f7fcf6;
        border: 1px solid #dce9db;
        border-radius: 15px;
        padding: 0.85rem;
        box-shadow: 0 18px 34px rgba(10, 44, 25, 0.12);
        display: grid;
        gap: 0.9rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-wrap.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-wrap nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.64rem;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: unset;
    }

    .hero-grid {
        padding-top: 3.5rem;
        padding-bottom: 4.6rem;
    }

    .hero-visual {
        padding-left: 0;
        margin-top: 0.6rem;
        max-width: 520px;
    }

    .visual-panel {
        left: 12px;
    }

    .trust-grid {
        min-height: 82px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0.65rem 0;
    }

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

    .quote-panel {
        grid-template-columns: 1fr;
    }

    .quote-left {
        padding: 1.65rem 1.5rem;
    }

    .quote-right {
        min-height: 330px;
        border-left: 0;
        border-top: 1px solid rgba(146, 157, 255, 0.3);
    }
}

@media (max-width: 720px) {
    .top-bar {
        display: none;
    }

    .nav-row {
        min-height: 74px;
    }

    .section {
        padding: 4.35rem 0;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 10vw, 2.75rem);
    }

    .hero-subtitle {
        font-size: 0.94rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .quote-left {
        padding: 1.3rem 1.1rem;
    }

    .quote-kicker {
        font-size: 0.82rem;
    }

    .quote-left h2 {
        font-size: clamp(1.75rem, 8.4vw, 2.2rem);
    }

    .quote-intro {
        font-size: 0.92rem;
    }

    .quote-meta {
        gap: 0.75rem;
    }

    .quote-meta span {
        font-size: 0.92rem;
    }

    .quote-right {
        min-height: 270px;
    }

    .quote-proof {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .quote-proof strong {
        font-size: 1.65rem;
    }

    .chip-top,
    .chip-bottom {
        position: static;
        display: block;
        margin: 0.65rem 0 0;
        max-width: none;
    }

    .visual-panel {
        position: static;
        margin-top: 0.78rem;
        max-width: none;
        animation: none;
    }

    .service-grid,
    .timeline,
    .gallery-grid,
    .mini-stats,
    .form-grid.two {
        grid-template-columns: 1fr;
    }

    .map-full-wrap iframe {
        height: 290px;
    }

    .about-visual {
        padding: 0 0 1rem;
    }

    .about-float {
        position: static;
        margin-top: 0.75rem;
        max-width: none;
    }

    .footer-inner {
        min-height: 76px;
        flex-direction: column;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
