:root {
    --bg: #f7f3ee;
    --bg-soft: #f4ece0;
    --surface: #fffdf9;
    --surface-strong: #f5efe5;
    --primary: #d98f2b;
    --primary-dark: #b46d1b;
    --secondary: #2b2118;
    --secondary-soft: #4a3826;
    --accent: #2da8a0;
    --accent-soft: rgba(45, 168, 160, 0.12);
    --text: #241f1a;
    --muted: #6b5f4f;
    --line: rgba(43, 33, 24, 0.14);
    --shadow: 0 24px 60px rgba(43, 33, 24, 0.12);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f7f3ee 0%, #faf5ec 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
}

.topbar {
    background: var(--surface-strong);
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 600;
}

.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 42px;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 28px;
}

.topbar-info a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    transition: color 0.2s ease;
}

.topbar-info a:hover {
    color: var(--secondary);
}

.topbar-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a7a72;
    letter-spacing: 0.01em;
}

.topbar-status .status-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(45, 168, 160, 0.25);
}

.nav-band {
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(43, 33, 24, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-logo {
    height: 46px;
    width: auto;
    display: block;
    animation: logoPulseGlow 2.8s ease-in-out infinite;
}

@keyframes logoPulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(217, 143, 43, 0));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(217, 143, 43, 0.65));
    }
}

.brand-text {
    color: var(--secondary);
    font-size: 1rem;
}

.footer-brand .brand-logo {
    height: 54px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 600;
    color: var(--muted);
}

.main-nav a:not(.btn) {
    position: relative;
    padding: 8px 2px;
    color: var(--muted);
    transition: color 0.2s ease;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-nav a:not(.btn):hover,
.main-nav a.active:not(.btn) {
    color: var(--secondary);
}

.main-nav a:not(.btn):hover::after,
.main-nav a.active:not(.btn)::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.6rem;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 18px 34px rgba(217, 143, 43, 0.28);
}

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

.btn-secondary {
    background: rgba(43, 33, 24, 0.06);
    color: var(--secondary);
    border-color: rgba(43, 33, 24, 0.15);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    padding: 12px 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 10px;
    margin: 5px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 30px 0 160px;
    background:
        radial-gradient(circle at top left, rgba(217, 143, 43, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(45, 168, 160, 0.14), transparent 38%),
        linear-gradient(180deg, #fbf6ec 0%, #f7f0e2 100%);
    color: var(--text);
}

.brand-showcase {
    padding: 64px 0 0;
}

.brand-showcase-inner {
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(217, 143, 43, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(45, 168, 160, 0.12), transparent 38%),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 56px 32px;
    box-shadow: var(--shadow);
}

.brand-showcase-img {
    width: min(100%, 460px);
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 16px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
}

.hero .eyebrow {
    color: var(--primary-dark);
}

.hero-centered {
    text-align: center;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-inner h1 {
    margin: 0 auto;
    max-width: 800px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: var(--secondary);
}

.hero-text {
    margin: 20px auto 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-tagline {
    display: inline-block;
    margin: 22px 0 0;
    padding-bottom: 8px;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
    border-bottom: 4px solid var(--primary);
    border-radius: 2px;
}

.hero-search {
    display: flex;
    align-items: center;
    width: min(100%, 720px);
    margin: 36px auto 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px;
    box-shadow: 0 24px 50px rgba(43, 33, 24, 0.14);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-search:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 28px 60px rgba(43, 33, 24, 0.18), 0 0 0 3px rgba(217, 143, 43, 0.35);
}

.hero-search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    padding: 10px 16px;
    text-align: left;
}

.hero-search-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.hero-search-field select,
.hero-search-field input {
    border: none;
    outline: none;
    background: transparent;
    font: inherit;
    color: var(--text);
    width: 100%;
    min-width: 0;
}

.hero-search-field select {
    cursor: pointer;
}

.hero-search-divider {
    width: 1px;
    align-self: stretch;
    margin: 6px 0;
    background: var(--line);
}

.hero-search-btn {
    flex-shrink: 0;
    padding: 0.85rem 1.6rem;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: var(--text);
    font-weight: 600;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    margin-top: 32px;
    font-size: 0.92rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(45, 168, 160, 0.2);
}

.category-panels {
    padding: 0 0 24px;
    background: linear-gradient(180deg, #faf5ec 0%, var(--bg) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: -110px;
    position: relative;
    z-index: 2;
}

.category-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(43, 33, 24, 0.18);
}

.category-head {
    padding: 18px 24px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--secondary);
}

.category-a .category-head {
    background: rgba(45, 168, 160, 0.16);
}

.category-b .category-head {
    background: rgba(217, 143, 43, 0.16);
}

.category-c .category-head {
    background: rgba(43, 33, 24, 0.07);
}

.category-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 24px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    transition: transform 0.2s ease, color 0.2s ease;
}

.category-item:hover {
    transform: translateY(-3px);
    color: var(--secondary);
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-soft);
    font-size: 1.4rem;
}

