:root {
    --primary: #F5C518;
    --primary-dark: #d4a517;
    --primary-light: rgba(245, 197, 24, 0.10);
    --primary-border: rgba(245, 197, 24, 0.28);
    --dark: #111827;
    --dark-2: #1f2937;
    --dark-3: #374151;
    --white: #ffffff;
    --light: #f9fafb;
    --light-2: #f3f4f6;
    --border: #e5e7eb;
    --border-2: #d1d5db;
    --text: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-on-dark: rgba(255, 255, 255, 0.85);
    --text-on-dark-2: rgba(255, 255, 255, 0.55);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.13);
    --shadow-y: 0 8px 20px rgba(245, 197, 24, 0.28);
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Hanken Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text);
    line-height: 1.65;
    overflow-x: clip
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    font-size: 30px;
    margin-bottom: 1.5rem;
    color: var(--text)
}

.primary-text {
    color: var(--primary)
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block
}

.large-text {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.75
}

p {
    margin-bottom: 1rem;
    color: var(--text-body)
}

a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.text-center {
    text-align: center
}

.section {
    padding: 6rem 0;
    scroll-margin-top: 90px
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem
}

.jc-between {
    justify-content: space-between
}

.align-center {
    align-items: center
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1rem
}

.col-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
    padding: 1rem
}

.col-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
    padding: 1rem
}

.content-right {
    padding-left: 3rem
}

.relative {
    position: relative
}

.section-title {
    font-size: clamp(1.875rem, 3.5vw, 2.875rem);
    margin-bottom: 1.25rem;
    color: var(--text);
    letter-spacing: -.02em
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.75
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    outline: 0;
    text-decoration: none;
    white-space: nowrap;
    min-height: 48px
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    border-color: var(--primary)
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-y)
}

.btn-outline {
    background-color: transparent;
    border-color: var(--dark);
    color: var(--dark)
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-outline-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, .45);
    color: #fff
}

.btn-outline-light:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--dark);
    transform: translateY(-2px)
}

.lg-btn {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    border-radius: 10px;
    min-height: 56px
}

.sm-btn {
    padding: .5rem 1.1rem;
    font-size: .875rem;
    border-radius: 6px;
    min-height: 40px
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: 0 0;
    transition: background .35s, padding .35s, box-shadow .35s;
    padding: 1.25rem 0;
    border-bottom: 1px solid #ffffff17
}

.navbar.scrolled {
    padding: .75rem 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    border-bottom: 1px solid var(--border)
}

.navbar .logo img {
    filter: brightness(0) invert(1)
}

.navbar.legal-nav .logo img,
.navbar.scrolled .logo img {
    filter: brightness(0)
}

footer .logo img {
    filter: brightness(0) invert(1)
}

.navbar .mobile-menu-btn span {
    background-color: #fff
}

.navbar.legal-nav .mobile-menu-btn span,
.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--dark)
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #fff
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: .95rem;
    color: rgba(255, 255, 255, .9);
    position: relative
}

.navbar.legal-nav .nav-links a:not(.btn),
.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--dark)
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width .3s
}

.nav-links a:not(.btn):hover::after {
    width: 100%
}

.nav-links a:not(.btn):hover {
    color: var(--primary)
}

.mobile-menu-btn {
    display: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    transition: var(--transition)
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 998;
    backdrop-filter: blur(2px)
}

.nav-overlay.active {
    display: block
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background: var(--dark)
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 60%, rgba(245, 197, 24, .14) 0, transparent 55%), radial-gradient(ellipse at 85% 20%, rgba(245, 197, 24, .07) 0, transparent 45%);
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 60%, 0 100%)
}

.hero-bg-glow {
    display: none
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
    padding: 2rem 1.5rem 5rem
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    background: rgba(245, 197, 24, .12);
    border: 1px solid var(--primary-border);
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: .025em
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    margin-bottom: 1.5rem;
    letter-spacing: -.025em;
    color: #fff;
    line-height: 1.1
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75
}

.hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem
}

