html,
body {
    display: block;
    width: 100%;
    min-height: 100%;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
    background: #f4f8fc;
    color: #0f172a;
}

body {
    overflow-x: hidden;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

.site-header,
header {
    z-index: 9999;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a,
button,
input,
textarea,
select {
    font-family: "Inter", sans-serif;
}

a {
    color: inherit;
}

main {
    display: block;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.28s ease;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.button i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.button i svg {
    display: block;
}

.button span {
    display: inline-block;
    line-height: 1.1;
}

.button.blue {
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}

.button.blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

.button.green {
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.button.green:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.28);
}

.button.blue-light {
    color: #0f3d91;
    background: #e7f2ff;
    box-shadow: none;
}

.button.blue-light:hover {
    background: #d6e9ff;
    transform: translateY(-2px);
}

.button.gray-light {
    color: #0f172a;
    background: #e8eef5;
    box-shadow: none;
}

.button.gray-light:hover {
    background: #dbe5ee;
}

.button.red {
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.button.red:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.24);
}

.site-header,
header {
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
    padding: 0 2%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 999;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0;
    transition: all 0.3s ease;
}

header.active {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
    .site-header,
    header {
        padding: 0 16px;
    }
}

header .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: auto;
    margin: 18px 0;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    header .logo {
        margin: 16px 0;
        gap: 10px;
    }
}

header .logo img {
    display: block;
    width: 100%;
    height: auto;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.logo-text-wrap {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    display: block;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #0f172a;
}

.logo-subtext {
    display: block;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
}

@media (max-width: 640px) {
    .logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 19px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-subtext {
        font-size: 9px;
    }
}

header .menu {
    display: inline-block;
    width: calc(100% - 210px - 420px);
    vertical-align: middle;
    text-align: center;
}

@media (max-width: 1366px) {
    header .menu {
        width: calc(100% - 210px - 440px);
    }
}

@media (max-width: 1100px) {
    header .menu {
        display: none;
    }
}

header .menu a {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

header .menu a.item {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #16345f;
    padding: 38px 16px;
    transition: all 0.25s ease;
    vertical-align: top;
}

@media (max-width: 1366px) {
    header .menu a.item {
        padding: 38px 10px;
        font-size: 14px;
    }
}

header .menu a.item::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 24px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0ea5e9, #2563eb);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

header .menu a.item:hover {
    color: #2563eb;
}

header .menu a.item:hover::after {
    transform: scaleX(1);
}

header .right {
    position: absolute;
    top: 0;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

@media (max-width: 1366px) {
    header .right {
        right: 18px;
    }
}

@media (max-width: 1100px) {
    header .right {
        right: 72px;
    }
}

@media (max-width: 640px) {
    header .right {
        right: 58px;
        gap: 6px;
    }
}

header .right .button {
    padding: 10px 18px;
    border-radius: 14px;
}

header .right .button i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

header .right .button i svg {
    fill: #fff !important;
    width: 22px;
    height: 22px;
}

header .right .button span {
    display: inline-block;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
}

header .right .button.partner,
header .right .button.get-offer {
    vertical-align: top;
    margin: 0;
}

@media (max-width: 1024px) {
    header .right .button {
        padding: 10px 12px;
        min-width: unset;
    }

    header .right .button i svg {
        width: 20px;
        height: 20px;
    }

    header .right .button span {
        display: none;
    }
}

@media (max-width: 640px) {
    header .right a.button.green {
        display: none;
    }
}

header .right .login-cont {
    display: inline-block;
    position: relative;
    vertical-align: top;
    text-align: right;
    padding: 0;
    margin-left: 2px;
}

header .right .login-cont .button {
    padding: 10px 16px;
}

@media (max-width: 1024px) {
    header .right .login-cont .button {
        padding: 10px 12px;
    }
}

header .right .login-cont .button i {
    padding: 0;
}

header .right .login-cont .button i svg {
    width: 20px;
    height: 20px;
}

header .right .login-cont a {
    display: inline-block;
    margin: 0;
}

header .right .login-cont:hover .login-menu {
    display: inline-block;
}

header .right .login-cont .login-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    padding: 10px;
    width: 240px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
    margin-top: 0;
}

header .right .login-cont .login-menu li {
    display: block;
    background: #f3f7fb;
    border-radius: 12px;
    margin: 6px 0;
    overflow: hidden;
}

header .right .login-cont .login-menu li a {
    display: block;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #0f172a;
}

header .right .login-cont .login-menu li a:hover {
    background: #e9f2ff;
    color: #1d4ed8;
}



.hero-intro {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.14), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
    padding: 72px 0 56px;
}

@media (max-width: 1024px) {
    .hero-intro {
        padding: 46px 0 32px;
    }
}

.hero-intro .container {
    display: flex;
    align-items: center;
    gap: 44px;
}

@media (max-width: 1024px) {
    .hero-intro .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
}

.hero-intro-left {
    width: 54%;
}

.hero-intro-right {
    width: 46%;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .hero-intro-left,
    .hero-intro-right {
        width: 100%;
    }
}

.eyebrow,
.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1d4ed8;
    background: rgba(29, 78, 216, 0.08);
    padding: 10px 14px;
    border-radius: 999px;
}

