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

:root {
    /* base */
    --bg: #F1F0E6;
    --bg-light: #F6F5EC;
    --white: #FFFFFF;
    --black: #1C2B20;
    --gray: #8B8F7E;
    --gray-light: #979C86;
    --lighter-gray: #F5F6F3;

    /* greens */
    --green: #38553F;
    --green-hover: #2C4432;
    --dark-green: #24392A;
    --light-green: #EAF0E7;

    /* accents */
    --signal: #2E6E8E;
    --wheat: #C79A3C;
    --wheat-bg: #FBF3DF;

    /* structure */
    --line: #DAD9C9;
    --radius: 12px;
    --radius-card: 16px;
    --radius-badge: 14px;
    --font: 'Poppins', sans-serif;

    /* status */
    --dark-red: #8C2F2A;

    /* one shadow language for every card on the site */
    --shadow-card: 0 4px 32px rgba(51, 51, 51, 0.1);
    --shadow-card-hover: 0 10px 36px rgba(51, 51, 51, 0.14);
}

html {
    /* prevents any stray fixed-width element from creating a
       horizontal scrollbar / jump on any breakpoint */
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--black);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

/* ===== BACKGROUND OPTIONS ===== */
.bg-plain {
    background: var(--bg);
}

.bg-dots {
    background-color: var(--bg);
    background-image: radial-gradient(var(--gray-light) 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: -1px -1px;
}

.bg-contour {
    background-color: var(--bg);
    background-image:
        repeating-radial-gradient(circle at 15% 20%,
            transparent 0, transparent 70px, var(--line) 71px, transparent 72px),
        repeating-radial-gradient(circle at 85% 75%,
            transparent 0, transparent 90px, var(--line) 91px, transparent 92px);
    background-size: 100% 100%;
}

.bg-square {
    background-color: var(--bg);
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: -1px -1px;
}

.bg-diagonal {
    background-color: var(--bg);
    background-image: repeating-linear-gradient(45deg,
            var(--line) 0, var(--line) 1px,
            transparent 1px, transparent 26px);
}

.bg-glow {
    background-color: var(--bg);
    background-image:
        radial-gradient(60% 50% at 15% 0%, rgba(56, 85, 63, 0.10), transparent 70%),
        radial-gradient(50% 40% at 100% 20%, rgba(199, 154, 60, 0.08), transparent 70%);
}

.bg-grid-glow {
    background-color: var(--bg);
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px),
        radial-gradient(60% 45% at 50% 0%, rgba(56, 85, 63, 0.08), transparent 70%);
    background-size: 32px 32px, 32px 32px, 100% 100%;
    background-position: -1px -1px, -1px -1px, 0 0;
}

.bg-topo {
    background-color: var(--bg);
    background-image:
        repeating-radial-gradient(circle at 10% 15%, transparent 0, transparent 40px, var(--line) 41px, transparent 42px),
        repeating-radial-gradient(circle at 90% 10%, transparent 0, transparent 55px, var(--line) 56px, transparent 57px),
        repeating-radial-gradient(circle at 50% 90%, transparent 0, transparent 65px, var(--line) 66px, transparent 67px);
}

.bg-scatter {
    background-color: var(--bg);
    background-image:
        radial-gradient(var(--gray-light) 1px, transparent 1px),
        radial-gradient(var(--line) 1.5px, transparent 1.5px);
    background-size: 28px 28px, 76px 76px;
    background-position: -1px -1px, 20px 40px;
}

/* ===== PAGES ===== */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ===== NAVBAR ===== */
nav {
    display: flex;
    align-items: center;
    padding: 0 48px;
    height: 64px;
    top: 0;
    z-index: 100;
}

.site-navbar {
    background: rgba(241, 240, 230, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    text-decoration: none;
    margin-right: 48px;
    cursor: pointer;
}

.btn-login {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    background: none;
    border: none;
    cursor: pointer;
}

.btn-signup {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--green);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-signup:hover {
    background: var(--green-hover);
}

/* ===== SHARED ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.placeholder-img {
    border-radius: var(--radius);
    object-fit: cover;
}

.title {
    color: var(--black);
}

/* FIX: .btn-primary / .btn-secondary are used as <a> tags in the markup.
   Anchors are inline by default, so `width: 100%` set on them in the
   mobile media queries below had no effect until display is set here. */
.btn-primary,
.btn-secondary {
    display: inline-block;
    text-align: center;
}

/* ===== HOME PAGE ===== */
/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 48px 60px;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

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

.hero-trial {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--green-hover);
}