.hero-cta .btn-primary {
    position: relative;
    overflow: hidden
}

.hero-cta .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: 3s infinite shine
}

@keyframes shine {
    0% {
        left: -150%
    }

    100%,
    60% {
        left: 250%
    }
}

.stats-section {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 2
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0, var(--primary-dark) 100%)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center
}

.stat-card {
    padding: 3rem 1.5rem;
    border-right: 1px solid var(--border);
    transition: background .25s;
    position: relative
}

.stat-card:last-child {
    border-right: none
}

.stat-card:hover {
    background: var(--primary-light)
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    color: var(--primary-dark);
    margin-bottom: .35rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1
}

.stat-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 600;
    color: var(--text-muted)
}

.dark-section {
    background: var(--white);
    overflow: hidden
}

.dark-section .section-title {
    color: var(--text)
}

.dark-section .large-text {
    color: var(--text-body)
}

.dark-section h4 {
    color: var(--text)
}

.dark-section p {
    color: var(--text-body)
}

.feature-list {
    list-style: none;
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--text-body)
}

.feature-list li:hover {
    border-color: var(--primary-border);
    background: rgba(245, 197, 24, .05);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px)
}

.feature-list li .list-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px
}

.feature-list li .list-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--dark);
    stroke-width: 2.5;
    fill: none
}

.feature-list li .list-text strong {
    color: var(--text);
    display: block;
    font-size: .925rem;
    margin-bottom: .2rem
}

.feature-list li .list-text span {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.6
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--dark) 0, var(--dark-2) 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: var(--shadow-xl)
}

.image-wrapper>* {
    position: relative;
    z-index: 2
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top right, rgba(245, 197, 24, .18), transparent 60%);
    z-index: 1
}

.image-wrapper::after {
    display: none
}

.pattern-bg {
    position: relative
}

.pattern-bg::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: -18px;
    bottom: -18px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: .4
}

.glass-box {
    background: rgba(17, 24, 39, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(245, 197, 24, .22);
    padding: 2.25rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 82%;
    z-index: 3
}

.glass-box .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem
}

.glass-box .icon-wrapper svg {
    width: 26px;
    height: 26px;
    stroke: var(--dark);
    stroke-width: 2;
    fill: none
}

.glass-box h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: .5rem
}

.glass-box p {
    color: rgba(255, 255, 255, .65);
    font-size: .875rem;
    margin: 0
}

.gray-section {
    background: var(--light)
}

.gray-section .section-title {
    color: var(--text)
}

.gray-section .section-subtitle {
    color: var(--text-muted)
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: .5rem
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s
}

.card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-lg)
}

.card:hover::before {
    transform: scaleX(1)
}

.card-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-light);
    border: 1.5px solid var(--primary-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition)
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-dark);
    stroke-width: 1.75;
    fill: none
}

.card:hover .card-icon {
    background: var(--primary);
    border-color: var(--primary)
}

.card:hover .card-icon svg {
    stroke: var(--dark)
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: .7rem;
    color: var(--text)
}

.card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin: 0
}

.process-section {
    background: var(--white);
    padding-bottom: 6rem
}

.pt-0 {
    padding-top: 2rem !important
}

.process-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 2rem;
    margin: 0 auto 3rem;
    max-width: 640px;
    flex-wrap: wrap;
    gap: 0
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-body);
    white-space: nowrap;
    padding: .25rem 1.25rem
}

.trust-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--primary-dark);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0
}

.trust-sep {
    width: 1px;
    height: 18px;
    background: var(--border-2);
    flex-shrink: 0
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm)
}

.process-card:hover::before {
    transform: scaleX(1)
}

.process-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-border);
    transform: translateY(-4px)
}

.process-card-bg-num {
    position: absolute;
    top: .5rem;
    right: 1.25rem;
    font-size: 5.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    opacity: .07;
    line-height: 1;
    pointer-events: none;
    user-select: none
}

.process-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary);
    color: var(--dark);
    font-size: .8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 8px;
    letter-spacing: .03em
}