.hero-intro-left h1 {
    display: block;
    margin: 18px 0 16px;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
    max-width: 760px;
}

.hero-intro-left h1 strong {
    color: #1d4ed8;
    font-weight: 900;
}

@media (max-width: 1200px) {
    .hero-intro-left h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .hero-intro-left h1 {
        font-size: 34px;
    }
}

.hero-intro-left p {
    display: block;
    font-size: 17px;
    line-height: 1.85;
    color: #475569;
    max-width: 700px;
}

.hero-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-intro-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.metric-box {
    min-width: 150px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    padding: 18px 18px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.metric-box strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    color: #0f172a;
}

.metric-box span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

.hero-glass-card {
    width: 100%;
    max-width: 500px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-card-badge,
.hero-card-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-card-badge {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.1);
}

.hero-card-status {
    color: #166534;
    background: rgba(34, 197, 94, 0.12);
}

.hero-card-main {
    display: grid;
    gap: 12px;
}

.hero-card-item {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    padding: 18px;
}

.hero-card-item strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.hero-card-item span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
}

.hero-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 18px;
}

.hero-card-footer span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    background: #eef4fa;
    padding: 10px 12px;
    border-radius: 999px;
}

.section-block {
    display: block;
    width: 100%;
    padding: 78px 0;
}

@media (max-width: 768px) {
    .section-block {
        padding: 54px 0;
    }
}

.section-heading {
    display: block;
    margin-bottom: 34px;
}

.section-heading.center {
    text-align: center;
}

.section-heading.white-text h2,
.section-heading.white-text p {
    color: #ffffff;
}

.section-heading h2 {
    display: block;
    margin-top: 14px;
    font-size: 40px;
    line-height: 1.16;
    font-weight: 800;
    color: #0f172a;
    max-width: 780px;
}

.section-heading.center h2 {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 30px;
    }
}

