:root {
    --primary: #0666dc;
    --primary-dark: #0b1d47;
    --accent: #ffc61a;
    --accent-soft: #fff4ca;
    --surface: #ffffff;
    --surface-alt: #f4f8ff;
    --line: #d8e2f2;
    --text: #0f1f45;
    --muted: #4e5e7d;
    --shadow-lg: 0 18px 50px rgba(16, 41, 87, 0.08);
    --shadow-md: 0 12px 30px rgba(16, 41, 87, 0.08);
    --radius-xl: 28px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top center, rgba(8, 102, 220, 0.05), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 18%, #f8fbff 100%);
}

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

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

.page-shell {
    overflow: hidden;
}

.container {
    max-width: 1240px;
    padding-left: 32px;
    padding-right: 32px;
}

.site-header {
    padding: 20px 0 10px;
}

.site-navbar {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(219, 229, 243, 0.9);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    padding: 12px 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    width: auto;
    height: 52px;
    max-width: 230px;
    object-fit: contain;
}

.btn-pill {
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
}

.site-nav {
    gap: 10px;
}

.site-nav .nav-link {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 18px !important;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--primary);
    background: rgba(6, 102, 220, 0.08);
}

.nav-toggle {
    border: 1px solid rgba(219, 229, 243, 0.95);
    border-radius: 14px;
    padding: 10px 12px;
}

.nav-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(6, 102, 220, 0.12);
}

.nav-toggle .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15,31,69,0.88)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-cta {
    white-space: nowrap;
}