.btn-secondary {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    background: none;
    border: 1.5px solid #ccc;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
}

.hero-image {
    padding: 50px;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

/* Trusted */
.trusted {
    text-align: center;
    padding: 32px 48px 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 80px;
}

.trusted p {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 30px;
    font-weight: 600;
    color: var(--gray);
}

/* Feature cards */
.feature-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    align-items: center;
    align-self: stretch;
    width: 1150px;
    height: 478px;
    box-shadow: var(--shadow-card);
    gap: 48px;
    margin: 0 48px 32px;
}

.feature-card-content {
    flex: 1;
    min-width: 0;
}

.feature-card-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-card-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 26px;
    margin-bottom: 24px;
}

.feature-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.other-card {
    border-radius: 16px;
    padding: 48px;
    display: flex;
    align-items: center;
    align-self: stretch;
    width: 1150px;
    height: 478px;
    gap: 48px;
    margin: 0 48px 32px;
    background: var(--lighter-gray);
    box-shadow: var(--shadow-card);
}

.other-card img {
    width: auto;
    height: 100%;
    max-height: 380px;
    border-radius: 12px;
    flex-shrink: 0;
}

.other-card-content {
    flex: 1;
    min-width: 0;
}

.other-card-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.other-card-content p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 24px;
    text-align: left;
    line-height: 21px;
    word-break: break-word;
}

/* Steps */
.how-section-wrapper {
    max-width: 1100px;
    margin: 0 auto 32px;
    padding: 0 48px;
    scroll-margin-top: 84px;
}

.how-section {
    border-radius: 16px;
    padding: 0 48px 48px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    overflow: visible;
    position: relative;
    margin-top: 60px;
    box-shadow: var(--shadow-card);
}

.how-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.how-title {
    margin-top: 50px;
}

.how-left-img-wrap {
    margin-bottom: 10px;
    width: 100%;
}

.how-left-img-wrap img {
    object-fit: contain;
    display: block;
    width: 100%;
    height: auto;
}

.how-left h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.how-left p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.how-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 48px;
    min-width: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
}

.step-number {
    display: none;
}

.step-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
}

.step-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 320px;
}

.step-divider {
    height: 1px;
    background-color: var(--line);
    border-radius: 2px;
}

/* Testimonials */
.testimonials {
    padding: 80px 48px;
}

.testimonials h2 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials .sub {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 48px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 1;
    flex-grow: 1;
    align-self: stretch;
    width: 100%;
    min-height: 270px;
    opacity: 1;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 0px;
}

.testi-card blockquote {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
    text-align: center;
    letter-spacing: 0px;
    line-height: 26px;
}

.testi-stars {
    color: rgb(49, 100, 244);
    font-size: 20px;
    margin-bottom: 8px;
    text-align: center;
}

.testi-name {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.testi-role {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
}

/* CTA Banner */
.cta-banner {
    border-radius: 16px;
    margin-top: 40px !important;
    padding: 56px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1151px;
    height: 451px;
    background-color: var(--white);
    box-shadow: var(--shadow-card);
    border: 0px;
}

.cta-banner h2 {
    font-weight: 600;
    line-height: 62px;
    text-align: left;
    margin-bottom: 8px;
}

.cta-banner p {
    font-size: 18px;
    text-align: left;
    color: var(--black);
    margin-bottom: 28px;
    line-height: 26px;
}

.cta-banner .p {
    font-size: 20px;
    color: var(--black);
}

.cta-banner img {
    width: auto;
    height: 100%;
    max-height: 320px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    text-align: center;
    padding: 80px 48px 40px;
    max-width: 780px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 16px;
    color: var(--black);
    text-align: left;
    letter-spacing: 0px;
    line-height: 1.8;
}

.about-hero p+p {
    margin-top: 20px;
}

.about-img-row {
    display: flex;
    justify-content: center;
    padding: 40px 48px;
}

.about-img-row img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 16px;
}

