/* =========================================
   IHAAN OTT — GLOBAL STYLES
========================================= */

:root {
    /* Logo Colours */
    --brand-orange: #f1592a;
    --brand-gold: #fcb041;

    /* Supporting Colours */
    --brand-orange-dark: #d9471b;
    --dark: #181511;
    --text-color: #312c27;
    --text-muted: #746b63;
    --background: #fffaf5;
    --white: #ffffff;
    --border-color: rgba(24, 21, 17, 0.12);

    /* Design Settings */
    --border-radius-small: 12px;
    --border-radius-medium: 18px;
    --border-radius-large: 28px;

    --transition:
        0.3s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================
   BASIC RESET
========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    overflow-x: hidden;

    color: var(--text-color);

    background-color: var(--background);

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}


img {
    display: block;

    max-width: 100%;

    height: auto;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


::selection {
    color: var(--white);

    background-color: var(--brand-orange);
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    padding: 18px 0;

    transition:
        padding var(--transition),
        background-color var(--transition),
        box-shadow var(--transition);
}


/* Header after scrolling */

.site-header.header-scrolled {
    padding: 10px 0;

    /* background-color: rgba(255, 250, 245, 0.95);

    box-shadow:
        0 10px 35px rgba(24, 21, 17, 0.08);

    backdrop-filter: blur(16px); */
}


.site-header .navbar {
    padding: 0;
}


/* Main header container */

.header-wrapper {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 72px;

    padding: 6px 8px 6px 20px;

    border: 1px solid rgba(24, 21, 17, 0.08);

    border-radius: 20px;

    background-color: rgba(255, 255, 255, 0.92);

    box-shadow:
        0 14px 40px rgba(50, 32, 18, 0.08);

    backdrop-filter: blur(16px);
}


/* Logo */

.navbar-brand {
    display: flex;

    align-items: center;

    flex-shrink: 0;

    padding: 0;

    margin: 0;
}


.header-logo {
    width: 140px;

    height: 60px;

    object-fit: contain;
}


/* Navigation */

.navbar-collapse {
    align-items: center;
}


.navbar-nav {
    align-items: center;

    gap: 8px;
}


.navbar .nav-link {
    position: relative;

    padding: 12px 14px !important;

    color: var(--text-color);

    font-size: 14px;

    font-weight: 700;

    transition: color var(--transition);
}


.navbar .nav-link::after {
    position: absolute;

    bottom: 6px;
    left: 14px;

    width: calc(100% - 28px);

    height: 2px;

    border-radius: 50px;

    background-color: var(--brand-orange);

    content: "";

    transform: scaleX(0);

    transform-origin: right;

    transition: transform var(--transition);
}


.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--brand-orange);
}


.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);

    transform-origin: left;
}


/* Contact button */

.header-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding: 10px 12px 10px 20px;

    border: 1px solid var(--brand-orange);

    border-radius: 14px;

    color: var(--white);

    background-color: var(--brand-orange);

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 12px 25px rgba(241, 89, 42, 0.22);

    transition:
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


.header-button:hover {
    color: var(--white);

    border-color: var(--brand-orange-dark);

    background-color: var(--brand-orange-dark);

    box-shadow:
        0 16px 30px rgba(241, 89, 42, 0.28);

    transform: translateY(-2px);
}


.header-button-arrow {
    display: grid;

    width: 30px;

    height: 30px;

    border-radius: 9px;

    color: var(--brand-orange);

    background-color: var(--white);

    place-items: center;

    font-size: 15px;

    transition: transform var(--transition);
}


.header-button:hover .header-button-arrow {
    transform: rotate(45deg);
}


/* Mobile menu button */

.navbar-toggler {
    display: grid;

    width: 48px;

    height: 48px;

    padding: 0;

    margin-left: auto;

    border: 1px solid var(--border-color);

    border-radius: 14px;

    box-shadow: none !important;

    place-items: center;
}


.menu-toggle-icon {
    display: flex;

    flex-direction: column;

    width: 21px;

    gap: 6px;
}


.menu-toggle-icon span {
    display: block;

    width: 100%;

    height: 2px;

    border-radius: 50px;

    background-color: var(--dark);

    transition: transform var(--transition);
}


.navbar-toggler[aria-expanded="true"] .menu-toggle-icon span:first-child {
    transform: translateY(4px) rotate(45deg);
}


.navbar-toggler[aria-expanded="true"] .menu-toggle-icon span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 100vh;

    overflow: hidden;

    padding: 165px 0 80px;

    background-color: var(--background);
}


/* Top gold line */

.hero-section::before {
    position: absolute;

    top: 0;
    right: 0;

    width: 38%;

    height: 6px;

    border-radius: 0 0 0 20px;

    background-color: var(--brand-gold);

    content: "";
}


/* Background decoration */

.hero-decoration {
    position: absolute;

    border: 1px solid rgba(241, 89, 42, 0.13);

    border-radius: 50%;

    pointer-events: none;
}


.hero-decoration-one {
    top: 18%;
    right: -230px;

    width: 620px;

    height: 620px;
}


.hero-decoration-two {
    top: 28%;
    right: -90px;

    width: 360px;

    height: 360px;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 650px;
}


/* Small hero label */

.hero-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    padding: 8px 13px;

    border: 1px solid rgba(241, 89, 42, 0.18);

    border-radius: 50px;

    color: var(--text-color);

    background-color: rgba(255, 255, 255, 0.75);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;

    animation:
        hero-content-show 0.7s ease forwards;
}


.hero-label-dot {
    width: 8px;

    height: 8px;

    border-radius: 50%;

    background-color: var(--brand-orange);

    box-shadow:
        0 0 0 5px rgba(241, 89, 42, 0.12);
}


/* Hero heading */

.hero-title {
    max-width: 720px;

    margin-bottom: 0;

    color: var(--dark);

    font-size: clamp(52px, 5.4vw, 82px);

    font-weight: 800;

    letter-spacing: -0.065em;

    line-height: 1;

    opacity: 0;

    animation:
        hero-content-show 0.8s 0.12s ease forwards;
}


.hero-title span {
    display: block;

    color: var(--brand-orange);
}


/* Hero paragraph */

.hero-description {
    max-width: 610px;

    margin-top: 28px;

    margin-bottom: 0;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.8;

    opacity: 0;

    animation:
        hero-content-show 0.8s 0.22s ease forwards;
}


/* Hero buttons */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;

    opacity: 0;

    animation:
        hero-content-show 0.8s 0.32s ease forwards;
}


.hero-primary-button,
.hero-secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 56px;

    border-radius: 14px;

    font-size: 14px;

    font-weight: 800;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


.hero-primary-button {
    gap: 20px;

    padding: 11px 12px 11px 22px;

    border: 1px solid var(--brand-orange);

    color: var(--white);

    background-color: var(--brand-orange);

    box-shadow:
        0 14px 28px rgba(241, 89, 42, 0.23);
}


.hero-primary-button:hover {
    color: var(--white);

    border-color: var(--brand-orange-dark);

    background-color: var(--brand-orange-dark);

    box-shadow:
        0 18px 34px rgba(241, 89, 42, 0.3);

    transform: translateY(-3px);
}


.button-arrow {
    display: grid;

    width: 32px;

    height: 32px;

    border-radius: 10px;

    color: var(--brand-orange);

    background-color: var(--white);

    place-items: center;

    font-size: 17px;

    transition: transform var(--transition);
}