.category-viewall {
    display: block;
    margin-top: auto;
    padding: 16px 24px 22px;
    color: var(--secondary-soft);
    font-weight: 700;
    font-size: 0.9rem;
    border-top: 1px solid var(--line);
}

.category-viewall:hover {
    color: var(--primary-dark);
}

.stats {
    padding: 18px 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding: 28px 24px;
    margin-top: -8px;
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.stats-grid div {
    text-align: center;
    color: #fff;
}

.stats-grid strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.06em;
    color: #fff;
}

.stats-grid span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.intro-band {
    padding-top: 70px;
    padding-bottom: 0;
}

.split-intro {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: end;
    gap: 30px;
    padding: 26px 0 0;
}

.split-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.05em;
    color: var(--secondary);
}

.split-intro p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 44px;
    padding: 30px 0 0;
}

.intro-photo {
    position: relative;
    min-height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-photo-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(30, 22, 14, 0.82);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
}

.intro-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.05em;
    color: var(--secondary);
}

.intro-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    max-width: 560px;
}

.intro-mini-stats {
    display: flex;
    gap: 34px;
    margin-top: 26px;
}

.intro-mini-stats strong {
    display: block;
    font-size: 1.7rem;
    letter-spacing: -0.05em;
    color: var(--secondary);
}