.process-card-icon {
    width: 44px;
    height: 44px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.process-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    stroke-width: 2;
    fill: none
}

.process-card:hover .process-card-icon {
    background: var(--primary-light);
    border-color: var(--primary-border)
}

.process-card:hover .process-card-icon svg {
    stroke: var(--primary-dark)
}

.process-card h3 {
    font-size: 1.125rem;
    margin-bottom: .75rem;
    color: var(--text)
}

.process-card p {
    margin: 0;
    color: var(--text-body);
    font-size: .9rem;
    line-height: 1.75
}

.process-bottom-cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2.5rem;
    gap: 2rem
}

.process-cta-text {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.process-cta-text strong {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 700
}

.process-cta-text span {
    font-size: .875rem;
    color: var(--text-muted)
}

.faq-section {
    background: var(--light);
    padding: 6rem 0
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition)
}

.faq-item:hover {
    border-color: var(--border-2);
    box-shadow: var(--shadow-sm)
}

.faq-question {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white)
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text);
    padding-right: 1rem;
    line-height: 1.5
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--text-muted);
    transition: var(--transition)
}

.faq-icon svg {
    transition: transform .3s
}

.faq-question.active .faq-icon {
    background: var(--primary);
    color: var(--dark)
}

.faq-question.active .faq-icon svg {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0, 1, 0, 1);
    background: var(--white)
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    margin: 0;
    color: var(--text-body);
    font-size: .95rem;
    line-height: 1.7
}

.cta-section {
    background: var(--light)
}

.cta-box {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border)
}

.cta-content {
    flex: 1;
    min-width: 300px;
    padding: 4rem;
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(245, 197, 24, .13) 0, transparent 65%);
    pointer-events: none
}

.cta-content h2 {
    color: #fff
}

.cta-content p {
    color: rgba(255, 255, 255, .65)
}

.contact-info {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: .875rem;
    font-size: .975rem;
    color: var(--text-on-dark)
}

.contact-info li .contact-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(245, 197, 24, .14);
    border: 1px solid rgba(245, 197, 24, .25);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center
}

.contact-info li .contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none
}

.cta-mobile-contact {
    display: none
}

.cta-form {
    flex: 1;
    min-width: 320px;
    padding: 4rem;
    background: var(--white)
}

.cta-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text)
}

.form-group {
    margin-bottom: 1.25rem
}

.form-row {
    display: flex;
    gap: 1rem
}

.form-row .form-group {
    flex: 1
}

label {
    display: block;
    margin-bottom: .4rem;
    font-size: .875rem;
    font-weight: 500;
    color: #ff8c8c
}

input,
select,
textarea {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: .8rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, .14)
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
    font-size: .9rem
}

.cta-form .hs-form,
.cta-form form,
.w-100 {
    width: 100%
}

.cta-form .hs-input {
    width: 100% !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 8px !important;
    padding: .8rem 1rem !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: var(--text) !important;
    transition: var(--transition) !important;
    background-color: #fbfbfb !important;
    box-sizing: border-box !important
}

.cta-form .hs-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(245, 197, 24, .14) !important;
    outline: 0 !important
}

.cta-form .hs-button,
.cta-form .hs_submit .hs-button,
.cta-form input[type=submit].hs-button.primary.large {
    background: var(--primary) !important;
    background-color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 18px 24px !important;
    width: 100% !important;
    font-size: 1.15rem !important;
    transition: .3s !important;
    font-family: var(--font-heading) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: 0 4px 10px rgba(245, 197, 24, .2) !important
}

.cta-form .hs-button:hover,
.cta-form .hs_submit .hs-button:hover,
.cta-form input[type=submit].hs-button.primary.large:hover {
    background: var(--primary-dark) !important;
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(245, 197, 24, .4) !important
}

.cta-form .hs-form-field {
    margin-bottom: 1.25rem !important
}

.cta-form .hs-form-field>label {
    font-weight: 500 !important;
    color: var(--text-body) !important;
    margin-bottom: .4rem !important;
    font-size: .975rem !important;
    font-family: var(--font-body) !important;
    display: block !important
}