.mission-section {
    text-align: center;
    padding: 40px 48px;
    max-width: 700px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mission-section p {
    font-size: 16px;
    color: var(--black);
    line-height: 26px;
    text-align: center;
}

.efficiency-section {
    background: var(--bg-light);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
}

.efficiency-section h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    max-width: 300px;
}

/* Team */
.team-section {
    padding: 40px 48px;
    text-align: center;
}

.team-section h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-section .sub {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.team-card .name {
    font-size: 16px;
    font-weight: 600;
}

.team-card .role {
    font-size: 14px;
    color: var(--black);
}

/* ===== PRICING PAGE ===== */
.pricing-hero {
    text-align: center;
    padding: 80px 48px 48px;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.pricing-hero p {
    font-size: 16px;
    color: var(--black);
    max-width: 412px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    line-height: 26px;
    white-space: pre-line;
    word-break: break-word;
    margin-bottom: 20px;
}

.pricing-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 0 48px 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    flex: 1 1 260px;
    max-width: 300px;
    position: relative;
    gap: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    box-shadow: var(--shadow-card);
    border: 0px;
    transition: transform 0.2s;
}

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

.price-card.popular {
    z-index: 1;
    box-shadow: var(--shadow-card);
}

.popular-badge {
    position: absolute;
    top: 14px;
    left: 75%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 24px;
    text-align: center;
    white-space: nowrap;
}

.popular-heading-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 24px;
    width: fit-content;
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-badge);
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.plan-icon i {
    font-size: 18px;
    color: var(--dark-green);
}

.price-card.popular .plan-icon {
    background: var(--green);
}

.price-card.popular .plan-icon i {
    color: var(--light-green);
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.price-plan {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.price-dollar {
    font-size: 32px;
    font-weight: 600;
}

.price-num {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.price-mo {
    font-size: 14px;
    color: var(--gray);
}

.price-desc {
    font-size: 13px;
    color: var(--black);
    text-align: left;
    white-space: pre-line;
    word-break: break-word;
}

.btn-plan {
    font-family: var(--font);
    width: 100%;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-plan-outline {
    background: none;
    border: 1.5px solid #ccc;
    color: var(--black);
}

.btn-plan-outline:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-plan-filled {
    background: var(--green);
    border: none;
    color: #fff;
}

.btn-plan-filled:hover {
    background: var(--green-hover);
}

/* ===== COMPARE FEATURES ===== */
.compare-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 48px;
    font-family: var(--font);
}

.eyebrow {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--signal);
    margin: 0 0 10px;
}

.compare-section h2 {
    font-family: var(--font);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 8px;
    color: var(--black);
}

.compare-sub {
    margin: 0 0 40px;
    color: var(--gray);
    font-size: 16px;
    max-width: 52ch;
}

.table-wrap {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 1px 2px rgba(28, 43, 32, 0.04), 0 12px 32px -18px rgba(28, 43, 32, 0.25);
    border: 1px solid var(--line);
}

.table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    display: none;
}

.grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(150px, 1fr));
    min-width: 920px;
}

.head-cell {
    padding: 28px 20px 18px;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 64px;
    z-index: 2;
    background: var(--white);
    text-align: center;
}

.head-cell.feature-head {
    text-align: left;
}

.plan-eyebrow {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin: 0 0 6px;
}

.plan-title {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--black);
}

.featured-tag {
    display: inline-block;
    font-family: var(--font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--wheat);
    background: var(--wheat-bg);
    border: 1px solid #EBD9AC;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.row-label,
.cell {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-family: var(--font);
}

.row-label {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--black);
}

.cell {
    justify-content: center;
}

.row-shade {
    background: var(--light-green);
}

.plan-name-cell {
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    color: var(--green);
    text-align: center;
}

.best-for-cell {
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    line-height: 1.4;
    padding-top: 18px;
    padding-bottom: 18px;
}

.col-featured {
    background: linear-gradient(180deg, var(--wheat-bg), transparent 40%);
}

.last-row .row-label,
.last-row .cell {
    border-bottom: none;
}

.fa-circle-check {
    color: var(--green);
    font-size: 20px;
}

