/* =============================================
   Dizpoz — Main Stylesheet
   Brand: #00a650 (Green) | #8ec63f (Lime)
   Dark: #2c3323 | Body: #4a503f
   Fonts: Montserrat (headings), Hind (body), Bitter (buttons)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&family=Bitter:wght@400;600;700&display=swap');

/* ── Reset & Base ──────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Hind', sans-serif;
    font-weight: 400;
    color: #4a503f;
    margin: 0;
    padding: 0;
    background: #fff;
}

a, a:hover {
    text-decoration: none;
    transition: all 0.25s ease;
    color: inherit;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #2c3323;
    margin: 0 0 1rem;
    line-height: 1.1;
}

h1 { font-size: 52px; }
h2 { font-size: 44px; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }

p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

/* ── Buttons ────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 176px;
    height: 48px;
    border-radius: 0;
    padding: 0 24px;
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: 2px solid #00a650;
    background: transparent;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-primary {
    color: #00a650;
    border-color: #00a650;
    background: transparent;
}
.btn-primary:hover {
    background-color: #00a650;
    color: #fff;
    border-color: #00a650;
}

.btn-solid {
    background: #00a650;
    color: #fff;
    border-color: #00a650;
}
.btn-solid:hover {
    background: transparent;
    color: #00a650;
    border-color: #00a650;
}

.btn-outline-white {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    background: transparent;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.btn-light {
    color: #fff;
    border-color: #8ec63f;
    background: transparent;
}
.btn-light:hover {
    background: #8ec63f;
    color: #2c3323;
    border-color: #8ec63f;
}

.btn-lg {
    min-width: 220px;
    height: 56px;
    font-size: 16px;
}

/* ── Layout Helpers ─────────────────────────── */
.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.section-bg-light {
    background-color: #f5f7f0;
}

.section-bg-dark {
    background-color: #2c3323;
}

.section-bg-green {
    background-color: #00a650;
}

.section-title {
    margin-bottom: 56px;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title p {
    font-size: 19px;
    font-weight: 400;
    color: #4a503f;
    max-width: 580px;
    line-height: 1.6;
}

.section-title.centered {
    text-align: center;
}

.section-title.centered p {
    margin: 0 auto;
}

.accent {
    color: #00a650;
}

.accent-lime {
    color: #8ec63f;
}

/* ── Accent bar above headings ─────────────── */
.accent-bar {
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #00a650, #8ec63f);
    margin-bottom: 24px;
}

.accent-bar.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ── Navigation ─────────────────────────────── */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8d8;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(44,51,35,0.08);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header .navbar-brand img {
    height: 52px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4a503f;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a650;
    transition: width 0.25s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: #00a650;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2c3323;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-phone:hover {
    color: #00a650;
}

.header-phone .phone-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #2c3323;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2c3323;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: #8ec63f;
}

.mobile-nav .mobile-phone {
    font-size: 18px;
    color: #8ec63f;
    margin-top: 12px;
}

.mobile-nav .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav .mobile-close svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

/* ── Hero Section ──────────────────────────── */
.hero {
    padding: 90px 0 80px;
    overflow: hidden;
    background: #fff;
}

.hero-content {
    max-width: 580px;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.0;
    margin-bottom: 24px;
    color: #2c3323;
}

.hero-content h1 .accent {
    color: #00a650;
}

.hero-content p.hero-sub {
    font-size: 19px;
    font-weight: 400;
    color: #4a503f;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.hero-tel {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #4a503f;
}

.hero-tel strong {
    color: #00a650;
}

.hero-tel:hover {
    color: #00a650;
}

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

.hero-img img {
    max-width: 100%;
    border-radius: 0;
    object-fit: cover;
}

/* ── Page Hero (inner pages) ───────────────── */
.page-hero {
    background: #2c3323;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,166,80,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    color: #fff;
    font-size: 44px;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 560px;
    margin: 0;
}

.page-hero .accent-bar {
    margin-bottom: 20px;
}