.cta-form .hs-form-booleancheckbox-display {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: .9rem !important;
    color: var(--text-body) !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin-top: 10px !important
}

.cta-form .hs-form-booleancheckbox-display input {
    margin-top: 4px !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    -webkit-appearance: auto !important;
    appearance: auto !important
}

.cta-form .hs-form-booleancheckbox,
.cta-form .inputs-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important
}

.cta-form .legal-consent-container p {
    font-size: .85rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
    margin-top: 10px !important
}

.cta-form .legal-consent-container a {
    color: var(--primary-dark) !important;
    text-decoration: underline !important;
    font-weight: 500 !important
}

.cta-form .submitted-message {
    text-align: center !important;
    padding: 3rem 2rem !important;
    font-size: 1.5rem !important;
    color: var(--dark) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    background: rgba(245, 197, 24, .1) !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius) !important;
    margin-top: 1rem !important;
    box-shadow: 0 10px 30px rgba(245, 197, 24, .15) !important
}

.cta-form .submitted-message::before {
    content: "✓";
    display: block;
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem
}

footer {
    background: var(--dark);
    border-top: 3px solid var(--primary);
    padding: 4rem 0 0
}

footer li,
footer p {
    color: rgba(255, 255, 255, .55)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3.5rem
}

.footer-brand p {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5)
}

.footer-legal h4,
.footer-offices h4 {
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    letter-spacing: .05em
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem
}

.office-col strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.office-col p {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    line-height: 1.6
}

.footer-legal p {
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .45)
}

.footer-contact-mobile {
    display: none;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-contact-mobile h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 1.25rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.75rem 0;
    text-align: center
}

.copyright {
    color: rgba(255, 255, 255, .35);
    font-size: .875rem
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s cubic-bezier(.5, 0, 0, 1), transform .75s cubic-bezier(.5, 0, 0, 1)
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.cascade {
    transition-delay: 0.15s
}

.cascade-1 {
    transition-delay: 0.1s
}

.cascade-2 {
    transition-delay: 0.2s
}

.cascade-3 {
    transition-delay: 0.3s
}

.cascade-4 {
    transition-delay: 0.4s
}

@media (max-width:1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-card:nth-child(2n) {
        border-right: none
    }

    .stat-card:nth-child(3n) {
        border-right: 1px solid var(--border)
    }

    .stat-card:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--border)
    }

    .stat-card:nth-last-child(-n+2) {
        border-bottom: none
    }

    .stat-card:nth-child(2) {
        border-right: none
    }

    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-top: 1px solid var(--border)
    }

    .col-5,
    .col-6,
    .col-7 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .content-right {
        margin-top: 2rem;
        padding: 20px
    }

    .cta-box {
        flex-direction: column
    }

    .cta-content,
    .cta-form {
        padding: 3rem 2.5rem;
        min-width: 0
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
    }

    .footer-brand {
        grid-column: 1;
        grid-row: 1
    }

    .footer-legal {
        grid-column: 2;
        grid-row: 1
    }

    .footer-offices {
        grid-column: 1/-1;
        grid-row: 2
    }

    .offices-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .pattern-bg::after {
        display: none
    }
}