.fa-circle-xmark {
    color: var(--dark-red);
    font-size: 20px;
}

/* FAQ */
.faq-section {
    padding: 60px 48px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.faq-section img {
    margin: auto;
}

.faq-section h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
}

.faq-item {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
}

.faq-item:last-child {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
}

.faq-chevron {
    font-size: 12px;
    color: var(--gray);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 12px;
    display: none;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.open .faq-answer {
    display: block;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 10px;
    gap: 50px;
}

.contact-image {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.contact-form-area {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.contact-form-area h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-form-area .sub {
    font-size: 16px;
    color: var(--black);
    line-height: 26px;
    margin-bottom: 36px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    font-family: var(--font);
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    font-size: 14px;
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.btn-send {
    font-family: var(--font);
    width: 100%;
    padding: 14px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.btn-send:hover {
    background: var(--green-hover);
}

/* ===== SHARED CARD FAMILY ===== */
.contact-item.card {
    border-radius: var(--radius-card) !important;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-item.card .card-body {
    padding: 28px 32px;
}

.contact-item-body {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-item-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    word-break: break-word;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-badge);
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--light-green);
}

.contact-item:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 48px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-brand .logo {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--black);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 13px;
    color: var(--black);
    cursor: pointer;
}

.footer-col ul li a:hover {
    color: var(--green);
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 48px;
}

.services h2 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.services .sub {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 48px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 2px solid #D8E5DA;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
    padding: 32px;
    flex-shrink: 1;
    flex-grow: 1;
    align-self: stretch;
    width: 100%;
    min-height: 270px;
    opacity: 1;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 18px;
    color: var(--dark-green);
}

.service-name {
    font-size: 1.2rem;
    color: var(--black);
    line-height: 1.2;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

/* =========================================
   GLOBAL RESPONSIVE FIXES
========================================= */

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

.feature-card,
.other-card,
.cta-banner,
.how-section,
.efficiency-section,
.contact-section {
    width: 100%;
    max-width: 1100px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}


/* =========================================
   LARGE TABLETS
   769px - 1024px
========================================= */

@media (max-width: 1024px) {

    .hero,
    .feature-card,
    .other-card,
    .how-section,
    .cta-banner,
    .contact-section,
    .efficiency-section {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .hero-content,
    .feature-card-content,
    .other-card-content,
    .how-left,
    .how-right {
        max-width: 100%;
    }

    /* HERO */

    .hero {
        padding: 120px 40px 60px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-image {
        padding: 30px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

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

    .hero-buttons {
        justify-content: center;
        align-items: center;
        width: 100%;
    }


    /* FEATURE / OTHER CARDS */

    .feature-card,
    .other-card {
        width: calc(100% - 48px);
        margin: 0 auto 32px;
        padding: 40px;
    }

    .feature-card img,
    .other-card img {
        width: 100%;
        max-width: 500px;
        height: auto;
        max-height: none;
        margin: 0 auto;
    }


    /* HOW SECTION */

    .how-section {
        padding: 32px 24px;
        gap: 32px;
        align-items: center;
    }

    .how-left,
    .how-right {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .how-left-img-wrap {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .how-left-img-wrap img {
        max-width: 320px;
        margin: 0 auto;
    }

    .how-right {
        padding-top: 0;
    }

    .step-item {
        align-items: flex-start;
        text-align: left;
        max-width: 380px;
        width: 100%;
    }

    .step-desc {
        max-width: 280px;
        text-align: left;
    }


    /* CTA */

    .cta-banner {
        width: calc(100% - 48px);
        margin: 40px auto 60px !important;
        padding: 50px 60px;
    }

    .cta-banner img {
        width: 100%;
        max-width: 500px;
        height: auto;
        max-height: none;
        margin: 0 auto;
    }


    /* TESTIMONIALS */

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* SERVICES */

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* TEAM */

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .team-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-card .name {
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 4px;
    }

    .team-card .role {
        font-size: 13px;
        line-height: 1.5;
        text-align: center;
    }


    /* PRICING */

    .pricing-cards {
        flex-wrap: wrap;
    }

    .price-card.popular {
        transform: none;
    }


    /* CONTACT */

    .contact-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 80px 32px 50px;
    }

    .contact-image {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-image img {
        display: block;
        width: 100%;
        max-width: 500px;
        height: auto;
        max-height: none;
        object-fit: contain;
        margin: 0 auto;
    }

    .contact-form-area {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-form-area h1,
    .contact-form-area .sub {
        text-align: center;
    }


    /* FOOTER */

    .footer-inner {
        gap: 40px;
    }
}


/* =========================================
   MOBILE DEVICES
   481px - 768px
========================================= */

@media (max-width: 768px) {

    /* NAVBAR */

    nav {
        padding: 0 20px;
    }

    .navbar-brand {
        font-size: 18px;
        margin-right: 0;
    }


    /* COMMON SECTIONS */

    .hero,
    .feature-card,
    .other-card,
    .how-section,
    .cta-banner,
    .contact-section,
    .efficiency-section {
        padding-left: 20px;
        padding-right: 20px;
        gap: 24px;
    }


    /* HERO */

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-image {
        padding: 20px 0;
    }

    .hero-image img {
        width: 100%;
        max-width: 420px;
        height: auto;
    }


    /* TYPOGRAPHY */

    .hero h1,
    .pricing-hero h1,
    .about-hero h1,
    .mission-section h2,
    .team-section h2,
    .faq-section h2,
    .cta-banner h2,
    .contact-form-area h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .feature-card-content h2,
    .other-card-content h2,
    .how-left h2,
    .efficiency-section h2 {
        font-size: 30px;
    }


    /* BUTTONS */

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-buttons button,
    .hero-buttons a,
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }


    /* LOGOS */

    .logo-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .logo-item {
        font-size: 22px;
    }


    /* FEATURE CARDS */

    .feature-card,
    .other-card,
    .cta-banner {
        width: calc(100% - 32px);
        margin: 0 auto 24px;
        padding: 32px 20px;
        border-radius: 16px;
        height: auto;
    }

    .feature-card img,
    .other-card img,
    .cta-banner img,
    .about-img-row img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }


    /* HOW SECTION */

    .how-section {
        width: calc(100% - 32px);
        margin: 0 auto 24px;
        padding: 32px 20px;
    }

    .how-left-img-wrap img {
        max-width: 150px;
        margin: 0 auto;
    }

    .how-right {
        gap: 14px;
        width: 100%;
        align-items: stretch;
        padding-top: 0;
    }

    .step-item {
        background: var(--white);
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-card);
        padding: 20px 22px;
        text-align: left;
        max-width: 100%;
        width: 100%;
        gap: 4px;
    }

    .step-divider {
        display: none;
    }

    .step-number {
        display: block;
        color: var(--green);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 2px;
    }

    .step-number::before {
        content: "Step ";
    }

    .step-title {
        font-size: 19px;
    }

    .step-desc {
        max-width: 100%;
        text-align: left;
    }


    /* TESTIMONIALS */

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        width: 100%;
        height: auto;
    }


    /* SERVICES */

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        width: 100%;
        min-height: auto;
    }


    /* TEAM */

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .team-card img {
        width: 90px;
        height: 90px;
    }

    .team-card .name {
        font-size: 14px;
        line-height: 1.4;
        max-width: 120px;
        margin: 0 auto 4px;
    }

    .team-card .role {
        font-size: 12px;
        line-height: 1.5;
        max-width: 120px;
        margin: 0 auto;
    }


    /* PRICING */

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        padding: 0 20px 40px;
    }

    .price-card {
        width: 100%;
        max-width: 100%;
    }

    .pricing-hero p {
        width: 100%;
    }


    /* FAQ */

    .faq-section {
        padding: 40px 20px;
    }


    /* ABOUT */

    .about-hero,
    .mission-section,
    .team-section {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* =========================================
       CONTACT PAGE
    ========================================= */

    .contact-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 90px 16px 40px;
        gap: 28px;
        overflow: visible;
        align-items: center;
    }

    /* Contact illustration */

    .contact-image {
        width: 100%;
        max-width: 360px;
        padding: 0;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
    }

    .contact-image img {
        display: block;
        width: 100%;
        max-width: 340px;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
        margin: 0 auto;
    }


    /* Contact text */

    .contact-form-area {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-form-area h1 {
        font-size: 34px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 12px;
    }

    .contact-form-area .sub {
        text-align: center;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 28px;
    }


    /* Contact cards */

    .contact-item.card {
        width: 100%;
        margin-bottom: 16px !important;
        border-radius: 16px !important;
        overflow: hidden;
    }

    .contact-item.card .card-body {
        padding: 22px 20px;
    }

    .contact-item-body {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 18px;
        min-width: 0;
        width: 100%;
    }

    .contact-icon {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
    }

    .contact-item-body > div:last-child {
        min-width: 0;
        flex: 1;
        width: 0;
    }

    .contact-item-label {
        font-size: 10px;
        letter-spacing: 1.4px;
        margin-bottom: 3px;
    }

    .contact-item-value {
        font-size: 17px;
        line-height: 1.35;
        word-break: normal;
        overflow-wrap: anywhere;
    }


    /* Email card */

    .contact-email-card .contact-item-body {
        align-items: flex-start;
    }

    .contact-email-card .contact-item-value {
        font-size: 15px;
        line-height: 1.4;
        overflow-wrap: anywhere;
        word-break: break-word;
    }


    /* Footer */

    footer {
        padding: 40px 20px;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        gap: 28px;
        text-align: center;
        align-items: center;
    }

    .footer-col ul {
        align-items: center;
    }


    /* Compare table */

    .compare-section {
        padding: 40px 20px;
    }

    .compare-section .grid {
        min-width: 600px;
        grid-template-columns: minmax(160px, 1.2fr) repeat(4, minmax(120px, 1fr));
    }

    .compare-section .row-label,
    .compare-section .cell,
    .compare-section .head-cell {
        padding: 12px 14px;
        font-size: 13px;
    }

    .plan-title {
        font-size: 17px;
    }

    .best-for-cell {
        font-size: 12px;
    }

    .table-wrap::after {
        display: block;
    }
}


/* =========================================
   SMALL MOBILE DEVICES
   480px and below
========================================= */

@media (max-width: 480px) {

    /* HERO */

    .hero h1 {
        font-size: 30px;
    }

    .hero p,
    .pricing-hero p,
    .about-hero p,
    .mission-section p,
    .contact-form-area .sub {
        font-size: 14px;
        line-height: 1.7;
    }


    /* NAVBAR */

    .navbar-brand {
        font-size: 18px;
        margin-right: 0;
    }


    /* TEAM */

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card img {
        width: 100px;
        height: 100px;
    }


    /* BUTTONS */

    .hero-buttons button,
    .hero-buttons a {
        font-size: 14px;
    }


    /* CTA */

    .cta-banner {
        width: calc(100% - 24px);
        padding: 28px 18px;
    }

    .cta-banner h2 {
        font-size: 30px;
        line-height: 1.2;
    }


    /* PRICING */

    .popular-badge {
        left: 50%;
    }


    /* =========================================
       CONTACT - IPHONE / SMALL SCREEN FIX
    ========================================= */

    .contact-section {
        padding: 85px 14px 35px;
        gap: 26px;
    }

    .contact-image {
        width: 100%;
        max-width: 330px;
        padding: 0;
    }

    .contact-image img {
        width: 100%;
        max-width: 310px;
        height: auto;
        object-fit: contain;
    }

    .contact-form-area {
        width: 100%;
    }

    .contact-form-area h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .contact-form-area .sub {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Contact cards */

    .contact-item.card {
        width: 100%;
        margin-bottom: 14px !important;
    }

    .contact-item.card .card-body {
        padding: 20px 18px;
    }

    .contact-item-body {
        gap: 16px;
        flex-wrap: nowrap;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
    }

    .contact-item-label {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .contact-item-value {
        font-size: 16px;
        line-height: 1.4;
    }


    /* Email specifically */

    .contact-email-card .contact-item-value {
        font-size: 14px;
        line-height: 1.45;
        overflow-wrap: anywhere;
        word-break: break-word;
    }


    /* Footer */

    footer {
        padding: 36px 16px;
    }

    .footer-inner {
        gap: 24px;
    }

    .compare-section .grid {
        min-width: 540px;
    }

    .compare-sub {
        font-size: 14px;
    }
}