:root {
    --biwds-ink: #12355b;
    --biwds-ink-2: #0b223b;
    --biwds-sand: #ffe6c7;
    --biwds-cream: #fff8ee;
    --biwds-card: #ffffff;
    --biwds-gold: #d49b42;
    --biwds-muted: #5f6b78;
    --biwds-border: rgba(18, 53, 91, 0.16);
    --biwds-shadow: 0 24px 60px rgba(18, 53, 91, 0.16);
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--biwds-sand);
    color: var(--biwds-ink-2);
    font-family: Arial, Helvetica, sans-serif;
}

body.biwds-standalone a {
    color: inherit;
}

.biwds-site {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.7), transparent 35%),
        linear-gradient(180deg, #fff3df 0%, var(--biwds-sand) 48%, #fff8ee 100%);
}

.biwds-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 70px);
    background: var(--biwds-ink);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.biwds-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.biwds-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 4px;
}

.biwds-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.biwds-nav a {
    text-decoration: none;
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    opacity: 0.95;
}

.biwds-nav a:hover,
.biwds-nav a:focus {
    background: rgba(255, 255, 255, 0.14);
    outline: none;
}

.biwds-main {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 54px 0 70px;
}

.biwds-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    min-height: 590px;
}

.biwds-eyebrow {
    margin: 0 0 12px;
    color: var(--biwds-gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
}

.biwds-hero h1,
.biwds-page-hero h1 {
    margin: 0;
    color: var(--biwds-ink);
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.biwds-hero-subtitle,
.biwds-page-hero p,
.biwds-section-head p,
.biwds-split p,
.biwds-cta-band p {
    color: var(--biwds-muted);
    font-size: 1.13rem;
    line-height: 1.75;
}

.biwds-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.biwds-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--biwds-ink);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(18, 53, 91, 0.22);
}

.biwds-button:hover,
.biwds-button:focus {
    transform: translateY(-1px);
    outline: none;
}

.biwds-button-secondary {
    background: #fff;
    color: var(--biwds-ink) !important;
    box-shadow: inset 0 0 0 1px var(--biwds-border);
}

.biwds-hero-card {
    min-height: 390px;
    border-radius: 34px;
    padding: 28px;
    background: linear-gradient(145deg, #ffffff 0%, #f4dcc0 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--biwds-shadow);
    position: relative;
    overflow: hidden;
}

.biwds-hero-card:before,
.biwds-hero-card:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(18, 53, 91, 0.12);
}

.biwds-hero-card:before {
    width: 220px;
    height: 220px;
    right: -70px;
    top: -50px;
}

.biwds-hero-card:after {
    width: 160px;
    height: 160px;
    left: -40px;
    bottom: -40px;
    background: rgba(212, 155, 66, 0.22);
}

.biwds-browser-bar {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    padding: 16px;
    border-radius: 20px 20px 0 0;
    background: var(--biwds-ink);
}

.biwds-browser-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.8;
}

.biwds-browser-title {
    position: relative;
    z-index: 1;
    padding: 34px 24px;
    background: #fff;
    color: var(--biwds-ink);
    font-size: 1.7rem;
    font-weight: 900;
    border-radius: 0 0 20px 20px;
}

.biwds-browser-lines {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.biwds-browser-lines i {
    display: block;
    height: 18px;
    border-radius: 999px;
    background: rgba(18, 53, 91, 0.16);
}

.biwds-browser-lines i:nth-child(2) { width: 82%; }
.biwds-browser-lines i:nth-child(3) { width: 62%; }

.biwds-feature-grid,
.biwds-card-grid,
.biwds-proof-grid {
    display: grid;
    gap: 20px;
}

.biwds-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 10px 0 70px;
}

.biwds-feature-grid article,
.biwds-service-card,
.biwds-contact-card,
.biwds-form,
.biwds-proof-grid article {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--biwds-border);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 38px rgba(18, 53, 91, 0.08);
}

.biwds-feature-grid h3,
.biwds-service-card h3 {
    margin: 14px 0 10px;
    color: var(--biwds-ink);
}

.biwds-feature-grid p,
.biwds-service-card p {
    margin: 0;
    color: var(--biwds-muted);
    line-height: 1.65;
}

.biwds-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--biwds-ink);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
}

.biwds-split {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 0.54fr);
    gap: 28px;
    align-items: stretch;
    margin: 0 0 70px;
}

