/* =========================================================
   AGORA WEB SERVICES
   CONSOLIDATED & OPTIMIZED RESPONSIVE STYLESHEET
========================================================= */

/* =========================================================
   01. ROOT & RESET
========================================================= */
:root {
    --bg: #0d0d0f;
    --bg-soft: #111113;
    --panel: #181616;

    --cream: #f4efe7;
    --white: #ffffff;
    --text: #e9e4dc;
    --muted: #aaa39b;

    --caramel: #c47a32;
    --caramel-light: #dda364;

    --line: rgba(255, 255, 255, 0.11);
    --goldline: rgba(196, 122, 50, 0.45);

    --radius: 18px;
    --container-width: 1180px;
    --section-padding: 100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    width: 100%;
    min-width: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

main {
    width: 100%;
    overflow: hidden;
}

img, video, iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

/* =========================================================
   02. HEADER & NAVIGATION
========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 19, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    background: rgba(13, 13, 15, 0.96);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 84px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.agora-logo {
    width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    color: #b8b4af;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--caramel);
}

.nav-cta,
.btn-primary,
.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--caramel);
    border-radius: 9px;
    background: var(--caramel);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.btn-primary:hover,
.button-primary:hover {
    background: var(--caramel-light);
    border-color: var(--caramel-light);
    transform: translateY(-2px);
}

.menu-toggle,
.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--goldline);
    border-radius: 9px;
    background: rgba(196, 122, 50, 0.06);
}

.menu-toggle span,
.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--caramel-light);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1),
.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2),
.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3),
.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   03. HERO
========================================================= */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at 85% 42%, rgba(121, 67, 26, 0.25), transparent 34%),
        linear-gradient(105deg, #0e0f10, #10100f 58%, #21170f);
}

.hero-background-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -220px;
    top: 100px;
    border-radius: 50%;
    background: var(--caramel);
    filter: blur(140px);
    opacity: 0.10;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: center;
    gap: 58px;
}

.hero-content {
    min-width: 0;
}

.eyebrow,
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--caramel-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--caramel-light);
}

.eyebrow::before,
.hero-eyebrow::before {
    display: none;
}

.hero h1 {
    margin: 26px 0 0;
    color: #f8f8f6;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 5.8vw, 94px);
    line-height: 0.96;
    letter-spacing: -2.5px;
    overflow-wrap: break-word;
}

.hero h1 em,
.accent {
    color: var(--caramel-light);
    font-weight: 500;
}

.hero h1 em {
    display: inline-block;
    font-style: italic;
}

.hero-description {
    max-width: 660px;
    margin: 28px 0 0;
    color: #b8b4ae;
    font-size: 16px;
    line-height: 1.8;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover, .button:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--goldline);
    background: transparent;
    color: #f2eee9;
}

.btn-secondary:hover {
    background: rgba(196, 122, 50, 0.1);
    border-color: var(--caramel-light);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 58px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.hero-feature {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.feature-icon,
.hero-feature-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid var(--goldline);
    border-radius: 12px;
    color: var(--caramel-light);
    font-size: 20px;
}

.hero-feature strong {
    display: block;
    color: #f3f0eb;
    font-size: 14px;
}

.hero-feature span {
    display: block;
    margin-top: 3px;
    color: #89837d;
    font-size: 12px;
}

.hero-visual {
    min-width: 0;
}

.browser-mockup,
.mockup,
.hero-mockup {
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: #1c1917;
}

/* =========================================================
   04. SECTIONS & LIGHT PANELS
========================================================= */
.section,
.services-section,
.contact-section,
.contact-page-section {
    padding: var(--section-padding) 0;
}

.section-light,
.services-section {
    background: var(--cream);
    color: #211d19;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 52px;
}

.section-heading.centered,
.centered {
    text-align: center;
}

.section-heading h2 {
    margin: 14px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 4.8vw, 68px);
    line-height: 1.02;
    overflow-wrap: break-word;
}

.section-heading h2 em {
    color: var(--caramel);
    font-style: italic;
}

.section-heading p {
    margin: 0;
    opacity: 0.75;
    line-height: 1.7;
    font-size: 15px;
}

/* =========================================================
   05. CONTACT PAGE LAYOUT
========================================================= */
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 60px;
}

.contact-page-info h2 {
    margin: 16px 0 20px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
}

.contact-page-info h2 em {
    color: var(--caramel-light);
    font-style: italic;
}

.contact-page-info > p {
    color: #b8b4ae;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
}

.contact-info-number {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    color: var(--caramel-light);
    font-weight: 600;
    line-height: 1;
    padding-top: 2px;
}

.contact-info-item h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #f3f0eb;
}

.contact-info-item p {
    margin: 0;
    color: #89837d;
    font-size: 13px;
    line-height: 1.6;
}

.contact-form-wrapper {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #151414;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    color: #ded9d2;
    font-size: 13px;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 14px 15px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: #0f0f10;
    color: #f3eee8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--caramel);
    box-shadow: 0 0 0 3px rgba(196, 122, 50, 0.12);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-consent {
    margin-top: 4px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    color: #b8b4ae;
    font-size: 12.5px;
    line-height: 1.6;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--caramel);
}

.form-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 6px;
    font-size: 14px;
}

.form-note {
    margin: 0;
    text-align: center;
    color: #77726d;
    font-size: 12px;
}

.input-error {
    border-color: #e65a5a !important;
}

.form-error {
    margin-top: 6px;
    color: #ff8b8b;
    font-size: 12px;
}

/* =========================================================
   06. WHY / CONNECT SECTION
========================================================= */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--bg);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 4.5vw, 62px);
    margin: 16px 0 20px;
}

