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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1c2b2b;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* =====================
   CONTAINER
===================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   NAVBAR
===================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e4eaea;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0e3d3d;
    letter-spacing: -0.5px;
}

.navbar-logo span {
    color: #e05214;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #1c2b2b;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #e05214;
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #e05214;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.navbar-cta:hover {
    background-color: #c94710;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #1c2b2b;
    padding: 4px;
}

.mobile-menu {
    display: none;
    background-color: #ffffff;
    border-top: 1px solid #e4eaea;
    padding: 16px 20px 24px;
}

.mobile-menu a {
    display: block;
    padding: 12px 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1c2b2b;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.mobile-menu a:hover {
    background-color: #f0f4f4;
    color: #e05214;
}

.mobile-menu-cta {
    display: block;
    margin-top: 12px;
    text-align: center;
    background-color: #e05214;
    color: #ffffff;
    font-weight: 700;
    padding: 14px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.mobile-menu-cta:hover {
    background-color: #c94710;
    color: #ffffff;
}

/* =====================
   PAGE OFFSET (for fixed navbar)
===================== */

.page-body {
    padding-top: 72px;
}

/* =====================
   BUTTONS
===================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #e05214;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #c94710;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.22);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: #0e3d3d;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid #0e3d3d;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: #0e3d3d;
    color: #ffffff;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #e05214;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-white:hover {
    background-color: #f0f0ef;
}

.btn-full {
    width: 100%;
}

/* =====================
   HERO SECTION
===================== */

.hero {
    background-color: #0e3d3d;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('bg.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: #e05214;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.hero-card {
    flex-shrink: 0;
    width: 340px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-top: 4px solid #e05214;
}

.hero-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0e3d3d;
    margin-bottom: 6px;
    text-align: center;
}

.hero-card-sub {
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
    margin-bottom: 24px;
}

.hero-phone-box {
    background-color: #f7f8f8;
    border: 1px solid #e8eeed;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.hero-phone-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e05214;
    display: block;
    margin-bottom: 4px;
}

.hero-phone-note {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

.hero-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.check-green {
    color: #22c55e;
    font-size: 1.1rem;
    font-weight: 700;
}

/* =====================
   PAGE HEADER (inner pages)
===================== */

.page-header {
    background-color: #0e3d3d;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-header-light {
    background-color: #f0f4f4;
    border-bottom: 1px solid #dde8e8;
    padding: 48px 0;
}

.page-header-light h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0e3d3d;
    margin-bottom: 8px;
}

.page-header-light p {
    color: #718096;
    font-size: 0.95rem;
}

/* =====================
   SECTIONS
===================== */

.section {
    padding: 80px 0;
}

.section-gray {
    padding: 80px 0;
    background-color: #f7f8f8;
}

.section-teal {
    padding: 80px 0;
    background-color: #0e3d3d;
    color: #ffffff;
}

.section-orange {
    padding: 80px 0;
    background-color: #e05214;
    color: #ffffff;
}

.section-dark {
    padding: 80px 0;
    background-color: #111f1f;
    color: #ffffff;
}

.section-title-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e05214;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0e3d3d;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-title-white {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-desc {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.section-desc-white {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.divider {
    height: 1px;
    background-color: #e2eaea;
    margin: 64px 0;
}

/* =====================
   GRID LAYOUTS
===================== */

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

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

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* =====================
   BENEFIT CARDS
===================== */

.benefit-card {
    background-color: #ffffff;
    border: 1px solid #e4eee8;
    border-radius: 12px;
    padding: 36px 28px;
    transition: box-shadow 0.2s;
}

.benefit-card:hover {
    box-shadow: 0 6px 24px rgba(14, 61, 61, 0.1);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: rgba(14, 61, 61, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0e3d3d;
}

.benefit-icon.orange {
    background-color: rgba(224, 82, 20, 0.1);
    color: #e05214;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1c2b2b;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
}

/* =====================
   HOW IT WORKS
===================== */

.hiw-wrap {
    display: flex;
    align-items: center;
    gap: 72px;
}

.hiw-content {
    flex: 1;
}

.hiw-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0e3d3d;
    margin-bottom: 14px;
    line-height: 1.25;
}

.hiw-content > p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hiw-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e05214;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(224, 82, 20, 0.35);
}

.hiw-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c2b2b;
    margin-bottom: 6px;
}

.hiw-step p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.hiw-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    aspect-ratio: 4 / 3;
}

.hiw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================
   PLANS / PRICING
===================== */

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

.plan-card {
    background-color: #ffffff;
    border: 1px solid #dde8e8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.plan-card:hover {
    box-shadow: 0 10px 36px rgba(14, 61, 61, 0.12);
}

.plan-card.featured {
    border: 2px solid #e05214;
    position: relative;
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(14, 61, 61, 0.16);
}

.plan-card.featured-teal {
    background-color: #0e3d3d;
    border: none;
    color: #ffffff;
}

.plan-badge {
    background-color: #e05214;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 6px;
}

.plan-header {
    padding: 28px 28px 0;
    background-color: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid #e8efef;
}

.plan-header.dark {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c2b2b;
    margin-bottom: 6px;
}

.plan-header.dark h3 {
    color: #ffffff;
}

.plan-desc {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 20px;
    min-height: 40px;
}

.plan-header.dark .plan-desc {
    color: rgba(255, 255, 255, 0.65);
}

.plan-price {
    padding-bottom: 20px;
}

.plan-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0e3d3d;
}