@media (max-width:768px) {
    .section {
        padding: 4rem 0
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(80vw, 300px);
        height: 100dvh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 999;
        transition: left .35s cubic-bezier(.25, .8, .25, 1);
        box-shadow: 4px 0 30px rgba(0, 0, 0, .45);
        overflow-y: auto
    }

    .nav-links.active {
        left: 0
    }

    .nav-links a:not(.btn),
    .navbar.legal-nav .nav-links a:not(.btn),
    .navbar.scrolled .nav-links a:not(.btn) {
        color: rgba(255, 255, 255, .9);
        font-size: 1.1rem;
        width: 100%
    }

    .nav-links .btn-primary {
        width: 100%;
        justify-content: center
    }

    .mobile-menu-btn {
        display: flex
    }

    .mobile-menu-btn.active span:first-child {
        transform: translateY(7px) rotate(45deg)
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

    .hero::after {
        display: none
    }

    .hero-title {
        font-size: clamp(1.875rem, 7vw, 2.5rem)
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch
    }

    .hero-cta .btn {
        width: 83%;
        font-weight: 800;
        margin: 0 auto;
        justify-content: center
    }

    .stat-card {
        padding: 2rem .75rem
    }

    .cards-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        flex-direction: column
    }

    .cta-content {
        display: none
    }

    .cta-form {
        padding: 2.5rem 1.5rem;
        min-width: 0;
        width: 100%;
        flex: none
    }

    .footer-contact-mobile {
        display: block
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 0
    }

    .footer-brand,
    .footer-legal,
    .footer-offices {
        grid-column: auto;
        grid-row: auto
    }

    .offices-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem
    }

    .section-title {
        font-size: 1.75rem
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .process-card {
        padding: 1.75rem 1.5rem
    }

    .process-card-bg-num {
        font-size: 4rem
    }

    .process-trust-bar {
        padding: .75rem 1rem;
        max-width: 100%;
        gap: 0
    }

    .trust-item {
        padding: .25rem .75rem;
        font-size: .8rem
    }

    .trust-sep {
        height: 14px
    }

    .process-bottom-cta {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
        gap: 1.25rem;
        border-left: none
    }

    .process-bottom-cta .btn {
        width: 100%
    }

    .cta-mobile-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
        margin-bottom: 1.75rem
    }

    .mobile-contact-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .4rem;
        padding: 1rem .75rem;
        border-radius: var(--radius);
        text-align: center;
        transition: var(--transition);
        text-decoration: none
    }

    .mobile-contact-link.phone {
        background: var(--primary-light);
        border: 1.5px solid var(--primary-border)
    }

    .mobile-contact-link.whatsapp {
        background: rgba(37, 211, 102, .07);
        border: 1.5px solid rgba(37, 211, 102, .28)
    }

    .mobile-contact-link svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0
    }

    .mobile-contact-link.phone svg {
        stroke: var(--primary-dark);
        stroke-width: 2;
        fill: none
    }

    .mobile-contact-link.whatsapp svg {
        fill: #25d366
    }

    .mobile-contact-link .mc-label {
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        font-weight: 700;
        color: var(--text-muted);
        line-height: 1
    }

    .mobile-contact-link .mc-value {
        font-size: .875rem;
        font-weight: 700;
        color: var(--text);
        line-height: 1.2
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .hero {
        padding-top: 4rem
    }

    .hero-container {
        padding-bottom: 3rem
    }

    .hero-title {
        font-size: 2.2rem
    }

    .badge {
        font-size: .8rem;
        padding: .4rem .875rem
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-number {
        font-size: 1.625rem
    }

    .card {
        padding: 1.75rem 1.25rem
    }

    .offices-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 1.5rem 0
    }

    .lg-btn {
        padding: .9rem 1.5rem;
        font-size: .975rem
    }

    .glass-box {
        max-width: 90%;
        padding: 1.75rem
    }

    .process-card {
        padding: 1.5rem 1.25rem
    }

    .process-card-bg-num {
        font-size: 3rem
    }

    .trust-item {
        font-size: .75rem;
        padding: .2rem .5rem
    }

    .trust-sep {
        display: none
    }

    .process-trust-bar {
        justify-content: flex-start;
        gap: .25rem
    }
}

@media (hover:none) {

    .btn:hover,
    .card:hover,
    .feature-list li:hover,
    .process-card:hover {
        transform: none
    }

    .card:hover {
        box-shadow: var(--shadow-sm);
        border-color: var(--border)
    }

    .card:hover::before,
    .process-card:hover::before {
        transform: scaleX(0)
    }

    .process-card:hover {
        box-shadow: var(--shadow-sm);
        border-color: var(--border)
    }

    .process-card:hover .process-card-icon {
        background: var(--light);
        border-color: var(--border)
    }

    .process-card:hover .process-card-icon svg {
        stroke: var(--text-muted)
    }
}