/* ── Services Cards ──────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.service-card {
    background: #f5f7f0;
    padding: 36px 28px;
    border-left: 4px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    position: relative;
}

.service-card:hover {
    border-left-color: #00a650;
    background: #fff;
    box-shadow: 0 4px 24px rgba(44,51,35,0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00a650, #8ec63f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
}

.service-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #2c3323;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: #4a503f;
    margin: 0;
    line-height: 1.6;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #00a650;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 16px;
}

.service-card .service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.service-card:hover .service-link svg {
    transform: translateX(3px);
}

.size-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.size-badge {
    display: inline-block;
    border: 1px solid #00a650;
    padding: 3px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #00a650;
    letter-spacing: 0.04em;
}

/* ── Industries Grid ────────────────────────── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.industry-card {
    background: #2c3323;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease;
    cursor: default;
}

.industry-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a650, #8ec63f);
    transition: width 0.3s ease;
}

.industry-card:hover::before {
    width: 100%;
}

.industry-card:hover {
    background: #3a4530;
}

.industry-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.industry-card h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.industry-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ── Why Dizpoz ────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 64px;
    margin-top: 48px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #00a650, #8ec63f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.benefit-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3323;
    margin-bottom: 8px;
}

.benefit-body p {
    font-size: 16px;
    color: #4a503f;
    margin: 0;
    line-height: 1.6;
}

/* ── Stat Callout ───────────────────────────── */
.stat-callout {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 48px;
    background: #2c3323;
    margin-top: 60px;
}

.stat-callout .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #8ec63f;
    letter-spacing: -3px;
    line-height: 1;
    white-space: nowrap;
}

.stat-callout .stat-label {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.stat-callout .stat-label strong {
    color: #fff;
}

/* ── How It Works Steps ──────────────────────── */
.steps-section {
    background: #f5f7f0;
}

.steps-row {
    display: flex;
    gap: 0;
    position: relative;
    margin-top: 48px;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.666% + 36px);
    right: calc(16.666% + 36px);
    height: 2px;
    background: linear-gradient(90deg, #00a650, #8ec63f);
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    background: #2c3323;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #8ec63f;
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3323;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    color: #4a503f;
    margin: 0;
}

/* ── Quote Form Section ──────────────────────── */
.quote-form-section {
    background: #2c3323;
    padding: 100px 0;
    position: relative;
}

.quote-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,166,80,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.quote-form-section .section-title h2 {
    color: #fff;
}

.quote-form-section .section-title p {
    color: rgba(255,255,255,0.75);
}

.quote-form-wrapper {
    background: #fff;
    padding: 56px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.quote-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a650, #8ec63f);
}

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2c3323;
    margin-bottom: 6px;
}

.form-label .required {
    color: #00a650;
    margin-left: 2px;
}

.form-control {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-family: 'Hind', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #2c3323;
    border: 1px solid #d4ddc8;
    border-radius: 0;
    background: #fafbf8;
    transition: border-color 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: #00a650;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,166,80,0.08);
}

.form-control.error {
    border-color: #c0392b;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232c3323' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #fafbf8;
    padding-right: 36px;
}

textarea.form-control {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
    min-height: 90px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-submit {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
}

/* ── Contact Info Block ───────────────────────── */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.contact-info-card {
    background: #f5f7f0;
    padding: 40px 32px;
    text-align: center;
    transition: background 0.25s ease;
}

.contact-info-card:hover {
    background: #edf2e4;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00a650, #8ec63f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3323;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-card p, .contact-info-card a {
    font-size: 16px;
    color: #4a503f;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: #00a650;
}

/* ── CTA Banner ──────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #00a650 0%, #8ec63f 100%);
    padding: 72px 0;
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-banner .btn {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.cta-banner .btn:hover {
    background: #fff;
    color: #00a650;
    border-color: #fff;
}

.cta-banner .btn-solid-white {
    background: #fff;
    color: #00a650;
    border-color: #fff;
}

.cta-banner .btn-solid-white:hover {
    background: transparent;
    color: #fff;
}

/* ── Sister Company Banner ───────────────────── */
.sister-banner {
    background: #f5f7f0;
    border-top: 3px solid #8ec63f;
    padding: 28px 0;
}

.sister-banner .sister-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.sister-banner p {
    margin: 0;
    font-size: 15px;
    color: #4a503f;
}

.sister-banner a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #00a650;
    font-size: 15px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s ease;
}