.intro-mini-stats span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.section {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading h2 {
    margin: 0;
    max-width: 700px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    scroll-margin-top: 140px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    box-shadow: 0 16px 30px rgba(43, 33, 24, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(217, 143, 43, 0.12);
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.32rem;
    letter-spacing: -0.04em;
    color: var(--secondary);
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.benefits-panel {
    background: linear-gradient(180deg, rgba(217, 143, 43, 0.04), rgba(45, 168, 160, 0.05));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: 0 12px 25px rgba(43, 33, 24, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(43, 33, 24, 0.06);
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 18px;
}

.benefit-box h3 {
    margin: 0 0 10px;
    color: var(--secondary);
}

.benefit-box p {
    margin: 0;
    color: var(--muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-card {
    position: relative;
    min-height: 540px;
    width: min(100%, 500px);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(30, 22, 14, 0.14), rgba(30, 22, 14, 0.6)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    background-size: cover, cover;
    box-shadow: var(--shadow);
    padding: 28px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease, background-size 0.6s ease;
}

.image-card:hover {
    transform: translateY(-4px);
    background-size: cover, 112%;
}

.badge {
    position: absolute;
    top: 28px;
    left: 28px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.8rem;
}

.image-card h3 {
    margin: 0;
    max-width: 260px;
    color: #fff;
    font-size: 2.1rem;
    line-height: 1.1;
    letter-spacing: -0.06em;
}

.about-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.05em;
    color: var(--secondary);
}

.about-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.feature-list div {
    display: grid;
    gap: 4px;
    padding: 18px 18px 18px 22px;
    border-left: 3px solid var(--primary);
    background: rgba(217, 143, 43, 0.05);
    border-radius: 0 12px 12px 0;
}

.feature-list strong {
    font-size: 1.03rem;
    color: var(--secondary);
}

.feature-list span {
    color: var(--muted);
}

.industries {
    background: rgba(255, 255, 255, 0.35);
}

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

.industry-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: 0 12px 25px rgba(43, 33, 24, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-card h3 {
    margin: 0 0 10px;
    color: var(--secondary);
}

.industry-card p {
    margin: 0;
    color: var(--muted);
}

.industry-card:not(.industry-photo):hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.industry-photo {
    position: relative;
    min-height: 230px;
    padding: 0;
    border: none;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 22, 14, 0.05) 0%, rgba(30, 22, 14, 0.9) 100%);
}

.industry-photo:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.industry-photo-content {
    position: relative;
    z-index: 1;
    padding: 22px 20px;
}

.industry-photo h3 {
    color: #fff;
}

.industry-photo p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.process {
    background: linear-gradient(180deg, rgba(43, 33, 24, 0.04), rgba(45, 168, 160, 0.04));
}

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

.step-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: 0 14px 28px rgba(43, 33, 24, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(45, 168, 160, 0.12);
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 16px;
    transition: transform 0.25s ease;
}

.step-card:hover span {
    transform: scale(1.08);
}

.step-card h3 {
    margin: 0 0 10px;
    letter-spacing: -0.04em;
    color: var(--secondary);
}

.step-card p {
    margin: 0;
    color: var(--muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

blockquote {
    margin: 0;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 28px rgba(43, 33, 24, 0.04);
    padding: 24px 22px;
    font-size: 1.02rem;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

blockquote:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

blockquote footer {
    display: block;
    margin-top: 18px;
    color: var(--secondary);
    font-weight: 700;
}

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

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 24px 60px rgba(180, 109, 27, 0.3);
}

.cta-box h2 {
    margin: 0;
    color: #fff;
    max-width: 700px;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.site-footer {
    background: var(--surface-strong);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
    gap: 40px;
    padding: 64px 0 44px;
}

.footer-tagline {
    margin: 20px 0 20px;
    max-width: 320px;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(45, 168, 160, 0.14);
    color: #1a7a72;
    font-weight: 700;
    font-size: 0.8rem;
}

.footer-status .status-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(45, 168, 160, 0.25);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(43, 33, 24, 0.06);
    color: var(--secondary);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-contact-icon-whatsapp {
    color: #25d366;
}

.footer-contact-icon-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Floating action stack (WhatsApp, call, social toggle) */
.fab-stack {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.fab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(43, 33, 24, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fab-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.fab-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.fab-whatsapp {
    background: #25d366;
    color: #fff;
    animation: fabPulse 2.6s ease-in-out infinite;
}

@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.fab-call {
    display: none;
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 50;
    width: 54px;
    height: 54px;
    background: var(--primary);
    color: #fff;
}

.fab-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    background: var(--secondary);
    color: #fff;
}

.fab-toggle svg {
    position: absolute;
    width: 18px;
    height: 18px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab-toggle .fab-icon-close {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
}

.fab-toggle[aria-expanded="true"] .fab-icon-open {
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
}

.fab-toggle[aria-expanded="true"] .fab-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.fab-social-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.fab-social-menu.is-open {
    max-height: 320px;
    opacity: 1;
}

.fab-social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--secondary);
    box-shadow: 0 10px 22px rgba(43, 33, 24, 0.14);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.fab-social-item:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.fab-social-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 760px) {
    .fab-call {
        display: inline-flex;
        left: 16px;
        bottom: 16px;
    }

    .fab-stack {
        right: 16px;
        bottom: 16px;
        gap: 12px;
    }
}

.footer-col h3 {
    margin: 0 0 20px;
    color: var(--secondary);
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-nav {
    display: grid;
    gap: 13px;
}

.footer-nav a {
    display: inline-block;
    color: var(--muted);
    font-size: 0.94rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(43, 33, 24, 0.06);
    font-size: 0.94rem;
}

.footer-contact a,
.footer-contact span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.footer-legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--muted);
    font-size: 0.86rem;
    transition: color 0.2s ease;
}

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

.footer-top {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-top:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Service card feature checklists */
.service-features {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.service-features li {
    padding-left: 22px;
    position: relative;
    color: var(--muted);
    font-size: 0.94rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

/* Values / approach grids (reuses benefit-box look at 4-up) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* Credentials */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.credential-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(43, 33, 24, 0.08);
    border-color: rgba(217, 143, 43, 0.35);
}

.credential-item .icon {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
}

.credential-item strong {
    display: block;
    color: var(--secondary);
}

.credential-item span {
    color: var(--muted);
    font-size: 0.92rem;
}

/* Coverage / plan cards */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.plan-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    box-shadow: 0 14px 28px rgba(43, 33, 24, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:not(.featured):hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.plan-card.featured {
    background: linear-gradient(180deg, rgba(217, 143, 43, 0.08), rgba(255, 255, 255, 0.92));
    border-color: rgba(217, 143, 43, 0.35);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.plan-card.featured:hover {
    transform: translateY(-10px);
}

.plan-tag {
    align-self: flex-start;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.plan-card h3 {
    margin: 0 0 8px;
    color: var(--secondary);
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.plan-desc {
    margin: 0 0 22px;
    color: var(--muted);
}

.plan-features {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--text);
    flex-grow: 1;
}

.plan-features li {
    padding-left: 26px;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

/* Results / case highlights */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.case-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    box-shadow: 0 14px 28px rgba(43, 33, 24, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.case-metric {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.case-card h3 {
    margin: 0 0 8px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.case-card p {
    margin: 0;
    color: var(--muted);
}

/* Testimonial tag */
.quote-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(45, 168, 160, 0.12);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* FAQ accordion (native details/summary, no JS) */
.faq-list {
    display: grid;
    gap: 14px;
    max-width: 860px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 4px 26px;
    box-shadow: 0 12px 25px rgba(43, 33, 24, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(217, 143, 43, 0.35);
    box-shadow: 0 16px 32px rgba(43, 33, 24, 0.08);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.04rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0 0 22px;
    color: var(--muted);
    animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card,
.info-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: 0 16px 30px rgba(43, 33, 24, 0.04);
}

.contact-form-card h2,
.info-card h3 {
    margin: 0 0 6px;
    color: var(--secondary);
    letter-spacing: -0.03em;
}

.contact-form-card > p,
.info-card > p {
    margin: 0 0 26px;
    color: var(--muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font: inherit;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
}

.form-note {
    margin: 6px 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.form-success {
    background: rgba(45, 168, 160, 0.1);
    border: 1px solid rgba(45, 168, 160, 0.3);
    color: var(--secondary);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    font-weight: 600;
}

.form-error {
    background: rgba(217, 84, 43, 0.08);
    border: 1px solid rgba(217, 84, 43, 0.3);
    color: #8a3a1c;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 20px;
}

.info-list li {
    display: grid;
    gap: 4px;
}

.info-list strong {
    color: var(--secondary);
}

.info-list span {
    color: var(--muted);
}

.info-divider {
    margin: 26px 0;
    border: none;
    border-top: 1px solid var(--line);
}

/* Scroll-reveal (see assets/js/main.js). Uses the `translate` property
   (independent of `transform`) so it never fights with hover-lift effects
   that animate `transform` on the same elements. */
.reveal {
    opacity: 0;
    translate: 0 24px;
    transition: opacity 0.6s ease, translate 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    translate: 0 0;
}

@media (max-width: 980px) {
    .about-grid,
    .services-grid,
    .benefits-grid,
    .process-grid,
    .industry-grid,
    .testimonial-grid,
    .split-intro,
    .values-grid,
    .plans-grid,
    .case-grid,
    .contact-layout,
    .footer-grid,
    .category-grid,
    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .split-intro,
    .contact-layout,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .hero {
        padding-bottom: 120px;
    }

    .category-grid {
        margin-top: -80px;
    }
}

@media (max-width: 760px) {
    .topbar {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 20px 20px 24px;
        background: #fffdf9;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 40px rgba(43, 33, 24, 0.14);
    }

    .main-nav a:not(.btn) {
        width: 100%;
        padding: 12px 2px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-cta {
        margin: 10px 0 0;
    }

    .services-grid,
    .benefits-grid,
    .process-grid,
    .industry-grid,
    .testimonial-grid,
    .stats-grid,
    .values-grid,
    .credentials-grid,
    .plans-grid,
    .case-grid,
    .form-row,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 0 60px;
    }

    .category-grid {
        margin-top: 32px;
    }

    .hero-search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        padding: 12px;
    }

    .hero-search-field {
        padding: 10px 8px;
    }

    .hero-search-divider {
        display: none;
    }

    .hero-search-btn {
        width: 100%;
        margin-top: 6px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 48px 0 32px;
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .plan-card.featured {
        transform: none;
    }

    /* Smaller type scale on mobile — every rem-based size shrinks with it */
    html {
        font-size: 15px;
    }

    /* Tighter sections and less secondary content, so mobile stays scannable */
    .section {
        padding: 56px 0;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .intro-band {
        padding-top: 48px;
    }

    .service-features,
    .intro-mini-stats,
    .hero-trust-list {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