.btn-primary.btn-pill,
.submit-banner {
    background: linear-gradient(135deg, #0563da 0%, #0c77ff 100%);
    box-shadow: 0 12px 26px rgba(6, 102, 220, 0.24);
}

.btn-light.btn-pill {
    color: var(--primary);
    background: #fff;
}

.hero-section {
    position: relative;
    padding: 34px 0 20px;
}

.hero-home {
    width: 100%;
    min-height: 760px;
    background-image: url("../images/hero-building.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100%;
}

.hero-contact {
    width: 100%;
    min-height: 540px;
    background-image: url("../images/hero-location.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100%;
}

.hero-copy {
    padding: 42px 0 20px 20px;
    position: relative;
    z-index: 1;
}

.hero-copy.narrow {
    padding-top: 82px;
    max-width: 470px;
}

.section-kicker {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.section-line {
    display: block;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: #5ba6e7;
    margin-bottom: 28px;
}

.hero-copy h1,
.section-heading h2 {
    font-size: clamp(2.6rem, 4.5vw, 4.7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-copy p,
.section-heading p,
.feature-item p,
.product-card p,
.info-card p,
.cta-copy p {
    color: var(--muted);
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 0;
}

.hero-copy p {
    max-width: 640px;
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: #efbc00 !important;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(221, 229, 241, 0.95);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 16px 18px;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mini-icon,
.product-icon,
.feature-icon,
.info-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    background: linear-gradient(180deg, #eef5ff 0%, #f8fbff 100%);
    flex: 0 0 auto;
}

.mini-card strong,
.mini-card span:last-child {
    display: block;
    font-size: 1.02rem;
}

.mini-card strong {
    font-weight: 700;
    margin-bottom: 2px;
}

.section-block {
    padding: 36px 0 24px;
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 42px;
}

.section-heading.compact {
    margin-bottom: 24px;
}

.section-heading.left {
    margin: 0 0 28px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 12px;
}

.section-heading p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.product-card,
.info-card,
.form-shell {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(225, 232, 243, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.product-card {
    padding: 28px 26px 0;
    overflow: hidden;
    min-height: 506px;
}

.product-card::after {
    content: "";
    position: absolute;
    right: -6%;
    bottom: 70px;
    width: 72%;
    height: 34%;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.85;
}

.product-card.tone-blue::after {
    background: linear-gradient(135deg, rgba(220, 235, 255, 0.9), rgba(236, 244, 255, 0.9));
}

.product-card.tone-yellow::after {
    background: linear-gradient(135deg, rgba(255, 244, 199, 0.95), rgba(255, 248, 220, 0.9));
}

.product-card h3,
.feature-item h3,
.info-card h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 20px 0 10px;
}

.product-card p {
    max-width: 290px;
    font-size: 1.08rem;
    line-height: 1.9;
}

.product-card img {
    position: relative;
    z-index: 1;
    margin: 22px auto 0;
    width: 100%;
}

.why-grid {
    margin-top: 18px;
}

.feature-item {
    height: 100%;
    padding: 10px 30px 10px;
    text-align: left;
}

.feature-item h3 {
    font-size: 1.45rem;
    margin: 18px 0 12px;
}

.feature-item p {
    font-size: 1.02rem;
    line-height: 1.9;
}

@media (min-width: 1200px) {
    .why-grid .col-xl-3:not(:last-child) .feature-item {
        border-right: 1px solid #e7edf7;
    }
}

.cta-banner {
    padding: 28px 0 22px;
}

.cta-card {
    position: relative;
    width: 100%;
    background-color: #0665d9;
    border-radius: 0;
    overflow: hidden;
    min-height: 238px;
    padding: 0;
}

.cta-home .cta-card {
    background-image: url("../images/cta-home-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cta-contact .cta-card {
    background-image: url("../images/cta-contact-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cta-card > .container,
.cta-contact-inner {
    min-height: inherit;
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 38px;
}

.cta-copy {
    position: relative;
    z-index: 2;
    max-width: 380px;
}

.cta-copy.small {
    max-width: 540px;
}

.cta-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin-bottom: 14px;
}

.cta-copy h2 span {
    color: #ffda2f;
}

.cta-copy p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.2rem;
    max-width: 330px;
    margin-bottom: 30px;
}

.info-card {
    padding: 32px 26px;
    min-height: 265px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-card > div {
    border-left: 1px solid #e6edf8;
    padding-left: 22px;
    min-height: 120px;
}

.info-card p,
.contact-timing {
    font-size: 1.05rem;
    line-height: 1.9;
}

.info-card a {
    color: var(--text);
}

.contact-timing {
    color: var(--muted);
    margin-top: 14px;
}

.contact-timing i {
    color: var(--accent);
    margin-right: 8px;
}

.tone-yellow {
    background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
}

.tone-yellow.info-icon,
.tone-yellow .product-icon,
.info-icon.tone-yellow {
    background: linear-gradient(180deg, #fff5cc 0%, #fffdf0 100%);
    color: var(--accent);
}

.form-shell {
    padding: 34px 40px 40px;
}

.contact-form .form-control {
    border: 1px solid #dbe4f2;
    border-radius: 12px;
    padding: 16px 18px 16px 54px;
    min-height: 58px;
    font-size: 1.05rem;
    color: var(--text);
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #707d95;
}

.contact-form .form-control:focus {
    border-color: #9ec4f2;
    box-shadow: 0 0 0 0.2rem rgba(6, 102, 220, 0.1);
}

.input-wrap {
    position: relative;
    display: block;
}

.input-wrap i {
    position: absolute;
    top: 18px;
    left: 18px;
    color: #8d98ad;
    z-index: 2;
}

.textarea-wrap .form-control {
    min-height: 100%;
    padding-top: 16px;
    resize: none;
}

.submit-banner {
    position: relative;
    margin-top: 28px;
    width: 100%;
    color: #fff;
    border: 0;
    border-radius: 12px;
    min-height: 76px;
    font-size: 1.2rem;
    font-weight: 700;
    overflow: hidden;
}

.submit-banner::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 140px;
    height: 100%;
    background: linear-gradient(135deg, #ffd62d, #ffc400);
    clip-path: polygon(74% 0, 100% 0, 100% 100%, 0 100%);
}

.submit-banner span,
.submit-banner i {
    position: relative;
    z-index: 1;
}

.submit-banner i {
    margin-left: 12px;
}

.cta-contact .cta-card {
    min-height: 230px;
}

.cta-contact-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.3rem;
    flex: 0 0 auto;
}

.site-footer {
    padding: 18px 0 32px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.95rem;
    color: #7a89a3;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.site-footer p {
    font-size: 0.95rem;
    color: #7a89a3;
    text-align: center;
}

.legal-hero {
    padding: 48px 0 18px;
}

.legal-hero-copy {
    max-width: 760px;
    padding: 34px 0 10px;
}

.legal-hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.legal-hero-copy p {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

.legal-section {
    padding: 12px 0 48px;
}

.legal-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(225, 232, 243, 0.95);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    padding: 34px 34px 16px;
}

.legal-block {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e7edf7;
}

.legal-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-block p {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.9;
    margin: 0;
}

.legal-block p + p,
.legal-block p + .legal-list,
.legal-list + p {
    margin-top: 14px;
}

.legal-list {
    margin: 14px 0 0;
    padding-left: 22px;
    color: var(--muted);
}

.legal-list li {
    font-size: 1.04rem;
    line-height: 1.9;
    margin-bottom: 8px;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: var(--primary);
}

.about-hero {
    padding: 40px 0 18px;
}

.about-copy {
    padding-left: 0;
}

.about-highlight-card,
.about-card,
.feature-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(225, 232, 243, 0.95);
    box-shadow: var(--shadow-md);
}

.about-highlight-card {
    border-radius: 28px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(255, 255, 255, 0.98)),
        linear-gradient(135deg, rgba(6, 102, 220, 0.06), transparent 55%);
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-stat {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid #e5edf8;
}

.about-stat strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-stat span {
    display: block;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.about-section {
    padding: 22px 0 18px;
}

.about-card {
    border-radius: 28px;
    padding: 30px;
    height: 100%;
}

.about-card h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.about-card p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.95;
    margin: 0 0 16px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.accent-card {
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.about-points {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 14px;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.about-points i {
    color: var(--primary);
    font-size: 1.15rem;
    margin-top: 2px;
}

.feature-panel {
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
}

.feature-panel h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 18px 0 10px;
}

.feature-panel p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 1199.98px) {
    .hero-home {
        min-height: 680px;
        background-size: auto 94%;
    }

    .hero-contact {
        min-height: 470px;
        background-size: auto 92%;
    }

    .hero-copy {
        padding-left: 0;
    }
}

@media (max-width: 991.98px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-navbar {
        padding: 14px 18px;
    }

    .site-logo img {
        height: 46px;
        max-width: 200px;
    }

    .site-navbar .navbar-collapse {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid #e7edf7;
    }

    .site-nav {
        gap: 2px;
    }

    .site-nav .nav-link {
        text-align: center;
    }

    .hero-copy,
    .hero-copy.narrow {
        padding-top: 24px;
        text-align: center;
        max-width: none;
    }

    .hero-home {
        min-height: auto;
        background-position: center bottom;
        background-size: 100% auto;
        padding-bottom: 320px;
    }

    .hero-contact {
        min-height: auto;
        background-position: center bottom;
        background-size: 100% auto;
        padding-bottom: 220px;
    }

    .section-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy p,
    .section-heading p {
        max-width: 100%;
    }

    .hero-badges {
        justify-content: center;
    }

    .product-card {
        min-height: 460px;
    }

    .info-card {
        min-height: auto;
    }

    .form-shell {
        padding: 28px 22px 30px;
    }

    .cta-card {
        min-height: auto;
    }

    .cta-card > .container,
    .cta-contact-inner {
        padding-top: 32px;
        padding-bottom: 32px;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .site-navbar {
        gap: 16px;
        align-items: center;
    }

    .site-navbar .btn-pill {
        padding: 12px 18px;
        font-size: 0.92rem;
    }

    .site-logo img {
        height: 40px;
        max-width: 170px;
    }

    .nav-toggle {
        margin-left: auto;
    }

    .site-navbar .navbar-collapse {
        text-align: center;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-home {
        background-size: 135% auto;
        padding-bottom: 250px;
    }

    .hero-contact {
        background-size: 130% auto;
        padding-bottom: 185px;
    }

    .hero-copy h1,
    .section-heading h2 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .hero-copy p,
    .section-heading p,
    .product-card p,
    .feature-item p,
    .info-card p,
    .contact-timing,
    .cta-copy p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .mini-card {
        min-width: 100%;
        justify-content: flex-start;
    }

    .product-card {
        min-height: auto;
    }

    .feature-item {
        text-align: center;
        padding: 10px 12px;
    }

    .info-card {
        flex-direction: column;
    }

    .info-card > div {
        border-left: 0;
        border-top: 1px solid #e6edf8;
        padding-left: 0;
        padding-top: 18px;
        min-height: 0;
    }

    .section-heading.left,
    .section-heading.left h2,
    .hero-copy.narrow {
        text-align: left;
    }

    .section-heading.left .section-line {
        margin-left: 0;
        margin-right: 0;
    }

    .submit-banner {
        min-height: 66px;
        font-size: 1.05rem;
    }

    .submit-banner::after {
        width: 100px;
    }

    .cta-copy h2 {
        font-size: 2rem;
    }

    .cta-contact-icon {
        width: 76px;
        height: 76px;
        font-size: 2rem;
    }

    .cta-home .cta-card,
    .cta-contact .cta-card {
        background-position: 72% center;
    }

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

    .footer-links {
        justify-content: center;
    }

    .legal-card {
        padding: 26px 22px 12px;
    }

    .about-highlight-grid {
        grid-template-columns: 1fr;
    }

    .about-highlight-card,
    .about-card,
    .feature-panel {
        padding: 24px 20px;
    }
}
