:root {
    --ink: #f8efe5;
    --muted: #b9aaa0;
    --line: rgba(255, 139, 38, 0.18);
    --surface: rgba(24, 20, 18, 0.86);
    --surface-strong: #17110f;
    --soft: rgba(255, 139, 38, 0.12);
    --primary: #ff7a18;
    --primary-dark: #d94f04;
    --accent: #ffb000;
    --accent-soft: rgba(255, 176, 0, 0.16);
    --warning: #ffcf67;
    --background: #0c0908;
    --background-2: #160f0b;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 24, 0.22), transparent 34rem),
        radial-gradient(circle at 80% 12%, rgba(255, 176, 0, 0.14), transparent 28rem),
        linear-gradient(135deg, var(--background), var(--background-2) 46%, #080604);
    min-height: 100vh;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 78%);
}

a {
    text-decoration: none;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
    padding-inline: 1.3rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-color: #160b05;
    --bs-btn-hover-bg: var(--accent);
    --bs-btn-hover-border-color: var(--accent);
    --bs-btn-hover-color: #160b05;
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-active-border-color: var(--primary-dark);
    box-shadow: 0 18px 38px rgba(255, 122, 24, 0.27);
}

.btn-outline-primary {
    --bs-btn-color: var(--ink);
    --bs-btn-border-color: rgba(255, 122, 24, 0.62);
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-hover-color: #160b05;
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline-light {
    --bs-btn-color: var(--ink);
    --bs-btn-border-color: rgba(255, 255, 255, 0.56);
    --bs-btn-hover-color: #160b05;
    --bs-btn-hover-bg: var(--ink);
    --bs-btn-hover-border-color: var(--ink);
}

.site-navbar {
    background: rgba(12, 9, 8, 0.78);
    border-bottom: 1px solid rgba(255, 122, 24, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.brand-mark {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 999px;
    box-shadow: 0 0 0 8px rgba(255, 122, 24, 0.16);
    flex: 0 0 auto;
}

.brand-text {
    color: var(--primary);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: none;
}

.navbar .nav-link {
    color: rgba(248, 239, 229, 0.78);
    font-weight: 800;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary);
}

.navbar-toggler {
    border-color: rgba(255, 122, 24, 0.38);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 24, 0.22);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.hero-section {
    position: relative;
    min-height: 92vh;
    color: #ffffff;
    background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero-section::after,
.page-hero::after {
    position: absolute;
    inset: auto -10% -18% 48%;
    width: 42rem;
    height: 42rem;
    content: "";
    background: radial-gradient(circle, rgba(255, 122, 24, 0.28), transparent 62%);
    filter: blur(8px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 5, 4, 0.94), rgba(12, 8, 6, 0.72) 50%, rgba(255, 122, 24, 0.08)),
        radial-gradient(circle at 72% 24%, rgba(255, 122, 24, 0.42), transparent 24rem);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.min-vh-90 {
    min-height: 92vh;
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.hero-section h1,
.page-hero h1 {
    max-width: 900px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.45rem, 5.8vw, 5.45rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.065em;
}

.hero-section .lead {
    max-width: 760px;
    margin-top: 1.4rem;
    color: rgba(248, 239, 229, 0.86);
    font-size: 1.22rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-proof span,
.contact-quick-points span,
.case-label,
.pillar-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    color: var(--warning);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 0.72rem;
    height: 0.72rem;
    content: "";
    background: var(--primary);
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.14);
}

.hero-section .eyebrow,
.cta-box .eyebrow {
    color: var(--warning);
}

.section-pad {
    padding: 6.5rem 0;
}

.services-intro {
    padding-bottom: 2rem;
}

.services-intro .section-heading {
    margin-bottom: 0;
}

.section-heading {
    max-width: 790px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading-left {
    max-width: 100%;
    margin: 0 0 2rem;
    text-align: left;
}

.contact-heading {
    max-width: 860px;
    margin: 0 auto 2.5rem;
}

#contato {
    position: relative;
    padding-bottom: 5rem;
}

.section-heading h2,
.trust-band h2,
.section-pad h2 {
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.section-heading p,
.section-pad p,
.page-hero p {
    color: var(--muted);
    font-size: 1.05rem;
}

.service-card,
.detail-card,
.quote-card,
.metric-card,
.pillar-card,
.case-card,
.contact-form,
.contact-details,
.contact-info-panel,
.principles-panel {
    position: relative;
    height: 100%;
    padding: 2rem;
    color: var(--ink);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-form {
    border-color: rgba(255, 122, 24, 0.12);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.service-card::before,
.detail-card::before,
.quote-card::before,
.metric-card::before,
.pillar-card::before,
.case-card::before,
.contact-form::before,
.contact-details::before,
.contact-info-panel::before,
.principles-panel::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
}

.service-card,
.detail-card,
.quote-card,
.metric-card,
.pillar-card,
.case-card,
.audience-item,
.reason-item {
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover,
.detail-card:hover,
.quote-card:hover,
.metric-card:hover,
.pillar-card:hover,
.case-card:hover,
.audience-item:hover,
.reason-item:hover {
    border-color: rgba(255, 122, 24, 0.46);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
    transform: translateY(-6px);
}

.service-card i,
.detail-card i {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #160b05;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(255, 122, 24, 0.24);
    font-size: 1.55rem;
}

.service-card h3,
.detail-card h2 {
    font-size: 1.35rem;
    font-weight: 850;
}

.detail-card ul {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.detail-card li::marker {
    color: var(--primary);
}

.wide-card {
    background:
        radial-gradient(circle at top right, rgba(255, 122, 24, 0.16), transparent 25rem),
        var(--surface);
}

.trust-band,
.testimonials,
.faq-section {
    background:
        linear-gradient(135deg, rgba(255, 122, 24, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.025);
    border-block: 1px solid rgba(255, 122, 24, 0.12);
}

.metrics-section {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.metric-card strong,
.pillar-card h3,
.case-card h3 {
    display: block;
    color: var(--ink);
}

.metric-card strong {
    margin-bottom: 0.8rem;
    font-size: 1.08rem;
    font-weight: 900;
}

.metric-card span {
    color: var(--muted);
}

.pillar-card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.pillar-card li::marker,
.case-card li::marker {
    color: var(--primary);
}

.case-card p,
.pillar-card p {
    margin-bottom: 0;
}

.reason-item {
    min-height: 150px;
    padding: 1.6rem;
    color: var(--ink);
    background: rgba(12, 9, 8, 0.76);
    border: 1px solid rgba(255, 122, 24, 0.18);
    border-left: 5px solid var(--primary);
    border-radius: 18px;
}

.reason-item strong,
.reason-item span {
    display: block;
}

.reason-item strong {
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
}

.reason-item span {
    color: var(--muted);
}

.content-image,
.page-hero-image {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    border: 1px solid rgba(255, 122, 24, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
    filter: saturate(1.05) contrast(1.04);
}

.quote-card p {
    color: var(--ink);
    font-size: 1.03rem;
}

.quote-card strong,
.quote-card span {
    display: block;
}

.quote-card strong {
    margin-top: 1.5rem;
}

.quote-card span {
    color: var(--muted);
}

.cta-section {
    padding-top: 3rem;
}

.cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 207, 103, 0.35), transparent 22rem),
        linear-gradient(135deg, #251008, #ff6b00);
    border: 1px solid rgba(255, 207, 103, 0.34);
    border-radius: 30px;
    box-shadow: 0 38px 110px rgba(255, 86, 0, 0.24);
    overflow: hidden;
}

.cta-box::after {
    position: absolute;
    right: -4rem;
    bottom: -7rem;
    width: 22rem;
    height: 22rem;
    content: "";
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    max-width: 780px;
    margin: 0;
}

.page-main {
    padding-top: 5rem;
}

.page-hero {
    position: relative;
    padding: 5.5rem 0 4rem;
    background:
        radial-gradient(circle at 88% 0%, rgba(255, 122, 24, 0.24), transparent 30rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 122, 24, 0.06));
    overflow: hidden;
}

.services-hero,
.contact-hero {
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 176, 0, 0.18), transparent 28rem),
        linear-gradient(135deg, rgba(255, 122, 24, 0.09), rgba(255, 255, 255, 0.03));
}

.accordion {
    --bs-accordion-bg: rgba(16, 12, 10, 0.86);
    --bs-accordion-border-color: var(--line);
    --bs-accordion-color: var(--ink);
    --bs-accordion-btn-color: var(--ink);
    --bs-accordion-active-color: #160b05;
    --bs-accordion-active-bg: var(--primary);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(255, 122, 24, 0.22);
    display: grid;
    gap: 1rem;
}

.accordion-item {
    background: rgba(12, 9, 8, 0.72);
    border-color: var(--line);
    border-radius: 20px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.accordion-button {
    padding: 1.35rem 1.5rem;
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
}

.accordion-body {
    padding: 0 1.5rem 1.35rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.principle,
.contact-line {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.principle:last-child,
.contact-line:last-child {
    border-bottom: 0;
}

.principle i,
.contact-line i {
    color: var(--primary);
    font-size: 1.25rem;
}

.audience-item {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: var(--ink);
    background: rgba(16, 12, 10, 0.86);
    border: 1px solid var(--line);
    border-radius: 18px;
    font-weight: 900;
    text-align: center;
}

.contact-form label {
    color: var(--ink);
    font-weight: 800;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 50px;
    color: var(--ink);
    background-color: rgba(255, 255, 255, 0.055);
    border-color: var(--line);
    border-radius: 16px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 122, 24, 0.18);
}

.contact-form .form-select option {
    color: #17110f;
}

.contact-form textarea.form-control {
    min-height: 160px;
}

.success-message {
    margin-bottom: 1.25rem;
    padding: 1rem;
    color: #1a0c04;
    background: linear-gradient(135deg, #ffd28d, var(--primary));
    border: 1px solid rgba(255, 207, 103, 0.65);
    border-radius: 16px;
    font-weight: 800;
}

.error-message {
    margin-bottom: 1.25rem;
    padding: 1rem;
    color: #fff2ef;
    background: linear-gradient(135deg, #8f2318, #d94f04);
    border: 1px solid rgba(255, 176, 144, 0.48);
    border-radius: 16px;
    font-weight: 800;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 850;
}

.contact-quick-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.25rem 0 1.5rem;
}

.mini-cta-grid {
    display: grid;
    gap: 0.85rem;
}

.contact-details ul {
    color: var(--muted);
}

.contact-details li::marker {
    color: var(--primary);
}

.experts-hero {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 176, 0, 0.2), transparent 28rem),
        radial-gradient(circle at 12% 72%, rgba(255, 122, 24, 0.15), transparent 24rem),
        linear-gradient(135deg, rgba(255, 122, 24, 0.08), rgba(255, 255, 255, 0.025));
}

.expert-highlight {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--ink);
    background:
        linear-gradient(160deg, rgba(255, 176, 0, 0.22), rgba(255, 122, 24, 0.04)),
        rgba(14, 10, 8, 0.86);
    border: 1px solid rgba(255, 122, 24, 0.26);
    border-radius: 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.expert-highlight::before {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 18rem;
    height: 18rem;
    content: "";
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 999px;
    opacity: 0.76;
}

.expert-highlight::after {
    position: absolute;
    inset: 1rem;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    pointer-events: none;
}

.expert-highlight-number {
    position: relative;
    z-index: 1;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4.5rem, 12vw, 8rem);
    line-height: 0.82;
    color: var(--warning);
    font-weight: 700;
    letter-spacing: -0.08em;
}

.expert-highlight strong,
.expert-highlight p {
    position: relative;
    z-index: 1;
}

.expert-highlight strong {
    margin-top: 1rem;
    font-size: 1.35rem;
    font-weight: 900;
}

.expert-highlight p {
    margin: 0.8rem 0 0;
}

.expert-card,
.credential-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    color: var(--ink);
    background:
        radial-gradient(circle at 86% 0%, rgba(255, 122, 24, 0.14), transparent 16rem),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.expert-card:hover,
.credential-card:hover {
    border-color: rgba(255, 122, 24, 0.48);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
    transform: translateY(-6px);
}

.expert-avatar,
.credential-card i {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: #170c05;
    background: linear-gradient(135deg, var(--warning), var(--primary));
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(255, 122, 24, 0.24);
    font-size: 1.65rem;
}

.expert-role {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.32rem 0.7rem;
    color: var(--warning);
    background: rgba(255, 122, 24, 0.11);
    border: 1px solid rgba(255, 122, 24, 0.22);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.expert-card h3,
.credential-card h2 {
    font-size: 1.35rem;
    font-weight: 900;
}

.expert-process {
    display: grid;
    gap: 1rem;
}

.process-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.4rem;
    color: var(--ink);
    background: rgba(12, 9, 8, 0.72);
    border: 1px solid rgba(255, 122, 24, 0.18);
    border-radius: 20px;
}

.vertical-step {
    height: 100%;
    flex-direction: column;
}

.process-step > span {
    flex: 0 0 auto;
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    color: #170c05;
    background: var(--primary);
    border-radius: 16px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.process-step strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.process-step p {
    margin: 0;
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
    color: rgba(248, 239, 229, 0.72);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 122, 24, 0.18), transparent 24rem),
        #080604;
    border-top: 1px solid rgba(255, 122, 24, 0.18);
}

.whatsapp-float {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 1035;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    color: #25d366;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover {
    color: #25d366;
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

.whatsapp-float span {
    display: block;
    width: 100%;
    height: 100%;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.1 32 1.3 131.8 1.3 254.6c0 39.2 10.2 77.5 29.6 111.3L0 480l116.8-30.7c32.6 17.8 69.4 27.2 107.1 27.2h.1c122.7 0 222.6-99.8 222.6-222.6 0-59.3-23.1-115.1-65.7-156.8zM223.9 438.9c-33.6 0-66.5-9-95.2-26l-6.8-4-69.2 18.2 18.5-67.5-4.4-6.9c-18.8-29.9-28.7-64.3-28.7-99.7 0-102.6 83.5-186.1 186.1-186.1 49.7 0 96.5 19.4 131.6 54.6 35.7 35.7 55.3 82.7 55.3 132.4 0 102.7-83.5 186.2-187.2 186.2zm101.9-139.5c-5.6-2.8-33.1-16.3-38.2-18.2-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18.2-17.6 21.9-3.2 3.7-6.5 4.2-12.1 1.4-33.1-16.5-54.8-29.5-76.6-66.7-5.8-10 5.8-9.3 16.5-30.9 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.7 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 33.1-13.5 37.8-26.5 4.6-13 4.6-24.1 3.2-26.5-1.3-2.4-5-3.8-10.6-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.1 32 1.3 131.8 1.3 254.6c0 39.2 10.2 77.5 29.6 111.3L0 480l116.8-30.7c32.6 17.8 69.4 27.2 107.1 27.2h.1c122.7 0 222.6-99.8 222.6-222.6 0-59.3-23.1-115.1-65.7-156.8zM223.9 438.9c-33.6 0-66.5-9-95.2-26l-6.8-4-69.2 18.2 18.5-67.5-4.4-6.9c-18.8-29.9-28.7-64.3-28.7-99.7 0-102.6 83.5-186.1 186.1-186.1 49.7 0 96.5 19.4 131.6 54.6 35.7 35.7 55.3 82.7 55.3 132.4 0 102.7-83.5 186.2-187.2 186.2zm101.9-139.5c-5.6-2.8-33.1-16.3-38.2-18.2-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18.2-17.6 21.9-3.2 3.7-6.5 4.2-12.1 1.4-33.1-16.5-54.8-29.5-76.6-66.7-5.8-10 5.8-9.3 16.5-30.9 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.7 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 33.1-13.5 37.8-26.5 4.6-13 4.6-24.1 3.2-26.5-1.3-2.4-5-3.8-10.6-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-float-text {
    display: none;
}

.site-footer a,
.site-footer span {
    display: block;
    color: rgba(248, 239, 229, 0.72);
}

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

.footer-social {
    display: inline-flex !important;
    width: 3.3rem;
    height: 3.3rem;
    align-items: center;
    justify-content: center;
    color: var(--ink) !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 122, 24, 0.24);
    border-radius: 999px;
    font-size: 1.65rem;
}

.footer-social:hover {
    color: var(--primary) !important;
    border-color: rgba(255, 122, 24, 0.62);
}

.footer-brand {
    color: var(--primary);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 850;
}

.footer-cta {
    margin-top: 0.75rem;
    color: var(--primary) !important;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248, 239, 229, 0.13);
    font-size: 0.92rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 1rem;
    }

    .site-navbar {
        background: rgba(12, 9, 8, 0.92);
    }

    .hero-section h1,
    .page-hero h1 {
        letter-spacing: -0.05em;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .brand-text {
        max-width: 190px;
        font-size: 0.95rem;
        line-height: 1.15;
    }

    .section-heading h2,
    .trust-band h2,
    .section-pad h2 {
        font-size: 1.9rem;
    }

    .section-pad {
        padding: 4rem 0;
    }

    .whatsapp-float {
        right: 0.9rem;
        bottom: 0.9rem;
        width: 3rem;
        height: 3rem;
    }

    .service-card,
    .detail-card,
    .quote-card,
    .contact-form,
    .contact-details,
    .contact-info-panel,
    .principles-panel,
    .cta-box {
        padding: 1.4rem;
    }

    .content-image,
    .page-hero-image {
        min-height: 260px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