.biwds-split h2,
.biwds-section-head h2,
.biwds-cta-band h2,
.biwds-contact-card h2 {
    margin: 0 0 12px;
    color: var(--biwds-ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.biwds-proof-grid {
    grid-template-columns: 1fr;
}

.biwds-proof-grid strong {
    display: block;
    color: var(--biwds-ink);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.biwds-proof-grid span {
    color: var(--biwds-muted);
    line-height: 1.5;
}

.biwds-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 26px;
}

.biwds-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.biwds-service-image {
    min-height: 170px;
    border-radius: 22px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(18, 53, 91, 0.95), rgba(212, 155, 66, 0.9));
    position: relative;
    overflow: hidden;
}

.biwds-service-image:before,
.biwds-service-image:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 18px;
}

.biwds-service-image:before {
    width: 58%;
    height: 18px;
    left: 20px;
    top: 28px;
}

.biwds-service-image:after {
    width: 72%;
    height: 96px;
    right: -20px;
    bottom: -18px;
}

.biwds-service-image-two {
    background: linear-gradient(135deg, #0b223b, #527ca8);
}

.biwds-service-image-three {
    background: linear-gradient(135deg, #593a1d, #d49b42);
}

.biwds-page {
    padding-top: 60px;
}

.biwds-page-hero {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px;
}

.biwds-page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.biwds-cta-band {
    margin-top: 50px;
    padding: 34px;
    border-radius: 30px;
    background: var(--biwds-ink);
    color: #fff;
    text-align: center;
    box-shadow: var(--biwds-shadow);
}

.biwds-cta-band h2,
.biwds-cta-band p {
    color: #fff;
}

.biwds-contact-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) 1fr;
    gap: 26px;
    align-items: start;
}

.biwds-contact-card p {
    color: var(--biwds-muted);
    line-height: 1.75;
}

.biwds-contact-card a,
.biwds-page-hero a {
    color: var(--biwds-ink);
    font-weight: 800;
}

.biwds-form {
    display: grid;
    gap: 16px;
}

.biwds-form label {
    display: grid;
    gap: 7px;
    color: var(--biwds-ink);
    font-weight: 800;
}

.biwds-form input,
.biwds-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--biwds-border);
    border-radius: 16px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
    color: var(--biwds-ink-2);
}

.biwds-form input:focus,
.biwds-form textarea:focus {
    outline: 3px solid rgba(212, 155, 66, 0.22);
    border-color: var(--biwds-gold);
}

.biwds-notice {
    padding: 13px 16px;
    border-radius: 16px;
    font-weight: 800;
}

.biwds-success {
    background: #e8f7ea;
    color: #166028;
}

.biwds-error {
    background: #ffe6e6;
    color: #842626;
}

.biwds-footer {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    gap: 30px;
    align-items: start;
    padding: 40px clamp(18px, 5vw, 70px) 24px;
    background: var(--biwds-ink-2);
    color: #fff;
}

.biwds-footer img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 5px;
    margin-bottom: 12px;
}

.biwds-footer h2,
.biwds-footer h3,
.biwds-footer p {
    margin-top: 0;
}

.biwds-footer p {
    color: rgba(255, 255, 255, 0.76);
}

.biwds-footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 8px 0;
    opacity: 0.86;
}

.biwds-footer a:hover,
.biwds-footer a:focus {
    opacity: 1;
    text-decoration: underline;
}

.biwds-copyright {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 20px;
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .biwds-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .biwds-hero,
    .biwds-split,
    .biwds-contact-layout {
        grid-template-columns: 1fr;
    }
    .biwds-feature-grid,
    .biwds-card-grid {
        grid-template-columns: 1fr;
    }
    .biwds-hero {
        min-height: 0;
        padding-top: 20px;
    }
    .biwds-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .biwds-main {
        width: min(100% - 24px, 1120px);
        padding-top: 34px;
    }
    .biwds-logo span {
        font-size: 0.96rem;
    }
    .biwds-nav a {
        padding: 8px 10px;
    }
    .biwds-hero-card {
        min-height: 300px;
        padding: 18px;
    }
}

/* v1.1 restored images from the original Hostinger build */
.biwds-hero-image,
.biwds-content-image {
    margin: 0;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--biwds-shadow);
    border: 1px solid rgba(255, 255, 255, 0.88);
    background: #fff;
}

.biwds-hero-image img,
.biwds-content-image img,
.biwds-service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.biwds-hero-image {
    min-height: 430px;
}

.biwds-hero-image img {
    min-height: 430px;
}

.biwds-split-with-image {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
}

.biwds-content-image {
    min-height: 320px;
}

.biwds-content-image img {
    min-height: 320px;
}

.biwds-proof-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.biwds-service-image {
    min-height: 190px;
    background: #fff;
}

.biwds-service-image:before,
.biwds-service-image:after {
    display: none;
}

@media (max-width: 900px) {
    .biwds-split-with-image {
        grid-template-columns: 1fr;
    }
    .biwds-proof-inline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .biwds-hero-image,
    .biwds-hero-image img {
        min-height: 260px;
    }
}
