:root {
    --primary: #0f3d3e;
    --secondary: #e8f3ef;
    --accent: #e08a00;
    --ink: #101a1a;
    --muted: #526260;
    --white: #ffffff;
    --soft: #f5faf7;
    --dark: #071f21;
    --line: rgba(15, 61, 62, 0.16);
    --shadow: 0 24px 70px rgba(15, 61, 62, 0.14);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fbfffc 0%, #f3faf6 45%, #ffffff 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 76px 0;
}

.notice-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
}

.notice-bar span {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffb347;
    font-weight: 900;
}

.notice-bar strong {
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.site-header.has-shadow {
    box-shadow: 0 12px 30px rgba(15, 61, 62, 0.08);
}

.navbar {
    width: min(1120px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffbd55, var(--accent));
    color: #142322;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(224, 138, 0, 0.28);
}

.brand strong {
    display: block;
    color: var(--primary);
    line-height: 1.1;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.nav-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.nav-links .nav-cta {
    background: var(--primary);
    color: var(--white);
    padding-inline: 18px;
}

.nav-links .nav-cta:hover {
    background: var(--accent);
    color: #111111;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 15px;
    background: var(--primary);
    cursor: pointer;
    padding: 12px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 88px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -140px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(224, 138, 0, 0.13);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 61, 62, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin: 22px 0 20px;
    color: var(--primary);
    font-size: clamp(44px, 6.7vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: #111111;
    box-shadow: 0 16px 30px rgba(224, 138, 0, 0.28);
}

.btn-primary:hover {
    background: #f0a11a;
    box-shadow: 0 20px 40px rgba(224, 138, 0, 0.38);
}

.btn-outline {
    background: var(--white);
    border-color: var(--line);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--secondary);
}

.full-row {
    grid-column: 1 / -1;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 560px;
}

.hero-trust div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
}

.hero-trust strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
}

.hero-trust span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.hero-media {
    position: relative;
    min-height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 31, 33, 0.08), rgba(7, 31, 33, 0.44)),
        radial-gradient(circle at top right, rgba(224, 138, 0, 0.28), transparent 20rem);
}

.hero-media-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.hero-media-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-media-card strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
    line-height: 1.25;
}

.quick-contact {
    padding: 12px 0 24px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 22px 50px rgba(15, 61, 62, 0.2);
}

.quick-contact-grid a,
.quick-contact-grid div {
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-contact-grid a:last-child,
.quick-contact-grid div:last-child {
    border-right: 0;
}

.quick-contact-grid span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quick-contact-grid strong {
    display: block;
    color: var(--white);
    font-weight: 900;
    line-height: 1.25;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2 {
    margin: 16px 0 12px;
    color: var(--primary);
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.service-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
    align-items: stretch;
}

.service-image {
    min-height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(224, 138, 0, 0.12);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(15, 61, 62, 0.12);
}

.service-card > span {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 900;
}

.service-card h3,
.timeline-item h3,
.result-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.15;
}

.service-card p,
.timeline-item p,
.result-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--muted);
}

.why-us {
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), #123c3d);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 42px;
    align-items: center;
}

.why-us .eyebrow,
.contact .eyebrow {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.why-copy h2,
.contact-copy h2 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.why-copy p,
.contact-copy p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.check-list div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.check-list strong {
    display: block;
    color: #ffb347;
}

.check-list span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.72);
}

.why-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.why-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);
}

.stat-card strong {
    display: block;
    color: var(--accent);
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-card span {
    display: block;
    margin-top: 4px;
    color: var(--primary);
    font-weight: 900;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.timeline-item {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(15, 61, 62, 0.08);
}

.timeline-item > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #111111;
    font-weight: 900;
}

.results {
    background: var(--soft);
}

.results-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.result-panel {
    padding: 34px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(224, 138, 0, 0.18), transparent 18rem),
        var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(15, 61, 62, 0.08);
}

.result-panel h2 {
    margin: 18px 0 14px;
    color: var(--primary);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.result-panel p {
    color: var(--muted);
}

.result-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.result-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(15, 61, 62, 0.08);
}

.result-card.highlight {
    background: linear-gradient(135deg, var(--primary), #123c3d);
}

.result-card.highlight h3 {
    color: #ffb347;
}

.result-card.highlight p {
    color: rgba(255, 255, 255, 0.78);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(15, 61, 62, 0.08);
}

.stars {
    margin-bottom: 14px;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.testimonial-card p {
    color: var(--muted);
}

.testimonial-card strong {
    color: var(--primary);
}

.faq {
    background: var(--soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 36px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 0;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    font-weight: 900;
}

.faq-item button span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--primary);
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.faq-item.is-open .faq-answer {
    max-height: 180px;
}

.faq-item.is-open button span {
    transform: rotate(45deg);
    background: var(--accent);
    color: #111111;
}

.contact {
    background:
        radial-gradient(circle at top left, rgba(224, 138, 0, 0.14), transparent 24rem),
        linear-gradient(135deg, var(--dark), #123c3d);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.contact-details a,
.contact-details div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-details span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-details strong {
    display: block;
    margin-top: 4px;
    color: var(--white);
    line-height: 1.25;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row label {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfffc;
    color: var(--ink);
    padding: 14px 15px;
    outline: none;
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(224, 138, 0, 0.14);
}

.form-success {
    display: none;
    grid-column: 1 / -1;
    margin: 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: #e8f7ee;
    color: #105c33;
    font-weight: 800;
}

.form-success.is-visible {
    display: block;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.35);
}

.whatsapp-float::before {
    content: "●";
    margin-right: 8px;
    font-size: 12px;
}

.site-footer {
    padding: 30px 0;
    background: #061d1f;
    color: var(--white);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-grid p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    color: #ffb347;
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .service-layout,
    .why-grid,
    .results-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 64px;
    }

    .hero-media,
    .hero-media img {
        min-height: 460px;
        height: 460px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid a,
    .quick-contact-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .quick-contact-grid a:last-child,
    .quick-contact-grid div:last-child {
        border-bottom: 0;
    }

    .timeline,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image img {
        min-height: 380px;
    }
}

@media (max-width: 760px) {
    .notice-bar {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 122px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: var(--white);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-18px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        padding: 14px;
    }

    .section-pad {
        padding: 62px 0;
    }

    h1 {
        font-size: clamp(40px, 13vw, 62px);
    }

    .hero-trust,
    .service-grid,
    .timeline,
    .result-cards,
    .testimonial-grid,
    .quote-form {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .hero-media img {
        min-height: 390px;
        height: 390px;
    }

    .why-image img {
        height: 390px;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 420px) {
    .container,
    .navbar {
        width: min(100% - 24px, 1120px);
    }

    .brand small {
        display: none;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .quote-form {
        padding: 20px;
    }
}