.section-heading p {
    display: block;
    margin-top: 14px;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

.section-heading.center p {
    margin-left: auto;
    margin-right: auto;
}

.solutions-preview,
.faq-area {
    background: #ffffff;
}

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

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

@media (max-width: 640px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    padding: 28px 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px rgba(15, 23, 42, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-card p {
    display: block;
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}

.brand-strip-area {
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.brand-strip {
    margin-top: 10px;
}

.brand-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.cta-band {
    padding-top: 0;
}

.cta-band-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    border-radius: 28px;
    padding: 34px 34px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

@media (max-width: 900px) {
    .cta-band-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 22px;
    }
}

.cta-band-left h2,
.cta-band-left p,
.cta-band-left .mini-title,
.cta-band-left span {
    color: #ffffff;
}

.cta-band-left .mini-title {
    background: rgba(255, 255, 255, 0.12);
}

.cta-band-left p {
    max-width: 760px;
    opacity: 0.86;
}

.cta-band-right {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 38px 2% 46px;
    background: #ffffff;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

@media (max-width: 1024px) {
    footer {
        flex-direction: column;
        padding: 32px 16px 40px;
    }
}

footer .left {
    display: inline-block;
    width: 46%;
    vertical-align: top;
}

@media (max-width: 1024px) {
    footer .left {
        width: 100%;
    }
}

footer .left p {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.9;
    color: #475569;
    padding: 0 0 12px 0;
}

footer .left .address {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 22px 0 0 0;
}

footer .left .address .row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    padding: 8px 0;
}

footer .left .address .row svg {
    width: 18px;
    height: 18px;
    color: #2563eb;
    flex: 0 0 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

footer .right {
    display: inline-block;
    width: 44%;
    vertical-align: top;
    text-align: right;
}

@media (max-width: 1024px) {
    footer .right {
        width: 100%;
        text-align: left;
    }
}

.footer-menu {
    display: inline-block;
    width: 240px;
    vertical-align: top;
    text-align: left;
    margin-left: 24px;
}

@media (max-width: 1024px) {
    .footer-menu {
        width: calc(50% - 12px);
        margin-left: 0;
        margin-right: 12px;
        margin-bottom: 22px;
    }
}

@media (max-width: 640px) {
    .footer-menu {
        width: 100%;
        margin-right: 0;
    }
}

.footer-menu strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.footer-menu a {
    display: block;
    font-size: 14px;
    color: #475569;
    padding: 7px 0;
}

.footer-menu a:hover {
    color: #2563eb;
}

.logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.logo.logo-fallback-active .logo-fallback {
    display: inline-flex;
}

.logo.logo-fallback-active img {
    display: none !important;
}

.close-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: #0f172a;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand-box {
    min-height: 98px;
    padding: 16px;
}

.brand-box img {
    display: block;
    width: 100%;
    max-width: 150px;
    height: 48px;
    margin: 0 auto;
    object-fit: contain;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
    color: #ffffff;
    font-size: 28px;
}

.floating-whatsapp img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        right: 14px;
        bottom: 14px;
    }
}

/* =========================
   QUICK OFFER FORM CARD
========================= */
.offer-form-card {
    width: 100%;
    max-width: 520px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.offer-form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.offer-form-badge,
.offer-form-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.offer-form-badge {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.1);
}

.offer-form-status {
    color: #166534;
    background: rgba(34, 197, 94, 0.12);
}

.offer-form-heading {
    margin-bottom: 18px;
}

.offer-form-heading strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.offer-form-heading p {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
}

.quick-offer-form {
    display: block;
}

.quick-offer-form .form-row {
    display: block;
    width: 100%;
    margin-bottom: 14px;
}

.quick-offer-form .form-field {
    display: block;
    width: 100%;
}

.quick-offer-form .form-field label {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.quick-offer-form .form-field label span {
    color: #dc2626;
}

.quick-offer-form .form-field input,
.quick-offer-form .form-field select,
.quick-offer-form .form-field textarea {
    display: block;
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #ffffff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.quick-offer-form .form-field textarea {
    min-height: 120px;
    padding: 16px;
    resize: vertical;
}

.quick-offer-form .form-field input:focus,
.quick-offer-form .form-field select:focus,
.quick-offer-form .form-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.quick-offer-form .form-field input.error,
.quick-offer-form .form-field select.error,
.quick-offer-form .form-field textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.quick-offer-form label.error {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
    color: #dc2626;
    font-weight: 600;
}

.captcha-box {
    display: block;
    padding: 14px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.captcha-question strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #0f3d91;
}

.captcha-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    background: #e7f0ff;
    color: #0f3d91;
    font-size: 18px;
    font-weight: 800;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.captcha-refresh:hover {
    transform: rotate(18deg);
    background: #dbeafe;
}

.form-actions {
    display: block;
    width: 100%;
    margin-top: 18px;
}

.form-actions .button {
    width: 100%;
    min-height: 56px;
}

.form-bottom-note {
    display: block;
    margin-top: 12px;
}

.form-bottom-note span {
    display: block;
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
}

.form-bottom-note strong {
    color: #dc2626;
}

/* =========================
   FIXED LOGO MARQUEE BAND
========================= */
.fixed-logo-marquee-area {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #0c7a43 0%, #12a150 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.fixed-logo-marquee-title {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 12px 8px;
}

.fixed-logo-marquee-track-wrap {
    display: block;
    overflow: hidden;
    padding: 0 0 18px;
}

.fixed-logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: fixedLogoMarquee 42s linear infinite;
    will-change: transform;
}

.fixed-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 72px;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.fixed-logo-item img {
    display: block;
    max-width: 125px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@keyframes fixedLogoMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    header .mobil-button {
        right: 14px;
        top: 16px;
    }

    header .right {
        right: 66px;
    }
}

@media (max-width: 768px) {
    .offer-form-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .offer-form-top {
        flex-wrap: wrap;
    }

    .offer-form-heading strong {
        font-size: 22px;
    }

    .fixed-logo-item {
        min-width: 146px;
        height: 64px;
    }

    .fixed-logo-item img {
        max-width: 110px;
        max-height: 34px;
    }
}