.hero-primary-button:hover .button-arrow {
    transform: translateX(3px);
}


.hero-secondary-button {
    padding: 11px 22px;

    border: 1px solid var(--border-color);

    color: var(--dark);

    background-color: rgba(255, 255, 255, 0.7);
}


.hero-secondary-button:hover {
    color: var(--white);

    border-color: var(--dark);

    background-color: var(--dark);

    transform: translateY(-3px);
}


/* Channel list */

.hero-channels {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;

    opacity: 0;

    animation:
        hero-content-show 0.8s 0.42s ease forwards;
}


.hero-channels-label {
    color: var(--text-muted);

    font-size: 12px;

    font-weight: 700;
}


.hero-channel-list {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.hero-channel-list span {
    padding: 6px 10px;

    border: 1px solid var(--border-color);

    border-radius: 8px;

    color: var(--text-color);

    background-color: var(--white);

    font-size: 11px;

    font-weight: 800;
}


/* =========================================
   HERO DASHBOARD
========================================= */

.hero-visual {
    position: relative;

    z-index: 2;

    max-width: 610px;

    margin-left: auto;

    padding: 30px 12px;

    opacity: 0;

    animation:
        hero-visual-show 0.9s 0.2s ease forwards;
}


.communication-dashboard {
    overflow: hidden;

    border: 1px solid rgba(24, 21, 17, 0.11);

    border-radius: 28px;

    background-color: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 30px 75px rgba(67, 42, 23, 0.14);

    animation:
        hero-dashboard-float 5s ease-in-out infinite;
}


/* Dashboard header */

.dashboard-header {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    min-height: 60px;

    padding: 0 22px;

    border-bottom: 1px solid var(--border-color);

    background-color: #fffdf9;
}


.dashboard-window-buttons {
    display: flex;

    gap: 6px;
}


.dashboard-window-buttons span {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background-color: #ddd5cc;
}


.dashboard-window-buttons span:first-child {
    background-color: var(--brand-orange);
}


.dashboard-header-title {
    color: var(--text-color);

    font-size: 11px;

    font-weight: 800;
}


.dashboard-live-status {
    display: inline-flex;

    align-items: center;

    justify-self: end;

    gap: 7px;

    color: #188b5a;

    font-size: 10px;

    font-weight: 800;
}


.dashboard-live-status>span {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background-color: currentColor;

    box-shadow:
        0 0 0 5px rgba(24, 139, 90, 0.1);

    animation:
        dashboard-status-pulse 1.8s ease infinite;
}


/* Dashboard body */

.dashboard-content {
    padding: 25px;
}


.dashboard-title-row {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 22px;
}


.dashboard-small-title {
    color: var(--brand-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.dashboard-title-row h2 {
    max-width: 350px;

    margin-top: 4px;

    margin-bottom: 0;

    color: var(--dark);

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -0.035em;

    line-height: 1.3;
}


.dashboard-menu-button {
    display: grid;

    flex-shrink: 0;

    width: 38px;

    height: 38px;

    padding: 0;

    border: 1px solid var(--border-color);

    border-radius: 11px;

    color: var(--text-muted);

    background-color: var(--white);

    font-size: 13px;

    letter-spacing: 1px;

    place-items: center;
}


/* Overview cards */

.dashboard-overview {
    display: grid;

    grid-template-columns: 1.15fr 1fr;

    gap: 12px;
}


.dashboard-overview-card {
    min-width: 0;

    min-height: 130px;

    padding: 17px;

    border: 1px solid var(--border-color);

    border-radius: 19px;

    background-color: var(--white);
}


.dashboard-dark-card {
    color: var(--white);

    border-color: var(--dark);

    background-color: var(--dark);
}


.overview-card-label {
    display: block;

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 700;
}


.dashboard-dark-card .overview-card-label {
    color: rgba(255, 255, 255, 0.62);
}


.dashboard-overview-card>strong {
    display: block;

    margin-top: 7px;

    font-size: 34px;

    font-weight: 800;

    letter-spacing: -0.05em;

    line-height: 1.2;
}


.active-channel-dots {
    display: flex;

    gap: 6px;

    margin-top: 17px;
}


.active-channel-dots span {
    width: 20px;

    height: 6px;

    border-radius: 30px;

    background-color: var(--brand-orange);
}


.active-channel-dots span:nth-child(2),
.active-channel-dots span:nth-child(4) {
    background-color: var(--brand-gold);
}


.overview-status {
    color: #188b5a;

    font-size: 24px !important;
}


.overview-card-note {
    display: block;

    margin-top: 18px;

    color: var(--text-muted);

    font-size: 10px;
}


/* Dashboard channels */

.dashboard-channel-list {
    margin-top: 14px;

    overflow: hidden;

    border: 1px solid var(--border-color);

    border-radius: 19px;

    background-color: var(--white);
}


.dashboard-channel {
    display: grid;

    grid-template-columns:
        34px minmax(105px, 1fr) minmax(70px, 1fr) auto;

    align-items: center;

    gap: 10px;

    min-height: 62px;

    padding: 9px 14px;

    border-bottom: 1px solid var(--border-color);
}


.dashboard-channel:last-child {
    border-bottom: 0;
}


.dashboard-channel-icon {
    display: grid;

    width: 32px;

    height: 32px;

    border-radius: 10px;

    color: var(--brand-orange);

    background-color: rgba(241, 89, 42, 0.1);

    place-items: center;

    font-size: 11px;

    font-weight: 800;
}


.dashboard-channel-whatsapp {
    color: #168b59;

    background-color: rgba(22, 139, 89, 0.1);
}


.dashboard-channel-rcs {
    color: #376dd7;

    background-color: rgba(55, 109, 215, 0.1);
}


.dashboard-channel-name strong,
.dashboard-channel-name span {
    display: block;
}


.dashboard-channel-name strong {
    color: var(--dark);

    font-size: 11px;

    font-weight: 800;
}


.dashboard-channel-name span {
    margin-top: 1px;

    color: var(--text-muted);

    font-size: 9px;
}


.dashboard-progress {
    height: 5px;

    overflow: hidden;

    border-radius: 30px;

    background-color: #f0ebe5;
}


.dashboard-progress>span {
    display: block;

    width: var(--channel-progress);

    height: 100%;

    border-radius: inherit;

    background-color: var(--brand-gold);

    transform: scaleX(0);

    transform-origin: left;

    animation:
        dashboard-progress-show 1.2s 1s ease forwards;
}


.dashboard-channel-status {
    padding: 4px 7px;

    border-radius: 20px;

    color: #188b5a;

    background-color: rgba(24, 139, 90, 0.1);

    font-size: 8px;

    font-weight: 800;
}


.dashboard-status-scheduled {
    color: #376dd7;

    background-color: rgba(55, 109, 215, 0.1);
}


/* Floating cards */

.hero-floating-status,
.hero-floating-message {
    position: absolute;

    z-index: 3;

    display: flex;

    align-items: center;

    border: 1px solid rgba(24, 21, 17, 0.09);

    background-color: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 16px 35px rgba(53, 34, 19, 0.11);

    backdrop-filter: blur(12px);

    animation:
        hero-floating-card 4s ease-in-out infinite;
}


.hero-floating-status {
    top: 0;
    right: -15px;

    gap: 8px;

    padding: 10px 13px;

    border-radius: 13px;

    color: var(--text-color);

    font-size: 10px;

    font-weight: 800;
}


.floating-status-icon {
    display: grid;

    width: 22px;

    height: 22px;

    border-radius: 7px;

    color: var(--white);

    background-color: #188b5a;

    place-items: center;

    font-size: 10px;
}


.hero-floating-message {
    bottom: 0;
    left: -25px;

    gap: 10px;

    padding: 11px 14px;

    border-radius: 14px;

    animation-delay: -1.5s;
}


.floating-message-icon {
    display: grid;

    width: 34px;

    height: 34px;

    border-radius: 10px;

    color: var(--white);

    background-color: var(--brand-orange);

    place-items: center;

    font-size: 9px;

    font-weight: 800;
}


.hero-floating-message>span:last-child {
    color: var(--text-muted);

    font-size: 8px;

    line-height: 1.45;
}


.hero-floating-message strong {
    display: block;

    color: var(--dark);

    font-size: 10px;
}


/* =========================================
   HERO ANIMATIONS
========================================= */

@keyframes hero-content-show {

    from {
        opacity: 0;

        transform: translateY(24px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


@keyframes hero-visual-show {

    from {
        opacity: 0;

        transform: translateX(30px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }

}


@keyframes hero-dashboard-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


@keyframes hero-floating-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


@keyframes dashboard-status-pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(24, 139, 90, 0.1);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(24, 139, 90, 0);
    }

}


@keyframes dashboard-progress-show {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}

/* =========================================
   SOLUTIONS SECTION
========================================= */

.solutions-section {
    position: relative;

    overflow: hidden;

    padding: 115px 0;

    background-color: var(--white);
}


/* Orange decoration */

.solutions-section::before {
    position: absolute;

    top: 0;
    left: 7%;

    width: 70px;

    height: 5px;

    border-radius: 0 0 10px 10px;

    background-color: var(--brand-orange);

    content: "";
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 760px;
}


.section-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--brand-orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.section-label span {
    width: 30px;

    height: 2px;

    border-radius: 20px;

    background-color: var(--brand-orange);
}


.section-title {
    margin-bottom: 0;

    color: var(--dark);

    font-size: clamp(42px, 4.5vw, 64px);

    font-weight: 800;

    letter-spacing: -0.055em;

    line-height: 1.05;
}


.section-title span {
    display: block;

    color: var(--brand-orange);
}


.section-description {
    max-width: 500px;

    margin-bottom: 5px;
    margin-left: auto;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   SOLUTION GRID
========================================= */

.solutions-grid {
    margin-top: 60px;
}


.solution-card {
    position: relative;

    display: flex;

    flex-direction: column;

    height: 100%;

    min-height: 510px;

    overflow: hidden;

    padding: 26px;

    border: 1px solid var(--border-color);

    border-radius: 24px;

    background-color: #fffdf9;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


.solution-card::before {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 4px;

    background-color: var(--brand-orange);

    content: "";

    transform: scaleX(0);

    transform-origin: left;

    transition: transform var(--transition);
}


.solution-card:hover {
    border-color: rgba(241, 89, 42, 0.3);

    box-shadow:
        0 25px 55px rgba(63, 40, 22, 0.11);

    transform: translateY(-8px);
}


.solution-card:hover::before {
    transform: scaleX(1);
}


/* Featured card */

.solution-card-featured {
    border-color: rgba(241, 89, 42, 0.26);

    background-color: var(--surface-soft);
}


.featured-label {
    position: absolute;

    top: 0;
    right: 25px;

    padding: 7px 12px;

    border-radius: 0 0 10px 10px;

    color: var(--white);

    background-color: var(--brand-orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


/* Card header */

.solution-card-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;
}


.solution-icon {
    display: grid;

    width: 58px;

    height: 58px;

    border: 1px solid rgba(241, 89, 42, 0.16);

    border-radius: 17px;

    color: var(--brand-orange);

    background-color: rgba(241, 89, 42, 0.1);

    place-items: center;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.03em;

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}


.solution-icon-rcs {
    color: #376dd7;

    border-color: rgba(55, 109, 215, 0.15);

    background-color: rgba(55, 109, 215, 0.09);
}


.solution-icon-whatsapp {
    color: #168b59;

    border-color: rgba(22, 139, 89, 0.15);

    background-color: rgba(22, 139, 89, 0.09);
}


.solution-card:hover .solution-icon {
    color: var(--white);

    border-color: var(--brand-orange);

    background-color: var(--brand-orange);

    transform: rotate(-5deg);
}


.solution-number {
    color: rgba(24, 21, 17, 0.18);

    font-size: 29px;

    font-weight: 800;

    letter-spacing: -0.05em;
}


/* Card content */

.solution-card-content {
    flex-grow: 1;
}


.solution-category {
    display: block;

    margin-bottom: 10px;

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.solution-card h3 {
    margin-bottom: 17px;

    color: var(--dark);

    font-size: 27px;

    font-weight: 800;

    letter-spacing: -0.035em;
}


.solution-card p {
    margin-bottom: 25px;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.75;
}


/* Feature list */

.solution-features {
    display: grid;

    gap: 11px;

    padding: 0;

    margin: 0;

    list-style: none;
}


.solution-features li {
    position: relative;

    padding-left: 24px;

    color: var(--text-color);

    font-size: 12px;

    font-weight: 600;
}


.solution-features li::before {
    position: absolute;

    top: 3px;
    left: 0;

    display: grid;

    width: 15px;

    height: 15px;

    border-radius: 50%;

    color: var(--white);

    background-color: var(--brand-orange);

    content: "✓";

    place-items: center;

    font-size: 8px;

    font-weight: 800;
}


/* Card link */

.solution-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 35px;

    padding-top: 20px;

    border-top: 1px solid var(--border-color);

    color: var(--dark);

    font-size: 12px;

    font-weight: 800;

    transition: color var(--transition);
}


.solution-link>span:last-child {
    display: grid;

    width: 31px;

    height: 31px;

    border-radius: 10px;

    color: var(--brand-orange);

    background-color: rgba(241, 89, 42, 0.1);

    place-items: center;

    font-size: 15px;

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}


.solution-link:hover {
    color: var(--brand-orange);
}


.solution-link:hover>span:last-child {
    color: var(--white);

    background-color: var(--brand-orange);

    transform: translateX(3px);
}


/* =========================================
   SCROLL REVEAL ANIMATION
========================================= */

[data-reveal] {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay:
        var(--reveal-delay, 0ms);
}


[data-reveal].reveal-visible {
    opacity: 1;

    transform: translateY(0);
}

/* =========================================
   INDUSTRIES SECTION
========================================= */

.industries-section {
    position: relative;

    overflow: hidden;

    padding: 115px 0;

    background-color: var(--dark);
}


.industries-section::before {
    position: absolute;

    top: -180px;
    right: -180px;

    width: 430px;

    height: 430px;

    border: 1px solid rgba(252, 176, 65, 0.14);

    border-radius: 50%;

    content: "";
}


.industries-section::after {
    position: absolute;

    bottom: -130px;
    left: -130px;

    width: 330px;

    height: 330px;

    border: 50px solid rgba(241, 89, 42, 0.05);

    border-radius: 50%;

    content: "";
}


.industries-section .container {
    position: relative;

    z-index: 2;
}


.industries-label {
    color: var(--brand-gold);
}


.industries-label span {
    background-color: var(--brand-gold);
}


.industries-title {
    color: var(--white);
}


.industries-title span {
    color: var(--brand-orange);
}


.industries-description {
    max-width: 500px;

    margin-bottom: 5px;
    margin-left: auto;

    color: rgba(255, 255, 255, 0.62);

    font-size: 16px;

    line-height: 1.8;
}


.industries-content {
    margin-top: 60px;
}


/* =========================================
   INDUSTRY NAVIGATION
========================================= */

.industry-navigation {
    display: grid;

    gap: 10px;
}


.industry-tab-button.nav-link {
    display: grid;

    grid-template-columns: 34px 1fr 30px;

    align-items: center;

    gap: 12px;

    width: 100%;

    min-height: 70px;

    padding: 12px 15px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 15px;

    color: rgba(255, 255, 255, 0.66);

    background-color: rgba(255, 255, 255, 0.04);

    text-align: left;

    transition:
        color var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}


.industry-tab-button.nav-link:hover {
    color: var(--white);

    border-color: rgba(241, 89, 42, 0.35);

    background-color: rgba(255, 255, 255, 0.07);

    transform: translateX(4px);
}


.industry-tab-button.nav-link.active {
    color: var(--white);

    border-color: var(--brand-orange);

    background-color: var(--brand-orange);

    box-shadow:
        0 16px 30px rgba(241, 89, 42, 0.2);
}


.industry-tab-number {
    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;

    font-weight: 800;
}


.industry-tab-button.active .industry-tab-number {
    color: rgba(255, 255, 255, 0.7);
}


.industry-tab-name {
    font-size: 13px;

    font-weight: 800;
}


.industry-tab-arrow {
    display: grid;

    width: 29px;

    height: 29px;

    border-radius: 9px;

    color: var(--brand-orange);

    background-color: var(--white);

    place-items: center;

    font-size: 14px;

    transition: transform var(--transition);
}


.industry-tab-button.active .industry-tab-arrow {
    transform: rotate(-35deg);
}


/* =========================================
   INDUSTRY PANEL
========================================= */

.industry-tab-content,
.industry-tab-content .tab-pane,
.industry-panel {
    height: 100%;
}


.industry-panel {
    min-height: 470px;

    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.6);

    border-radius: 27px;

    background-color: var(--background);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.18);
}


.industry-panel-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;
}


.industry-panel-icon {
    display: grid;

    width: 62px;

    height: 62px;

    border-radius: 18px;

    color: var(--white);

    background-color: var(--brand-orange);

    box-shadow:
        0 13px 27px rgba(241, 89, 42, 0.23);

    place-items: center;

    font-size: 13px;

    font-weight: 800;
}


.industry-panel-number {
    color: rgba(24, 21, 17, 0.35);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.industry-panel h3 {
    margin-bottom: 18px;

    color: var(--dark);

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 800;

    letter-spacing: -0.05em;
}


.industry-panel>p {
    max-width: 650px;

    margin-bottom: 30px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* Use cases */

.industry-use-cases {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;
}


.industry-use-case {
    min-height: 95px;

    padding: 15px;

    border: 1px solid var(--border-color);

    border-radius: 14px;

    color: var(--text-color);

    background-color: var(--white);

    font-size: 11px;

    font-weight: 700;

    line-height: 1.5;
}


.industry-use-case span {
    display: block;

    margin-bottom: 15px;

    color: var(--brand-orange);

    font-size: 9px;

    font-weight: 800;
}


/* Available channels */

.industry-channels {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid var(--border-color);
}


.industry-channels span {
    padding: 6px 10px;

    border-radius: 8px;

    color: var(--brand-orange);

    background-color: rgba(241, 89, 42, 0.09);

    font-size: 10px;

    font-weight: 800;
}

/* =========================================
   WHY CHOOSE SECTION
========================================= */

.choose-section {
    position: relative;

    padding: 115px 0;

    background-color: var(--background);
}


/* =========================================
   LEFT CONTENT
========================================= */

.choose-introduction {
    position: sticky;

    top: 135px;
}


.choose-title {
    max-width: 570px;

    margin-bottom: 0;

    color: var(--dark);

    font-size: clamp(42px, 4.5vw, 62px);

    font-weight: 800;

    letter-spacing: -0.055em;

    line-height: 1.06;
}


.choose-title span {
    display: block;

    color: var(--brand-orange);
}


.choose-description {
    max-width: 510px;

    margin-top: 24px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* Focus card */

.choose-focus-card {
    margin-top: 38px;

    overflow: hidden;

    border-radius: 23px;

    color: var(--white);

    background-color: var(--dark);

    box-shadow:
        0 24px 55px rgba(48, 31, 18, 0.13);
}


.focus-card-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.focus-card-heading span {
    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.focus-card-heading strong {
    color: var(--brand-gold);

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -0.04em;
}


.focus-card-items {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


.focus-card-item {
    min-width: 0;

    padding: 22px 16px;

    border-right: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;

    transition: background-color var(--transition);
}


.focus-card-item:last-child {
    border-right: 0;
}


.focus-card-item:hover {
    background-color: var(--brand-orange);
}


.focus-card-item span,
.focus-card-item strong {
    display: block;
}


.focus-card-item span {
    margin-bottom: 25px;

    color: var(--brand-orange);

    font-size: 9px;

    font-weight: 800;

    transition: color var(--transition);
}


.focus-card-item:hover span {
    color: var(--white);
}


.focus-card-item strong {
    font-size: 11px;

    font-weight: 800;
}


/* =========================================
   BENEFIT LIST
========================================= */

.choose-benefit-list {
    display: grid;

    gap: 13px;
}


.choose-benefit {
    display: grid;

    grid-template-columns:
        48px minmax(0, 1fr) 42px;

    align-items: center;

    gap: 20px;

    min-height: 145px;

    padding: 24px;

    border: 1px solid var(--border-color);

    border-radius: 20px;

    background-color: var(--white);

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


.choose-benefit:hover {
    border-color: rgba(241, 89, 42, 0.3);

    box-shadow:
        0 20px 45px rgba(53, 34, 19, 0.09);

    transform: translateX(7px);
}


.benefit-number {
    align-self: start;

    padding-top: 4px;

    color: var(--brand-orange);

    font-size: 11px;

    font-weight: 800;
}


.benefit-content h3 {
    margin-bottom: 9px;

    color: var(--dark);

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -0.025em;
}


.benefit-content p {
    max-width: 540px;

    margin-bottom: 0;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}


.benefit-arrow {
    display: grid;

    width: 40px;

    height: 40px;

    border-radius: 12px;

    color: var(--brand-orange);

    background-color: rgba(241, 89, 42, 0.09);

    place-items: center;

    font-size: 15px;

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}


.choose-benefit:hover .benefit-arrow {
    color: var(--white);

    background-color: var(--brand-orange);

    transform: rotate(45deg);
}


/* =========================================
   CHOOSE CTA
========================================= */

.choose-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 20px;

    padding: 24px;

    border: 1px solid rgba(241, 89, 42, 0.2);

    border-radius: 20px;

    background-color: var(--surface-soft);
}


.choose-cta span,
.choose-cta strong {
    display: block;
}


.choose-cta>div>span {
    margin-bottom: 4px;

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


.choose-cta>div>strong {
    color: var(--dark);

    font-size: 16px;

    font-weight: 800;
}


.choose-cta>a {
    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

    gap: 15px;

    min-height: 48px;

    padding: 10px 16px;

    border-radius: 12px;

    color: var(--white);

    background-color: var(--brand-orange);

    font-size: 11px;

    font-weight: 800;

    transition:
        background-color var(--transition),
        transform var(--transition);
}


.choose-cta>a:hover {
    color: var(--white);

    background-color: var(--brand-orange-dark);

    transform: translateY(-2px);
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    position: relative;

    overflow: hidden;

    padding: 115px 0;

    background-color: var(--white);
}


.about-section::before {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 32%;

    height: 5px;

    border-radius: 10px 0 0;

    background-color: var(--brand-gold);

    content: "";
}


/* =========================================
   ABOUT VISUAL
========================================= */

.about-visual {
    position: relative;

    overflow: hidden;

    min-height: 620px;

    border-radius: 28px;

    color: var(--white);

    background-color: var(--dark);

    box-shadow:
        0 32px 75px rgba(45, 29, 17, 0.16);
}


.about-visual::before {
    position: absolute;

    top: -130px;
    right: -130px;

    width: 310px;

    height: 310px;

    border: 45px solid rgba(241, 89, 42, 0.08);

    border-radius: 50%;

    content: "";
}


.about-visual::after {
    position: absolute;

    bottom: 80px;
    left: -110px;

    width: 240px;

    height: 240px;

    border: 1px solid rgba(252, 176, 65, 0.16);

    border-radius: 50%;

    content: "";
}


.about-visual-header,
.about-visual-content,
.about-visual-footer {
    position: relative;

    z-index: 2;
}


/* Visual header */

.about-visual-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.about-visual-label {
    color: var(--brand-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.about-visual-status {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


.about-visual-status>span {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background-color: #27af73;

    box-shadow:
        0 0 0 5px rgba(39, 175, 115, 0.1);

    animation:
        about-status-pulse 1.8s ease infinite;
}


/* Visual content */

.about-visual-content {
    padding: 48px 38px;
}


.about-visual-small-text {
    display: block;

    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.about-visual-content>h3 {
    max-width: 470px;

    margin-bottom: 0;

    color: var(--white);

    font-size: clamp(36px, 4vw, 54px);

    font-weight: 800;

    letter-spacing: -0.055em;

    line-height: 1.05;
}


.about-visual-content>h3 span {
    display: block;

    color: var(--brand-orange);
}


/* Channel cards */

.about-channel-stack {
    display: grid;

    gap: 10px;

    margin-top: 45px;
}


.about-channel-card {
    display: grid;

    grid-template-columns:
        48px minmax(0, 1fr) auto;

    align-items: center;

    gap: 14px;

    min-height: 72px;

    padding: 11px 15px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 15px;

    background-color: rgba(255, 255, 255, 0.05);

    transition:
        border-color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}


.about-channel-card:hover {
    border-color: rgba(241, 89, 42, 0.45);

    background-color: rgba(255, 255, 255, 0.08);

    transform: translateX(6px);
}


.about-channel-code {
    display: grid;

    width: 46px;

    height: 46px;

    border-radius: 13px;

    color: var(--brand-orange);

    background-color: rgba(241, 89, 42, 0.13);

    place-items: center;

    font-size: 10px;

    font-weight: 800;
}


.about-code-rcs {
    color: #73a1ff;

    background-color: rgba(55, 109, 215, 0.17);
}


.about-code-whatsapp {
    color: #55d898;

    background-color: rgba(22, 139, 89, 0.18);
}


.about-channel-card strong,
.about-channel-card div>span {
    display: block;
}


.about-channel-card strong {
    margin-bottom: 2px;

    color: var(--white);

    font-size: 11px;

    font-weight: 800;
}


.about-channel-card div>span {
    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;
}


.about-channel-number {
    color: rgba(255, 255, 255, 0.25);

    font-size: 10px;

    font-weight: 800;
}


/* Visual footer */

.about-visual-footer {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.43);

    font-size: 9px;

    font-weight: 700;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {
    max-width: 610px;

    padding-left: 20px;
}


.about-title {
    margin-bottom: 0;

    color: var(--dark);

    font-size: clamp(42px, 4.5vw, 62px);

    font-weight: 800;

    letter-spacing: -0.055em;

    line-height: 1.06;
}


.about-title span {
    display: block;

    color: var(--brand-orange);
}


.about-description {
    margin-top: 22px;

    margin-bottom: 0;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* Mission */

.about-mission {
    margin-top: 30px;

    padding: 21px;

    border-left: 4px solid var(--brand-orange);

    border-radius: 0 16px 16px 0;

    background-color: var(--surface-soft);
}


.about-mission-label {
    display: block;

    margin-bottom: 8px;

    color: var(--brand-orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.about-mission p {
    margin-bottom: 0;

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;

    line-height: 1.7;
}


/* About principles */

.about-principles {
    display: grid;

    gap: 12px;

    margin-top: 28px;
}


.about-principle {
    display: grid;

    grid-template-columns: 38px 1fr;

    align-items: center;

    gap: 12px;

    padding-bottom: 12px;

    border-bottom: 1px solid var(--border-color);
}


.about-principle span {
    color: var(--brand-orange);

    font-size: 9px;

    font-weight: 800;
}


.about-principle strong {
    color: var(--text-color);

    font-size: 12px;

    font-weight: 700;
}


/* About button */

.about-button {
    display: inline-flex;

    align-items: center;

    gap: 24px;

    min-height: 52px;

    margin-top: 32px;

    padding: 10px 13px 10px 19px;

    border-radius: 13px;

    color: var(--white);

    background-color: var(--dark);

    font-size: 12px;

    font-weight: 800;

    transition:
        background-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


.about-button>span:last-child {
    display: grid;

    width: 31px;

    height: 31px;

    border-radius: 9px;

    color: var(--brand-orange);

    background-color: var(--white);

    place-items: center;

    font-size: 14px;
}


.about-button:hover {
    color: var(--white);

    background-color: var(--brand-orange);

    box-shadow:
        0 15px 30px rgba(241, 89, 42, 0.23);

    transform: translateY(-3px);
}


/* Status animation */

@keyframes about-status-pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(39, 175, 115, 0.1);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(39, 175, 115, 0);
    }

}

/* =========================================
   CONTACT COMPOSER POPUP
========================================= */

.contact-modal .modal-dialog {
    max-width: 940px;
}


.contact-modal .modal-content {
    overflow: hidden;

    border: 0;

    border-radius: 28px;

    background-color: var(--background);

    box-shadow:
        0 35px 90px rgba(20, 15, 11, 0.28);
}


.contact-modal .modal-body {
    padding: 0;
}


/* =========================================
   POPUP HEADER
========================================= */

.contact-composer-header {
    position: relative;

    min-height: 230px;

    overflow: hidden;

    padding: 25px 32px 75px;

    color: var(--white);

    background-color: var(--dark);
}


.contact-composer-header::before {
    position: absolute;

    top: -130px;
    right: -90px;

    width: 300px;

    height: 300px;

    border: 45px solid rgba(241, 89, 42, 0.1);

    border-radius: 50%;

    content: "";
}


.contact-composer-header::after {
    position: absolute;

    right: 25%;
    bottom: -100px;

    width: 210px;

    height: 210px;

    border: 1px solid rgba(252, 176, 65, 0.18);

    border-radius: 50%;

    content: "";
}


.composer-header-top,
.composer-heading,
.composer-channel-status {
    position: relative;

    z-index: 2;
}


.composer-header-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.composer-logo {
    width: 105px;

    height: 46px;

    object-fit: contain;
}


.composer-close-button {
    display: grid;

    width: 42px;

    height: 42px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 13px;

    color: var(--white);

    background-color: rgba(255, 255, 255, 0.07);

    place-items: center;

    font-size: 25px;

    line-height: 1;

    transition:
        background-color var(--transition),
        transform var(--transition);
}


.composer-close-button:hover {
    background-color: var(--brand-orange);

    transform: rotate(90deg);
}


.composer-heading {
    margin-top: 27px;
}


.composer-label {
    display: block;

    margin-bottom: 6px;

    color: var(--brand-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.composer-heading h2 {
    max-width: 650px;

    margin-bottom: 0;

    color: var(--white);

    font-size: clamp(28px, 4vw, 42px);

    font-weight: 800;

    letter-spacing: -0.045em;

    line-height: 1.1;
}


.composer-channel-status {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 21px;
}


.composer-channel-status>span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.56);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


.composer-channel-status i {
    width: 6px;

    height: 6px;

    border-radius: 50%;

    background-color: #28af73;

    box-shadow:
        0 0 0 4px rgba(40, 175, 115, 0.1);
}


/* =========================================
   POPUP FORM BODY
========================================= */

.contact-composer-body {
    position: relative;

    z-index: 3;

    padding: 0 32px 32px;
}


.contact-composer-form {
    margin-top: -48px;
}

.website-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* =========================================
   SERVICE SELECTOR
========================================= */

.service-selector {
    margin: 0;

    padding: 20px;

    border: 1px solid var(--border-color);

    border-radius: 21px;

    background-color: var(--white);

    box-shadow:
        0 18px 40px rgba(49, 32, 19, 0.1);
}


.service-selector legend {
    width: auto;

    margin-bottom: 14px;

    color: var(--dark);

    font-size: 11px;

    font-weight: 800;
}


.service-options {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;
}


.service-option {
    position: relative;

    cursor: pointer;
}


.service-option input {
    position: absolute;

    width: 1px;

    height: 1px;

    opacity: 0;

    pointer-events: none;
}


.service-option-content {
    position: relative;

    display: block;

    min-height: 118px;

    padding: 14px;

    border: 1px solid var(--border-color);

    border-radius: 14px;

    background-color: #fffdf9;

    transition:
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


.service-option:hover .service-option-content {
    border-color: rgba(241, 89, 42, 0.35);

    transform: translateY(-3px);
}


.service-option input:checked+.service-option-content {
    border-color: var(--brand-orange);

    background-color: var(--surface-soft);

    box-shadow:
        0 10px 24px rgba(241, 89, 42, 0.12);
}


.service-option-code {
    display: grid;

    width: 38px;

    height: 38px;

    margin-bottom: 17px;

    border-radius: 11px;

    color: var(--brand-orange);

    background-color: rgba(241, 89, 42, 0.1);

    place-items: center;

    font-size: 9px;

    font-weight: 800;
}


.service-code-rcs {
    color: #376dd7;

    background-color: rgba(55, 109, 215, 0.1);
}


.service-code-whatsapp {
    color: #168b59;

    background-color: rgba(22, 139, 89, 0.1);
}


.service-option-content>strong,
.service-option-content>small {
    display: block;
}


.service-option-content>strong {
    color: var(--dark);

    font-size: 11px;

    font-weight: 800;
}


.service-option-content>small {
    margin-top: 2px;

    color: var(--text-muted);

    font-size: 8px;
}


.service-checkmark {
    position: absolute;

    top: 12px;
    right: 12px;

    display: grid;

    width: 20px;

    height: 20px;

    border-radius: 50%;

    color: var(--white);

    background-color: var(--brand-orange);

    opacity: 0;

    place-items: center;

    font-size: 9px;

    transform: scale(0.5);

    transition:
        opacity var(--transition),
        transform var(--transition);
}


.service-option input:checked+.service-option-content .service-checkmark {
    opacity: 1;

    transform: scale(1);
}


/* Not sure option */

.not-sure-option {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 10px;

    padding: 11px 13px;

    border: 1px dashed var(--border-color);

    border-radius: 12px;

    color: var(--text-muted);

    background-color: #fffdf9;

    cursor: pointer;

    font-size: 9px;

    transition:
        border-color var(--transition),
        background-color var(--transition);
}


.not-sure-option input {
    position: absolute;

    opacity: 0;
}


.not-sure-option strong {
    margin-left: 4px;

    color: var(--brand-orange);
}


.not-sure-check {
    display: grid;

    flex-shrink: 0;

    width: 20px;

    height: 20px;

    border-radius: 50%;

    color: var(--white);

    background-color: var(--brand-orange);

    opacity: 0;

    place-items: center;

    font-size: 9px;

    transform: scale(0.5);

    transition:
        opacity var(--transition),
        transform var(--transition);
}


.not-sure-option:has(input:checked) {
    border-color: var(--brand-orange);

    background-color: var(--surface-soft);
}


.not-sure-option input:checked~.not-sure-check {
    opacity: 1;

    transform: scale(1);
}


.service-validation-message {
    display: none;

    margin-top: 8px;

    color: #dc3545;

    font-size: 10px;
}


.contact-composer-form.was-validated .service-selector:has(input[name="service"]:invalid) .service-validation-message {
    display: block;
}


/* =========================================
   CONTACT FIELDS
========================================= */

.composer-form-section {
    margin-top: 27px;
}


.composer-section-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 13px;
}


.composer-section-heading>span {
    color: var(--dark);

    font-size: 11px;

    font-weight: 800;
}


.composer-section-heading>small {
    color: var(--text-muted);

    font-size: 8px;
}


.contact-composer-form .form-control {
    min-height: 57px;

    border: 1px solid var(--border-color);

    border-radius: 13px;

    color: var(--dark);

    background-color: var(--white);

    font-size: 12px;

    box-shadow: none;
}


.contact-composer-form .form-floating>label {
    color: var(--text-muted);

    font-size: 11px;
}


.contact-composer-form .form-control:focus {
    border-color: var(--brand-orange);

    box-shadow:
        0 0 0 4px rgba(241, 89, 42, 0.1);
}


/* =========================================
   MESSAGE COMPOSER
========================================= */

.message-composer {
    margin-top: 18px;

    overflow: hidden;

    border: 1px solid var(--border-color);

    border-radius: 16px;

    background-color: var(--white);

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}


.message-composer:focus-within {
    border-color: var(--brand-orange);

    box-shadow:
        0 0 0 4px rgba(241, 89, 42, 0.1);
}


.message-composer-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    min-height: 46px;

    padding: 9px 14px;

    border-bottom: 1px solid var(--border-color);

    color: var(--dark);

    font-size: 10px;

    font-weight: 800;
}


.selected-service-pill {
    padding: 5px 8px;

    border-radius: 7px;

    color: var(--text-muted);

    background-color: var(--surface-soft);

    font-size: 8px;
}


.selected-service-pill strong {
    color: var(--brand-orange);
}


.message-composer textarea {
    display: block;

    width: 100%;

    min-height: 125px;

    padding: 14px;

    resize: vertical;

    border: 0;

    outline: 0;

    color: var(--dark);

    background-color: transparent;

    font-size: 12px;

    line-height: 1.7;
}


.message-composer textarea::placeholder {
    color: #a49b92;
}


.contact-composer-form.was-validated .message-composer:has(textarea:invalid) {
    border-color: #dc3545;
}


.contact-composer-form.was-validated .message-composer:has(textarea:invalid) .invalid-feedback {
    display: block;

    padding: 0 14px 10px;
}


/* =========================================
   ACTION BAR
========================================= */

.composer-action-bar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 20px;
}


.composer-consent {
    max-width: 590px;

    margin-bottom: 0;
}


.composer-consent .form-check-input {
    border-color: var(--border-color);

    box-shadow: none;
}


.composer-consent .form-check-input:checked {
    border-color: var(--brand-orange);

    background-color: var(--brand-orange);
}


.composer-consent .form-check-label {
    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.55;
}


.composer-consent a {
    color: var(--brand-orange);

    font-weight: 800;
}


.composer-submit-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    gap: 12px;

    min-height: 51px;

    padding: 10px 12px 10px 18px;

    border: 0;

    border-radius: 13px;

    color: var(--white);

    background-color: var(--brand-orange);

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 13px 25px rgba(241, 89, 42, 0.21);

    transition:
        background-color var(--transition),
        transform var(--transition);
}


.composer-submit-button:hover {
    background-color: var(--brand-orange-dark);

    transform: translateY(-2px);
}


.composer-submit-button:disabled {
    cursor: not-allowed;

    opacity: 0.7;

    transform: none;
}


.submit-button-arrow {
    display: grid;

    width: 30px;

    height: 30px;

    border-radius: 9px;

    color: var(--brand-orange);

    background-color: var(--white);

    place-items: center;

    font-size: 14px;
}


.contact-form-status {
    min-height: 18px;

    margin-top: 12px;

    color: #dc3545;

    font-size: 10px;

    font-weight: 700;

    text-align: right;
}


/* =========================================
   SUCCESS STATE
========================================= */

.contact-success {
    padding: 65px 30px 35px;

    text-align: center;
}


.success-icon {
    display: grid;

    width: 72px;

    height: 72px;

    margin: 0 auto 25px;

    border-radius: 22px;

    color: var(--white);

    background-color: #188b5a;

    box-shadow:
        0 18px 35px rgba(24, 139, 90, 0.2);

    place-items: center;

    font-size: 26px;
}


.success-label {
    display: block;

    margin-bottom: 8px;

    color: #188b5a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.contact-success h3 {
    margin-bottom: 13px;

    color: var(--dark);

    font-size: 30px;

    font-weight: 800;

    letter-spacing: -0.04em;
}


.contact-success p {
    max-width: 540px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}


.contact-success button {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    min-height: 48px;

    margin-top: 28px;

    padding: 10px 17px;

    border: 0;

    border-radius: 12px;

    color: var(--white);

    background-color: var(--dark);

    font-size: 11px;

    font-weight: 800;
}

/* =========================================
   FINAL CTA SECTION
========================================= */

.final-cta-section {
    position: relative;

    padding: 40px 0 110px;

    background-color: var(--white);
}


.final-cta-panel {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    padding: 75px 40px 30px;

    border-radius: 32px;

    color: var(--white);

    background-color: var(--dark);

    box-shadow:
        0 35px 80px rgba(45, 29, 17, 0.17);
}


/* Orange top line */

.final-cta-panel::before {
    position: absolute;

    top: 0;
    left: 50%;

    width: 130px;

    height: 6px;

    border-radius: 0 0 12px 12px;

    background-color: var(--brand-orange);

    content: "";

    transform: translateX(-50%);
}


/* Decorative circles */

.final-cta-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.final-cta-circle-one {
    top: -170px;
    left: -150px;

    width: 400px;

    height: 400px;

    border: 60px solid rgba(241, 89, 42, 0.07);
}


.final-cta-circle-two {
    right: -130px;
    bottom: -160px;

    width: 360px;

    height: 360px;

    border: 1px solid rgba(252, 176, 65, 0.16);
}


/* =========================================
   CTA CONTENT
========================================= */

.final-cta-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.final-cta-channels {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 25px;
}


.final-cta-channels>span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 50px;

    color: rgba(255, 255, 255, 0.63);

    background-color: rgba(255, 255, 255, 0.05);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


.final-cta-channels i {
    width: 6px;

    height: 6px;

    border-radius: 50%;

    background-color: #28af73;

    box-shadow:
        0 0 0 4px rgba(40, 175, 115, 0.09);
}


.final-cta-label {
    display: block;

    margin-bottom: 13px;

    color: var(--brand-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.final-cta-content h2 {
    max-width: 850px;

    margin: 0 auto;

    color: var(--white);

    font-size: clamp(45px, 5.6vw, 74px);

    font-weight: 800;

    letter-spacing: -0.065em;

    line-height: 1.02;
}


.final-cta-content h2 span {
    display: block;

    color: var(--brand-orange);
}


.final-cta-content p {
    max-width: 610px;

    margin: 25px auto 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;

    line-height: 1.8;
}


/* CTA button */

.final-cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    min-height: 57px;

    margin-top: 31px;

    padding: 11px 12px 11px 22px;

    border-radius: 14px;

    color: var(--white);

    background-color: var(--brand-orange);

    box-shadow:
        0 16px 30px rgba(241, 89, 42, 0.22);

    font-size: 12px;

    font-weight: 800;

    transition:
        background-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


.final-cta-button:hover {
    color: var(--white);

    background-color: var(--brand-orange-dark);

    box-shadow:
        0 20px 38px rgba(241, 89, 42, 0.3);

    transform: translateY(-3px);
}


.final-cta-button-icon {
    display: grid;

    width: 33px;

    height: 33px;

    border-radius: 10px;

    color: var(--brand-orange);

    background-color: var(--white);

    place-items: center;

    font-size: 16px;

    transition: transform var(--transition);
}


.final-cta-button:hover .final-cta-button-icon {
    transform: translateX(4px);
}


/* =========================================
   CTA BOTTOM
========================================= */

.final-cta-bottom {
    position: absolute;

    right: 30px;
    bottom: 25px;
    left: 30px;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    color: rgba(255, 255, 255, 0.37);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;

    border-top: 1px solid var(--border-color);

    background-color: var(--background);
}


.site-footer::before {
    position: absolute;

    top: -1px;
    left: 7%;

    width: 90px;

    height: 4px;

    border-radius: 0 0 10px 10px;

    background-color: var(--brand-orange);

    content: "";
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    padding: 80px 0 65px;
}


/* Brand */

.footer-brand {
    max-width: 430px;
}


.footer-logo {
    display: inline-block;
}


.footer-logo img {
    width: 145px;

    height: 64px;

    object-fit: contain;
}


.footer-brand p {
    max-width: 420px;

    margin-top: 23px;

    margin-bottom: 0;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.8;
}


.footer-contact-button {
    display: inline-flex;

    align-items: center;

    gap: 22px;

    min-height: 49px;

    margin-top: 27px;

    padding: 9px 11px 9px 17px;

    border-radius: 12px;

    color: var(--white);

    background-color: var(--brand-orange);

    font-size: 11px;

    font-weight: 800;

    transition:
        background-color var(--transition),
        transform var(--transition);
}


.footer-contact-button>span {
    display: grid;

    width: 30px;

    height: 30px;

    border-radius: 9px;

    color: var(--brand-orange);

    background-color: var(--white);

    place-items: center;

    font-size: 14px;
}


.footer-contact-button:hover {
    color: var(--white);

    background-color: var(--brand-orange-dark);

    transform: translateY(-2px);
}


/* Footer columns */

.footer-column h2 {
    margin-bottom: 22px;

    color: var(--dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.footer-column ul {
    display: grid;

    gap: 12px;

    padding: 0;

    margin: 0;

    list-style: none;
}


.footer-column ul a {
    position: relative;

    color: var(--text-muted);

    font-size: 12px;

    font-weight: 600;

    transition:
        color var(--transition),
        padding-left var(--transition);
}


.footer-column ul a::before {
    position: absolute;

    top: 50%;
    left: 0;

    width: 0;

    height: 2px;

    border-radius: 20px;

    background-color: var(--brand-orange);

    content: "";

    opacity: 0;

    transform: translateY(-50%);

    transition:
        width var(--transition),
        opacity var(--transition);
}


.footer-column ul a:hover {
    padding-left: 17px;

    color: var(--brand-orange);
}


.footer-column ul a:hover::before {
    width: 10px;

    opacity: 1;
}


/* Footer contact */

.footer-contact {
    display: grid;

    gap: 17px;
}


.footer-contact h2 {
    margin-bottom: 5px;
}


.footer-contact>a,
.footer-contact address {
    display: block;

    margin: 0;

    color: var(--text-muted);

    font-size: 11px;

    font-style: normal;

    font-weight: 600;

    line-height: 1.7;
}


.footer-contact>a>span,
.footer-contact address>span {
    display: block;

    margin-bottom: 3px;

    color: var(--brand-orange);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.footer-contact>a {
    transition: color var(--transition);
}


.footer-contact>a:hover {
    color: var(--brand-orange);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-height: 75px;

    padding: 20px 0;

    border-top: 1px solid var(--border-color);
}


.footer-bottom p {
    margin: 0;

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 600;
}


.footer-legal-links {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}


.footer-legal-links a {
    color: var(--text-muted);

    font-size: 10px;

    font-weight: 600;

    transition: color var(--transition);
}


.footer-legal-links a:hover {
    color: var(--brand-orange);
}

/* =========================================
   LEGAL PAGE
========================================= */

.legal-page {
    background-color: var(--white);
}


/* Legal header */

.legal-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    border-bottom: 1px solid var(--border-color);

    background-color: rgba(255, 250, 245, 0.95);

    backdrop-filter: blur(16px);
}


.legal-header-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 85px;
}


.legal-header-logo img {
    width: 125px;

    height: 55px;

    object-fit: contain;
}


.legal-back-button {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    min-height: 45px;

    padding: 9px 15px;

    border: 1px solid var(--border-color);

    border-radius: 12px;

    color: var(--dark);

    background-color: var(--white);

    font-size: 11px;

    font-weight: 800;

    transition:
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.legal-back-button:hover {
    color: var(--brand-orange);

    border-color: var(--brand-orange);

    transform: translateX(-3px);
}


/* Legal hero */

.legal-hero {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    color: var(--white);

    background-color: var(--dark);
}


.legal-hero::before {
    position: absolute;

    top: -170px;
    right: -130px;

    width: 430px;

    height: 430px;

    border: 60px solid rgba(241, 89, 42, 0.08);

    border-radius: 50%;

    content: "";
}


.legal-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}


.legal-page-label {
    display: block;

    margin-bottom: 15px;

    color: var(--brand-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.legal-hero h1 {
    margin-bottom: 0;

    color: var(--white);

    font-size: clamp(58px, 7vw, 96px);

    font-weight: 800;

    letter-spacing: -0.07em;

    line-height: 0.95;
}


.legal-hero h1 span {
    color: var(--brand-orange);
}


.legal-hero p {
    max-width: 690px;

    margin-top: 26px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 15px;

    line-height: 1.8;
}


.legal-update-date {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 30px;

    padding: 9px 13px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    background-color: rgba(255, 255, 255, 0.05);
}


.legal-update-date span {
    color: rgba(255, 255, 255, 0.42);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;
}


.legal-update-date strong {
    color: var(--white);

    font-size: 10px;

    font-weight: 800;
}


/* Legal content */

.legal-content-section {
    padding: 90px 0 110px;
}


/* Navigation */

.legal-navigation {
    position: sticky;

    top: 120px;

    padding: 21px;

    border: 1px solid var(--border-color);

    border-radius: 18px;

    background-color: var(--background);
}


.legal-navigation-title {
    display: block;

    margin-bottom: 15px;

    color: var(--dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.legal-navigation nav {
    display: grid;
}


.legal-navigation a {
    padding: 9px 0;

    border-bottom: 1px solid var(--border-color);

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 600;

    transition:
        color var(--transition),
        padding-left var(--transition);
}


.legal-navigation a:last-child {
    border-bottom: 0;
}


.legal-navigation a:hover {
    padding-left: 6px;

    color: var(--brand-orange);
}


/* Document */

.legal-document {
    max-width: 820px;

    margin-left: auto;
}


.legal-document-section {
    padding-bottom: 45px;

    margin-bottom: 45px;

    border-bottom: 1px solid var(--border-color);

    scroll-margin-top: 120px;
}


.legal-document-section:last-child {
    margin-bottom: 0;

    border-bottom: 0;
}


.legal-section-number {
    display: block;

    margin-bottom: 12px;

    color: var(--brand-orange);

    font-size: 10px;

    font-weight: 800;
}


.legal-document h2 {
    margin-bottom: 20px;

    color: var(--dark);

    font-size: 30px;

    font-weight: 800;

    letter-spacing: -0.04em;
}


.legal-document p {
    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.9;
}


.legal-document ul {
    display: grid;

    gap: 10px;

    padding: 0;

    margin: 22px 0;

    list-style: none;
}


.legal-document li {
    position: relative;

    padding-left: 24px;

    color: var(--text-color);

    font-size: 12px;

    line-height: 1.7;
}


.legal-document li::before {
    position: absolute;

    top: 8px;
    left: 0;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background-color: var(--brand-orange);

    content: "";
}


.legal-information-box {
    margin-top: 25px;

    padding: 22px;

    border-left: 4px solid var(--brand-orange);

    border-radius: 0 15px 15px 0;

    background-color: var(--surface-soft);
}


.legal-information-box strong {
    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 12px;

    font-weight: 800;
}


.legal-information-box p {
    margin: 0;

    font-size: 12px;
}


/* Contact information */

.legal-contact-details {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 25px;
}


.legal-contact-details>div {
    padding: 18px;

    border: 1px solid var(--border-color);

    border-radius: 14px;

    background-color: var(--background);
}


.legal-contact-details>div:last-child {
    grid-column: 1 / -1;
}


.legal-contact-details span {
    display: block;

    margin-bottom: 6px;

    color: var(--brand-orange);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.legal-contact-details a,
.legal-contact-details address {
    margin: 0;

    color: var(--dark);

    font-size: 11px;

    font-style: normal;

    font-weight: 700;

    line-height: 1.7;
}


/* Legal footer */

.legal-footer {
    border-top: 1px solid var(--border-color);

    background-color: var(--background);
}


.legal-footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-height: 80px;
}


.legal-footer p {
    margin: 0;

    color: var(--text-muted);

    font-size: 10px;
}


.legal-footer-inner>div {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}


.legal-footer a {
    color: var(--text-muted);

    font-size: 10px;

    font-weight: 600;

    transition: color var(--transition);
}


.legal-footer a:hover,
.legal-footer a[aria-current="page"] {
    color: var(--brand-orange);
}

/* Link inside legal content */

.legal-inline-link {
    color: var(--brand-orange);

    font-weight: 800;

    text-decoration: underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 3px;
}


.legal-inline-link:hover {
    color: var(--brand-orange-dark);
}