.sister-banner a:hover {
    text-decoration-color: #00a650;
}

/* ── About Page ──────────────────────────────── */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.about-story-text .accent-bar {
    margin-bottom: 20px;
}

.about-story-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-story-text p {
    font-size: 17px;
    color: #4a503f;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-story-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.value-card {
    padding: 40px 28px;
    background: #f5f7f0;
    border-top: 4px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.value-card:hover {
    border-top-color: #00a650;
    background: #fff;
}

.value-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #d4ddc8;
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3323;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    color: #4a503f;
    margin: 0;
    line-height: 1.6;
}

.team-section {
    background: #f5f7f0;
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: #fff;
    padding: 0;
}

.team-card-photo {
    background: linear-gradient(135deg, #2c3323 0%, #4a503f 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-photo .initials {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #8ec63f;
    opacity: 0.4;
}

.team-card-body {
    padding: 32px;
    border-top: 4px solid #00a650;
}

.team-card-body h3 {
    font-size: 26px;
    font-weight: 800;
    color: #2c3323;
    margin-bottom: 4px;
}

.team-card-body .role {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00a650;
    margin-bottom: 16px;
    display: block;
}

.team-card-body p {
    font-size: 15px;
    color: #4a503f;
    line-height: 1.7;
}

/* ── Service Detail (services.html) ─────────── */
.service-detail {
    padding: 100px 0;
}

.service-detail:nth-child(even) {
    background: #f5f7f0;
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-inner {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-text {
    direction: ltr;
}

.service-detail-visual {
    direction: ltr;
    background: #2c3323;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.service-detail-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,166,80,0.15), transparent);
}

.service-visual-icon {
    font-size: 72px;
    line-height: 1;
    position: relative;
}

.service-visual-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.icon-emoji img,
.industry-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-detail-visual h3 {
    color: #fff;
    font-size: 22px;
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 17px;
    color: #4a503f;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.service-detail-text ul li {
    font-size: 15px;
    color: #4a503f;
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid #e2e8d8;
}

.service-detail-text ul li:first-child {
    border-top: 1px solid #e2e8d8;
}

.service-detail-text ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #00a650;
}

/* ── Industries Detail ──────────────────────── */
.industry-section {
    padding: 80px 0;
    border-bottom: 1px solid #e2e8d8;
}

.industry-section:last-child {
    border-bottom: none;
}

.industry-section-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
}

.industry-icon-large {
    background: #2c3323;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.industry-icon-large .icon-emoji {
    font-size: 56px;
    line-height: 1;
}

.industry-icon-large span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8ec63f;
}

.industry-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.industry-content p {
    font-size: 16px;
    color: #4a503f;
    line-height: 1.7;
    margin-bottom: 20px;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.industry-feature-tag {
    display: inline-block;
    background: #f5f7f0;
    border: 1px solid #d4ddc8;
    padding: 6px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #4a503f;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
}

.industry-feature-tag:hover {
    border-color: #00a650;
    color: #00a650;
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
    background: #2c3323;
    padding: 56px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .footer-logo {
    height: 52px;
    margin-bottom: 20px;
    display: block;
    /* invert logo to white for dark bg */
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.7;
    max-width: 280px;
}

.footer-brand .footer-contact {
    margin-top: 16px;
}

.footer-contact a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #8ec63f;
}

.footer-links h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8ec63f;
    margin-bottom: 18px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom .footer-legal-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-bottom .footer-legal-links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-bottom .footer-legal-links a:hover {
    color: #8ec63f;
}

/* ── Privacy / Terms Pages ─────────────────── */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p, .legal-content li {
    font-size: 16px;
    color: #4a503f;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

/* ── Utility ─────────────────────────────────── */
.text-accent { color: #00a650; }
.text-lime { color: #8ec63f; }
.text-dark { color: #2c3323; }
.text-white { color: #fff; }

.divider {
    height: 1px;
    background: #e2e8d8;
    margin: 0;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Container override */
.container {
    max-width: 1200px;
    padding-left: 24px;
    padding-right: 24px;
}