.why-content h2 em {
    color: var(--caramel-light);
    font-style: italic;
}

.why-content > p {
    color: #96928C;
    font-size: 15px;
    line-height: 1.75;
}

.why-features {
    border-top: 1px solid var(--line);
}

.why-feature {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.why-feature > span {
    color: var(--caramel-light);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 15px;
    font-weight: 600;
}

.why-feature h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #f3f0eb;
}

.why-feature p {
    margin: 0;
    color: #85817B;
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   07. FOOTER
========================================================= */
.site-footer {
    padding: 70px 0 28px;
    background: #090a0b;
    color: #eeeae4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    gap: 50px;
}

.footer-brand .agora-logo {
    width: 150px;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 20px;
    color: #8e8984;
    font-size: 13px;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.footer-column h3 {
    margin: 0 0 6px;
    color: #f0ece7;
    font-size: 14px;
}

.footer-column a {
    color: #807c78;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--caramel-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #66625f;
    font-size: 12px;
}

/* =========================================================
   08. ACCESSIBILITY & FOCUS
========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--caramel-light);
    outline-offset: 3px;
}

::selection {
    background: var(--caramel);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #3b3b3b;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--caramel);
}

/* =========================================================
   09. RESPONSIVE MEDIA QUERIES
========================================================= */

/* Desktop Narrow Fixes */
@media (max-width: 1180px) {
    .nav-links {
        gap: 14px;
    }

    .nav-link {
        font-size: 12px;
    }

    .nav-cta {
        padding: 0 16px;
    }
}

/* Tablet Landscape */
@media (max-width: 1050px) {
    :root {
        --section-padding: 85px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .contact-page-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .why-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / -1;
    }
}

/* Tablet Portrait & Mobile Menu Switch (<= 900px) */
@media (max-width: 900px) {
    :root {
        --section-padding: 75px;
    }

    .navbar {
        min-height: 76px;
    }

    .agora-logo {
        width: 140px;
    }

    .menu-toggle,
    .mobile-menu-button {
        display: flex;
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -24px;
        right: -24px;
        z-index: 1001;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 10px 24px 24px;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: rgba(17, 17, 19, 0.98);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(14px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 48px;
        padding: 10px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 14px;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
        min-height: 50px;
        margin-top: 16px;
        font-size: 14px;
    }

    .hero {
        padding: 110px 0 75px;
    }

    .hero-content {
        text-align: center;
    }

    .hero .eyebrow,
    .hero .hero-eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}

/* Mobile Devices (<= 600px) */
@media (max-width: 600px) {
    :root {
        --section-padding: 65px;
    }

    .container {
        width: calc(100% - 32px);
    }

    .navbar {
        min-height: 70px;
    }

    .agora-logo {
        width: 130px;
    }

    .nav-links {
        left: -16px;
        right: -16px;
        padding: 8px 16px 20px;
    }

    .hero {
        padding: 100px 0 65px;
    }

    .hero-grid {
        gap: 36px;
    }

    .hero .eyebrow,
    .hero .hero-eyebrow {
        gap: 8px;
        font-size: 9px;
        letter-spacing: 1.8px;
        line-height: 1.5;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: clamp(40px, 11vw, 62px);
        line-height: 0.98;
        letter-spacing: -1.5px;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 28px;
    }

    .hero-buttons .btn,
    .hero-buttons a {
        width: 100%;
        min-height: 52px;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .footer-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 36px;
        font-size: 11px;
    }
}

/* Small Phones (<= 380px) */
@media (max-width: 380px) {
    .container {
        width: calc(100% - 24px);
    }

    .agora-logo {
        width: 120px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-description {
        font-size: 13px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* =========================================================
   CONTACT FORM LAYOUT & FIELD FIXES
========================================================= */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: #171515;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    padding: 34px;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Force Form Rows into a 2-column grid on desktop */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}

/* Ensure each group stacks label on top of input */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Force Labels to act as block elements above inputs */
.form-group label {
    display: block;
    color: #ded9d2;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

/* Force all inputs, selects, and textareas to take full width */
.form-group input,
.form-group select,
.form-group textarea {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    padding: 14px 15px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: #0f0f10;
    color: #f3eee8;
    font-family: inherit;
    font-size: 14px;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Checkbox Alignment */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #b8b4ae;
}

.form-consent input[type="checkbox"] {
    width: 18px !important;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #c47a32;
}

/* Submit Button & Note */
.form-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 10px;
}

.form-note {
    font-size: 12px;
    color: #89837d;
    text-align: center;
    margin-top: 10px;
}

/* =========================================================
   RESPONSIVE FIX FOR MOBILE & TABLET
========================================================= */

@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }
}
/* =========================================================
   CONTACT PAGE SPECIFIC OVERFLOW & GRID FIXES
========================================================= */

/* Ensure the main grid container fits within the page bounds */
.contact-page-section {
    overflow: hidden;
    width: 100%;
}

.contact-page-grid {
    display: grid;
    /* Use minmax(0, 1fr) to prevent flex/grid item expansion past container */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: start;
    width: 100%;
}

/* Force form wrapper to strictly observe width limits */
.contact-form-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 32px;
}

.contact-form {
    width: 100%;
}

/* Ensure form rows shrink fluidly */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

/* FIX: Checkbox & Consent Text Wrap */
.form-consent {
    width: 100%;
    margin-top: 8px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-consent span {
    font-size: 12px;
    line-height: 1.5;
    color: #b8b4ae;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* FIX: Prevent Submit Button Clipping */
.form-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive collapse for tablet/desktop transition */
@media (max-width: 1050px) {
    .contact-page-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}