.plan-header.dark .plan-amount {
    color: #ffffff;
}

.plan-per {
    font-size: 0.95rem;
    color: #718096;
    margin-left: 2px;
}

.plan-header.dark .plan-per {
    color: rgba(255, 255, 255, 0.55);
}

.plan-speed {
    padding: 16px 28px;
    border-bottom: 1px solid #e8efef;
}

.plan-speed.dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-speed strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1c2b2b;
}

.plan-speed.dark strong {
    color: #ffffff;
}

.plan-speed span {
    font-size: 0.8rem;
    color: #718096;
}

.plan-speed.dark span {
    color: rgba(255, 255, 255, 0.55);
}

.plan-features {
    padding: 24px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-features ul {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: #374151;
}

.plan-features.dark li {
    color: rgba(255, 255, 255, 0.85);
}

.check-orange {
    color: #e05214;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.plan-cta-outline {
    border: 2px solid #0e3d3d;
    color: #0e3d3d;
    background-color: transparent;
}

.plan-cta-outline:hover {
    background-color: #0e3d3d;
    color: #ffffff;
}

.plan-cta-orange {
    background-color: #e05214;
    color: #ffffff;
    border: 2px solid #e05214;
}

.plan-cta-orange:hover {
    background-color: #c94710;
    border-color: #c94710;
}

/* Bundle */

.bundle-box {
    max-width: 960px;
    margin: 56px auto 0;
    background-color: #0e3d3d;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 60px rgba(14, 61, 61, 0.3);
}

.bundle-left {
    flex: 1;
    padding: 48px;
}

.bundle-badge {
    display: inline-block;
    background-color: rgba(224, 82, 20, 0.2);
    color: #e05214;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.bundle-left h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.bundle-left p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

.bundle-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bundle-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.bundle-right {
    width: 280px;
    background-color: rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bundle-right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.bundle-price {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
    display: block;
    line-height: 1;
}

.bundle-per {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
}

.bundle-note {
    margin-top: 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================
   TESTIMONIALS
===================== */

.testimonial-card {
    background-color: #f7f8f8;
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: #dde8e8;
    line-height: 1;
}

.stars {
    color: #e05214;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-weight: 700;
    color: #0e3d3d;
    font-size: 0.95rem;
}

.testimonial-since {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 2px;
}

/* =====================
   CTA BANNER
===================== */

.cta-banner {
    background-color: #0e3d3d;
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.3;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.cta-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e05214;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 18px 40px;
    border-radius: 100px;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(224, 82, 20, 0.4);
}

.cta-phone-btn:hover {
    background-color: #ffffff;
    color: #e05214;
    transform: scale(1.04);
}

/* =====================
   FAQ ACCORDION
===================== */

.faq-group {
    margin-bottom: 52px;
}

.faq-group-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1c2b2b;
    padding-bottom: 14px;
    border-bottom: 1px solid #dde8e8;
    margin-bottom: 0;
}

.accordion {
    background-color: #ffffff;
    border: 1px solid #e4eeed;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0;
}

.accordion-item {
    border-bottom: 1px solid #e8efef;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1c2b2b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color 0.2s;
}

.accordion-btn:hover {
    color: #0e3d3d;
}

.accordion-btn.active {
    color: #0e3d3d;
}

.accordion-icon {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e05214;
    flex-shrink: 0;
    transition: transform 0.25s;
    display: inline-block;
}

.accordion-btn.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    display: none;
    padding: 0 24px 22px;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.accordion-body.open {
    display: block;
}

/* =====================
   FEATURES PAGE
===================== */

.feature-row {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 80px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-icon-large {
    font-size: 2rem;
    color: #e05214;
    margin-right: 14px;
    vertical-align: middle;
}

.feature-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0e3d3d;
    margin-bottom: 14px;
    line-height: 1.25;
}

.feature-content > p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-list-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1c2b2b;
    margin-bottom: 6px;
}

.feature-list-item p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
}

.feature-panel {
    flex: 1;
    background-color: #f0f5f5;
    border: 1px solid #dde8e8;
    border-radius: 16px;
    padding: 36px;
}

.feature-panel-dark {
    flex: 1;
    background-color: #0e3d3d;
    border-radius: 16px;
    padding: 36px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.feature-panel-dark h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.feature-panel-dark ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.feature-panel-dark li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
}

.feature-panel-dark .bundle-promo {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-stat-row {
    background-color: #ffffff;
    border: 1px solid #e4eeed;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-stat-row strong {
    font-weight: 700;
    color: #1c2b2b;
    font-size: 0.95rem;
}

.feature-stat-val {
    font-weight: 800;
    color: #0e3d3d;
    font-size: 0.95rem;
}

/* =====================
   ABOUT PAGE
===================== */

.about-story {
  
    gap: 72px;
}

.about-story-text {
    flex: 1;
}

.about-story-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0e3d3d;
    margin-bottom: 24px;
}

.about-story-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-images {
    flex: 1;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-img-grid img {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.about-img-grid img:nth-child(2) {
    margin-top: 24px;
}

.hq-card {
    background-color: #ffffff;
    border: 1px solid #dde8e8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(14, 61, 61, 0.1);
}

.hq-map {
    height: 200px;
    background-color: #e8f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(14, 61, 61, 0.2);
}

.hq-info {
    padding: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.hq-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1c2b2b;
    margin-bottom: 8px;
}

.hq-info address {
    font-style: normal;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.65;
}

.hq-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hq-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #e05214;
    transition: color 0.2s;
}

.hq-contact-link:hover {
    color: #0e3d3d;
}

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

.contact-box {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 48px rgba(14, 61, 61, 0.12);
    overflow: hidden;
    display: flex;
}

.contact-sidebar {
    width: 320px;
    background-color: #e05214;
    color: #ffffff;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-sidebar h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-info-value a {
    color: #ffffff;
    transition: opacity 0.2s;
}

.contact-info-value a:hover {
    opacity: 0.85;
}

.contact-availability {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-form-wrap {
    flex: 1;
    padding: 48px;
}

.contact-form-wrap h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1c2b2b;
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 36px;
    line-height: 1.6;
}

/* =====================
   FORM STYLES
===================== */

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d1d9e0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #1c2b2b;
    background-color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0e3d3d;
    box-shadow: 0 0 0 3px rgba(14, 61, 61, 0.1);
}

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

.form-submit {
    width: 100%;
    background-color: #0e3d3d;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-submit:hover {
    background-color: #0a2e2e;
}

/* =====================
   LEGAL PAGES
===================== */

.legal-content {
    font-size: 1rem;
    color: #374151;
    line-height: 1.75;
}

.legal-content p {
    margin-bottom: 18px;
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0e3d3d;
    margin-top: 44px;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-content ul li {
    color: #374151;
}

.legal-highlight-box {
    background-color: #f0f5f5;
    border: 1px solid #dde8e8;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 32px;
}

.legal-highlight-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c2b2b;
    margin-bottom: 12px;
}

.legal-contact-info {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1c2b2b;
    line-height: 1.8;
}

/* =====================
   FOOTER
===================== */

footer {
    background-color: #0e3d3d;
    color: #ffffff;
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 14px;
}

.footer-brand-name span {
    color: #e05214;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e05214;
    font-size: 1rem;
}

.footer-phone a {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    transition: color 0.2s;
}

.footer-phone a:hover {
    color: #e05214;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    color: #e05214;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-contact-text a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-contact-text a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 24px;
    margin: 28px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.footer-disclaimer p + p {
    margin-top: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 8px;
}

/* =====================
   CALL STRIP
===================== */

.call-strip {
    background-color: #f0f5f5;
    border-top: 1px solid #dde8e8;
    padding: 48px 0;
    text-align: center;
}

.call-strip h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1c2b2b;
    margin-bottom: 8px;
}

.call-strip p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.call-strip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0e3d3d;
    transition: color 0.2s;
}

.call-strip-link:hover {
    color: #e05214;
}

/* =====================
   UTILITY CLASSES
===================== */

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.bold { font-weight: 700; }
.teal { color: #0e3d3d; }
.orange { color: #e05214; }
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0e3d3d;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.view-all-link:hover { color: #e05214; }

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hiw-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .hiw-image {
        width: 100%;
    }

    .about-story {
        flex-direction: column;
        gap: 40px;
    }

    .feature-row {
        flex-direction: column;
        gap: 40px;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .bundle-box {
        flex-direction: column;
    }

    .bundle-right {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 36px;
    }

    .contact-box {
        flex-direction: column;
    }

    .contact-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.open {
        display: block;
    }

    .hero {
        padding: 56px 0 72px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-card {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        text-align: center;
    }

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

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

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

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

    .plan-card.featured {
        transform: translateY(0);
    }

    .section {
        padding: 56px 0;
    }

    .section-gray {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-title-white {
        font-size: 1.65rem;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hq-info {
        flex-direction: column;
    }

    .bundle-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

    .section-title-wrap {
        margin-bottom: 36px;
    }
}
