/* --- CSS Variables (Colors and Fonts) --- */
:root {
  --bg-dark: #0a0e11;
  --bg-card: #151a1e;
  --primary-green: #67c220;
  --green-hover: #55a61a;
  --text-white: #ffffff;
  --text-gray: #a0aab2;

  --font-main: 'Inter', sans-serif;
}

/* --- Basic Reset Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

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

ul {
  list-style: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}

.simple-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    text-align: left;
    transition: opacity 0.2s ease, color 0.2s ease; 
}

.simple-link:hover {
    color: #7ED957;
}

.secondary-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .secondary-links {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .secondary-links .simple-link {
        font-size: 11px;
    }
}

.btn:focus {
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--green-hover);
    transform: translateY(-2px);
}

.header {
    background-color: var(--bg-dark);
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 200;
}

.logo img {
    margin: -20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 24px 0;
}

.nav-list a:hover,
.nav-list a.active,
.nav-list a.dropdown-toggle.active {
    color: var(--primary-green);
}

.arrow {
    font-size: 8px;
    transition: transform 0.25s ease;
}

.mobile-cta {
    display: none;
}

.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--primary-green);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 50;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .arrow,
.has-dropdown.open .arrow {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dd-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-gray);
    transition: color 0.2s ease;
}

.dd-icon svg {
    width: 100%;
    height: 100%;
}

.dropdown-menu li a:hover .dd-icon {
    color: var(--primary-green);
}

.dropdown-menu li a:hover {
    color: var(--primary-green);
    background-color: rgba(255,255,255,0.03);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 210;
}

.hamburger,
.hamburger:focus,
.hamburger:active {
    outline: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent !important;
    box-shadow: none !important;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    padding: 24px 0 0;
    overflow: clip; 
    margin-top: -1px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 14, 17, 1) 0%,
        rgba(10, 14, 17, 1) 20%,
        rgba(10, 14, 17, 0.75) 45%,
        rgba(10, 14, 17, 0.35) 65%,
        rgba(10, 14, 17, 0.08) 85%,
        rgba(10, 14, 17, 0.18) 100%
    );
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        var(--bg-dark) 0%,
        var(--bg-dark) 10%,
        rgba(10, 14, 17, 0.6) 22%,
        rgba(10, 14, 17, 0) 40%,
        rgba(10, 14, 17, 0) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.hero-top-fade {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 90px;
    background: linear-gradient(
        to bottom,
        var(--bg-dark) 0%,
        rgba(10, 14, 17, 0.5) 60%,
        rgba(10, 14, 17, 0) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    max-width: none;
    margin: 0;
    padding-left: 32px;
    padding-right: 32px;
}

.hero-form-box {
    max-width: 460px;
    margin-left: auto;
    margin-bottom: 40px;
    width: 100%;
}
#start-your-project {
    scroll-margin-top: 120px; 
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.text-green {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 560px;
    margin-bottom: 28px;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    line-height: 1.2;
}

.intake-card {
    background-color: var(--bg-card);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.intake-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.intake-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 18px;
}

.intake-form input,
.intake-form textarea {
    width: 100%;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    padding: 12px 14px;
    margin-bottom: 11px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.custom-select {
    position: relative;
    margin-bottom: 11px;
}

.cs-trigger {
    width: 100%;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    padding: 12px 14px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease;
}

.cs-trigger:hover,
.custom-select.open .cs-trigger {
    border-color: var(--primary-green);
}

.cs-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select.has-value .cs-label {
    color: var(--text-white);
}

.cs-arrow {
    font-size: 8px;
    color: var(--text-gray);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.custom-select.open .cs-arrow {
    transform: rotate(180deg);
}

.cs-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.custom-select.open .cs-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-options li {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-gray);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.cs-options li:hover,
.cs-options li.active {
    background-color: rgba(103, 194, 32, 0.1);
    color: var(--text-white);
}

.upload-zone {
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 22px 20px;
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--text-gray);
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--primary-green);
    background-color: rgba(103, 194, 32, 0.06);
}

.upload-zone strong {
    color: var(--text-white);
    font-size: 14px;
}

.upload-file-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.upload-file-list .file-chip {
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 11px;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.btn-full {
    width: 100%;
    font-size: 16px;
    padding: 16px;
}

.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--text-gray);
    font-size: 12px;
}

.form-security-note .fs-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--text-gray);
}

.form-security-note .fs-icon svg {
    width: 100%;
    height: 100%;
}

.hero-features-inline {
    display: flex;
    gap: 36px;
    margin-bottom: 26px;
}

.hfi-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hfi-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
}

.hfi-icon svg {
    width: 100%;
    height: 100%;
}

.hfi-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.hero-features-bar {
    background-color: rgba(10, 14, 17, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-icon {
    font-size: 26px;
    display: flex;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 45px;
}

.service-card {
    background-color: #10161a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

a.service-card {
    color: inherit;
    text-decoration: none;
}

a.service-card:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 4px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(132, 204, 22, 0.5);
}

.service-image-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #131c23 0%, #1a2630 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-content {
    padding: 10px 10px 24px;
    position: relative;
}

.service-content h3 {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
}

.service-content p {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link {
    position: absolute;
    right: 10px;
    bottom: 8px;
    color: #84cc16;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease;
}

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

.bottom-sections-wrapper {
    padding: 60px 0;
    background-color: #080c0f;
    border-top: none !important;
    margin-top: -1px;
    position: relative;
    z-index: 10;
}

.bottom-grid-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 16px;
    align-items: stretch;
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
}

.card-box {
    background-color: #0b1014;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.process-steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px;
}

.proc-step {
    position: relative;
}

.proc-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 33px;
    left: 114px;
    width: calc(100% - 114px + 36px - 14px);
    height: 2px;
    background-color: rgba(255, 255, 255, 0.35);
}

.proc-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 27px;
    left: calc(100% + 36px - 14px);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.proc-icon-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.proc-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proc-icon svg {
    width: 28px;
    height: 28px;
}

.proc-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background-color: #84cc16;
    color: #0b1014;
    font-weight: bold;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proc-step h4 {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.proc-step p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.4;
    margin: 0;
}

.audience-icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.aud-item {
    background-color: #10161a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 15px 10px;
    text-align: center;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 600;
}

.aud-item.active-aud {
    border-color: #84cc16;
    color: #ffffff;
}

.aud-item.active-aud .aud-icon {
    color: #84cc16;
}

.aud-icon {
    width: 30px;
    height: 30px;
    color: #9ca3af;
    display: flex;
    margin: 0 auto 8px;
}

.aud-icon svg {
    width: 100%;
    height: 100%;
}

.trust-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.t-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.t-icon {
    width: 28px;
    height: 28px;
    color: #84cc16;
    display: inline-flex;
    flex-shrink: 0;
}

.t-icon svg {
    width: 100%;
    height: 100%;
}

.t-feat strong {
    display: block;
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 3px;
}

.t-feat p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.footer-value-line {
    color: rgba(255, 255, 255, 0.45); 
    font-size: 13px;
    margin-top: 15px;
    max-width: 250px;
    line-height: 1.5;
    text-align: left;
}

.site-footer {
    background-color: #0b1014;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    gap: 20px; 
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.footer-logo {
    flex: 1;
    max-width: 320px;
}

.footer-logo img {
    display: block;
    height: auto;
}

.footer-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.f-icon {
    color: #84cc16;
    width: 34px;
    height: 34px;
    display: flex;
    flex-shrink: 0;
}

.f-icon svg {
    width: 100%;
    height: 100%;
}

.footer-tagline {
    flex: 1;
    max-width: 320px;
    text-align: right;
    margin-bottom: 8px;
}

.footer-tagline p {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.footer-tagline a {
    color: #84cc16;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

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

.photo-guide-section {
    padding: 60px 0;
    background-color: #080c0f;
}

.photo-guide-section.no-top-pad {
    padding-top: 0;
}

.guide-card {
    background-color: #0b1014;
    border: 1px solid rgba(132, 204, 22, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.guide-main-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    border-bottom: 1px solid rgba(132, 204, 22, 0.3);
}

.guide-sidebar {
    padding: 30px;
    border-right: 1px solid rgba(132, 204, 22, 0.3);
}

.guide-title {
    font-size: 24px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.take-photos-list h4, .tips-box h4, .reference-box h4 {
    color: #84cc16;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 700;
}

.take-photos-list ul, .tips-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.take-photos-list li {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.step-num {
    width: 20px;
    height: 20px;
    border: 1px solid #84cc16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #84cc16;
    margin-right: 10px;
    flex-shrink: 0;
}

.cam-icon {
    margin-left: auto;
    opacity: 0.5;
}

.tips-box {
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.tips-box li {
    color: #9ca3af;
    font-size: 12px;
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.tips-box li::before {
    content: "•";
    color: #84cc16;
    position: absolute;
    left: 0;
}

.reference-box p {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.4;
    margin-bottom: 15px;
}

.upload-btn {
    border: 1px dashed #84cc16;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}
.upload-btn:hover {
    background: rgba(132, 204, 22, 0.1);
}

.guide-image-area {
    background: #080c0f;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.guide-image-area img {
    width: 100%;
    height: auto;
}

.guide-footer {
    padding: 20px 30px;
    text-align: center;
}

.footer-title {
    color: #84cc16;
    font-size: 14px;
    margin-bottom: 20px;
}

.capture-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cap-num {
    width: 24px;
    height: 24px;
    background: #080c0f;
    border: 1px solid #84cc16;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.cap-icon {
    width: 30px;
    height: 30px;
    color: #84cc16;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-icon svg {
    width: 100%;
    height: 100%;
}

.cap-step span {
    color: #9ca3af;
    font-size: 11px;
}

.cap-arrow {
    color: #84cc16;
    opacity: 0.5;
    font-size: 12px;
    letter-spacing: 2px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.page-hero {
    padding: 70px 0 50px;
    background-color: #080c0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb {
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--primary-green);
}

.breadcrumb a:hover {
    color: var(--text-white);
}

.breadcrumb .crumb-current {
    color: var(--primary-green);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 680px;
    line-height: 1.6;
}

.content-section {
    padding: 70px 0;
    background-color: #0a0e11;
}

.content-section.alt-bg {
    background-color: #080c0f;
}

.content-section .section-heading {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.content-section .section-subheading {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    scroll-margin-top: 100px;
}

.detail-block:last-child {
    border-bottom: none;
}

.detail-block.reverse .detail-media {
    order: 2;
}

.detail-media {
    background: linear-gradient(135deg, #131c23 0%, #1a2630 100%);
    border-radius: 8px;
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-icon {
    width: 44px;
    height: 44px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.detail-icon svg {
    width: 100%;
    height: 100%;
}

.detail-block h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.detail-block p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.detail-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: 700;
    flex-shrink: 0;
}

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

.example-card {
    background-color: #10161a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(132, 204, 22, 0.5);
}

.example-media {
    height: 200px;
    background: linear-gradient(135deg, #131c23 0%, #1a2630 100%);
}

.example-content {
    padding: 20px;
}

.example-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 700;
}

.example-content p {
    font-size: 13px;
    color: var(--text-gray);
}

.example-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-green);
    border: 1px solid rgba(132, 204, 22, 0.4);
    border-radius: 3px;
    padding: 3px 8px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    scroll-margin-top: 100px;
}

.resource-card {
    background-color: #10161a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(132, 204, 22, 0.5);
}

.resource-card .r-icon {
    width: 34px;
    height: 34px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.resource-card .r-icon svg {
    width: 100%;
    height: 100%;
}

.resource-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 700;
}

.resource-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.resource-card a {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px 40px;
    align-items: start;
}

.faq-item {
    margin-bottom: 0 !important;
}

@media (min-width: 992px) {
    .faq-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


.faq-item summary {
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-item summary::after {
    content: "+";
    color: var(--primary-green);
    font-size: 20px;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 20px;
    max-width: 700px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-info-item .ci-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item .ci-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-item span {
    color: var(--text-gray);
    font-size: 13px;
}

.contact-form-box {
    background-color: var(--bg-card);
    padding: 35px;
    border-radius: 8px;
}

.contact-form-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-form-box textarea {
    width: 100%;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    min-height: 120px;
}

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

.team-card {
    background-color: #10161a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 28px;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #131c23, #1a2630);
    margin: 0 auto 15px;
    border: 1px solid rgba(255,255,255,0.08);
}

.team-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 12px;
    color: var(--primary-green);
}

.service-detail-card {
    background-color: #10161a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 35px;
    scroll-margin-top: 100px;
}

.service-detail-card + .service-detail-card {
    margin-top: 25px;
}

.service-detail-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-detail-card .sd-icon {
    width: 30px;
    height: 30px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.service-detail-card .sd-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 720px;
}

.service-detail-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-bottom: 15px;
}

.service-detail-card ul li {
    color: var(--text-white);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-card ul li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
}

.service-detail-card .sd-disclaimer {
    font-size: 12px;
    color: #7c8790;
    font-style: italic;
    margin-top: -6px;
    margin-bottom: 0;
}

.process-block {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    scroll-margin-top: 100px;
}

.process-block:last-child {
    border-bottom: none;
}

.process-block .pb-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(132, 204, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.process-block .pb-icon svg {
    width: 26px;
    height: 26px;
}

.process-block h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.process-block p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    max-width: 680px;
}

.cta-banner {
    background-color: #10161a;
    border: 1px solid rgba(132, 204, 22, 0.3);
    border-radius: 10px;
    padding: 45px;
    text-align: center;
}

.cta-banner h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

.pg-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 600;
    padding: 0 0 15px;
    cursor: pointer;
    text-align: left;
}

.pg-trigger .dd-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-green);
}

.pg-trigger:hover {
    color: var(--text-white);
}

.pg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pg-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.pg-modal {
    position: relative;
    background-color: #0b1014;
    border: 1px solid rgba(132, 204, 22, 0.3);
    border-radius: 12px;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.pg-modal-overlay.open .pg-modal {
    transform: translateY(0);
}

.pg-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s ease;
}

.pg-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.pg-modal-tabs {
    display: flex;
    gap: 8px;
    padding: 20px 60px 0 25px;
    flex-shrink: 0;
    overflow-x: auto;
}

.pg-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 10px 18px;
    border-radius: 6px 6px 0 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.pg-tab.active {
    color: var(--text-white);
    border-color: var(--primary-green);
    border-bottom-color: #0b1014;
}

.pg-modal-body {
    overflow-y: auto;
    padding: 0 0 10px;
}

.pg-modal-body .guide-card {
    border: none;
    border-radius: 0;
}

.ai-preview-card {
    background-color: #10161a;
    border: 1px solid rgba(132, 204, 22, 0.3);
    border-radius: 10px;
    overflow: hidden;
    max-width: 900px;
}

.ai-preview-card img {
    width: 100%;
    height: auto;
    display: block;
}

.services-grid .service-card.reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .service-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .service-card.reveal:nth-child(6) { transition-delay: 0.4s; }

.process-steps-row .proc-step.reveal:nth-child(1) { transition-delay: 0s; }
.process-steps-row .proc-step.reveal:nth-child(2) { transition-delay: 0.08s; }
.process-steps-row .proc-step.reveal:nth-child(3) { transition-delay: 0.16s; }
.process-steps-row .proc-step.reveal:nth-child(4) { transition-delay: 0.24s; }
.process-steps-row .proc-step.reveal:nth-child(5) { transition-delay: 0.32s; }

.placeholder-grid .example-card.reveal:nth-child(1) { transition-delay: 0s; }
.placeholder-grid .example-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.placeholder-grid .example-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.placeholder-grid .example-card.reveal:nth-child(4) { transition-delay: 0s; }
.placeholder-grid .example-card.reveal:nth-child(5) { transition-delay: 0.08s; }
.placeholder-grid .example-card.reveal:nth-child(6) { transition-delay: 0.16s; }

.service-detail-card.reveal:nth-of-type(1) { transition-delay: 0s; }
.service-detail-card.reveal:nth-of-type(2) { transition-delay: 0.05s; }
.service-detail-card.reveal:nth-of-type(3) { transition-delay: 0.1s; }
.service-detail-card.reveal:nth-of-type(4) { transition-delay: 0.05s; }
.service-detail-card.reveal:nth-of-type(5) { transition-delay: 0.1s; }
.service-detail-card.reveal:nth-of-type(6) { transition-delay: 0.05s; }

.faq-item.reveal:nth-of-type(1) { transition-delay: 0s; }
.faq-item.reveal:nth-of-type(2) { transition-delay: 0.06s; }
.faq-item.reveal:nth-of-type(3) { transition-delay: 0.12s; }
.faq-item.reveal:nth-of-type(4) { transition-delay: 0.18s; }

.process-block.reveal,
.faq-item.reveal {
    transform: translateY(14px);
}

.watch-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 10px 0 6px;
    position: relative;
    left: 50vw;
    transform: translateX(-50%);
    padding: 0;
}

.watch-video-btn .wv-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.watch-video-btn .wv-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-white);
}

.watch-video-btn:hover .wv-icon {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.06);
}

.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 320;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.video-modal {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.video-modal video {
    width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    background-color: #000;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1024px) {
    .hamburger { display: flex; }
    .desktop-cta { display: none; }
    .nav-overlay { display: block; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-card);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        padding: 90px 25px 30px;
        overflow-y: auto;
        transition: right 0.35s ease;
        z-index: 200;
    }

    .main-nav.open { right: 0; }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-list a {
        padding: 16px 0;
        width: 100%;
        justify-content: space-between;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 10px 12px;
    }

    .has-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li a { padding: 10px 0; }
    .mobile-cta { display: flex; margin-top: 25px; width: 100%; }
    
    .container, .hero .container, .bottom-grid-container, .footer-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .page-hero h1 { font-size: 34px; }
    .detail-block { grid-template-columns: 1fr; gap: 30px; }
    .detail-block.reverse .detail-media { order: 0; }
    
    .placeholder-grid, .resource-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    
    .hero-content h1 { font-size: 46px; }
    .hero-subtitle { font-size: 17px; max-width: 100%; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-box { max-width: 480px; margin: 0 auto; }
    .hero-features-inline { gap: 24px; }
    
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .bottom-grid-container { grid-template-columns: 1fr; }
    .process-steps-row { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
    .proc-step::after, .proc-step::before { display: none; }
    
    .audience-icons-row { grid-template-columns: repeat(4, 1fr); }
    .trust-features-row { grid-template-columns: 1fr; }
    .guide-main-content { grid-template-columns: 280px 1fr; }
    
    .footer-container { flex-direction: column; text-align: center; }
    .footer-tagline { text-align: center; }
    .footer-features { justify-content: center; }
}

@media (max-width: 768px) {
    .container, .hero .container, .bottom-grid-container, .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-container { justify-content: center; text-align: center; }

    .hero {
        padding-top: 0 !important;
        padding-bottom: 40px;
    }

    .hero-top-fade {
        height: 48px;
        background: linear-gradient(
            to bottom,
            var(--bg-dark) 0%,
            rgba(10, 14, 17, 0.4) 55%,
            rgba(10, 14, 17, 0) 100%
        );
    }

    .hero-video {
        transform: scale(1.1) !important;
        transform-origin: center center;
        object-position: 50% 50%;
    }

    .hero-content {
        margin-top: 40px;
    }

    .hero-content h1 { font-size: 36px; }
    .hero-features-inline { flex-wrap: wrap; gap: 20px 30px; }
    .hfi-item { width: calc(50% - 15px); }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn-outline { text-align: center; }
    .intake-card { padding: 25px; }

    .hero-features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps-row { grid-template-columns: repeat(2, 1fr); }
    .audience-icons-row { grid-template-columns: repeat(2, 1fr); }
    
    .guide-main-content { grid-template-columns: 1fr; }
    .guide-sidebar { border-right: none; border-bottom: 1px solid rgba(132, 204, 22, 0.3); }
    .capture-steps { justify-content: center; }
    .cap-arrow { display: none; }

    .page-hero h1 { font-size: 30px; }
    .placeholder-grid { grid-template-columns: 1fr; }
    .process-block { grid-template-columns: 1fr; }
    .process-block .pb-icon { margin-bottom: 10px; }
    .service-detail-card { padding: 22px; }
    .cta-banner { padding: 30px 20px; }

    .pg-modal-overlay { padding: 0; }
    .pg-modal { max-height: 100vh; height: 100vh; border-radius: 0; }
    .pg-modal-tabs { padding: 60px 50px 0 15px; }
    .video-modal-close { top: -40px; right: 0; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 30px; }
    .hero-subtitle { font-size: 15px; }
    
    .hero-features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps-row { grid-template-columns: 1fr; }
    .audience-icons-row { grid-template-columns: repeat(2, 1fr); }
    
    .main-nav { width: 85vw; right: -85vw; }
    .footer-features { flex-direction: column; gap: 15px; align-items: center; }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 540px;
    min-width: 0;
    margin: 0 auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #888;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.close-btn:hover {
    color: #fff;
}

.modal-content .intake-card {
    margin: 0;
}

.pg-modal-overlay {
    z-index: 10000 !important;
}

.pg-modal,
.pg-modal-body,
.modal-content {
    overscroll-behavior: contain;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}
.service-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.service-option:hover {
    border-color: rgba(255, 255, 255, 0.25);
}
.service-option input[type="checkbox"] {
    display: none;
}
.service-option.selected {
    border-color: var(--primary-green);
    background-color: rgba(103, 194, 32, 0.1);
}
.so-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.so-info strong {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}
.so-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}
.so-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-left: 15px;
}
.quote-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #67c220;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-modal-wrapper {
    position: relative;
    width: 100%;
}

.form-modal-inner {
    position: relative;
    background-color: #050505;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding-top: 46px;
}

.form-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    z-index: 100;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.form-modal-iframe-wrap {
    position: relative;
    flex: 1 1 auto;
    min-height: 400px;
    overflow: hidden;
    padding: 0 14px;
}

.form-modal-iframe {
    position: absolute;
    top: 0;
    left: 14px;
    width: calc(100% - 28px);
    height: calc(100% + 30px);
    min-width: 0;
    border: none;
    display: block;
}

/* POLISHED INTERACTIVE CARDS & SITE-WIDE WAYFINDING */
.interactive-card {
    cursor: pointer;
    position: relative;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.interactive-card:hover,
.interactive-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(126, 217, 87, .65) !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .28), 0 0 0 1px rgba(126, 217, 87, .2);
    outline: none;
}

.card-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.card-text-link {
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.example-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 42px;
}

.example-category-nav a {
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.example-category-nav a:hover,
.example-category-nav a:focus-visible {
    color: #081008;
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.service-return-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 50px 0 0;
}

.page-bottom-nav {
    display: flex;
    justify-content: center;
    padding: 34px 20px 24px;
    background: var(--dark-bg);
}

.page-bottom-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(126,217,87,.6);
    border-radius: 999px;
    color: #fff;
    background: rgba(13,18,16,.96);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.page-bottom-nav a:hover,
.page-bottom-nav a:focus-visible {
    color: #081008;
    background: var(--primary-green);
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 13px;
    border: 1px solid rgba(126,217,87,.45);
    border-radius: 999px;
    background: rgba(13,18,16,.94);
    color: #fff;
    font: 700 12px/1 Inter, sans-serif;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .2s ease;
}

.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.mobile-quick-nav { display: none; }

.printed-model-visual {
    min-height: 210px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: radial-gradient(circle at 50% 35%, rgba(126,217,87,.2), transparent 52%), #111814;
}

.printed-model-visual svg { width: 145px; color: var(--primary-green); filter: drop-shadow(0 12px 22px rgba(0,0,0,.45)); }

.join-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.join-role-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 22px; }
.join-role { padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.035); }
.join-form { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: #101713; }
.join-form label { display: block; margin: 0 0 7px; color: #fff; font-size: 13px; font-weight: 700; }
.join-form input, .join-form select, .join-form textarea { width: 100%; margin-bottom: 17px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; background: #080c0a; color: #fff; font: inherit; }
.join-form textarea { min-height: 130px; resize: vertical; }
.form-note { color: #98a19c; font-size: 13px; line-height: 1.6; }

@media (max-width: 768px) {
    body { padding-bottom: 66px; }
    .mobile-quick-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 10px;
        z-index: 940;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 12px;
        background: rgba(10,14,12,.96);
        box-shadow: 0 12px 35px rgba(0,0,0,.45);
        backdrop-filter: blur(14px);
    }
    .mobile-quick-nav a { padding: 13px 5px; color: #fff; text-align: center; font-size: 12px; font-weight: 800; }
    .mobile-quick-nav a:last-child { background: var(--primary-green); color: #081008; }
    .back-to-top { right: 14px; bottom: 78px; }
    .join-grid { grid-template-columns: 1fr; }
    .join-role-grid { grid-template-columns: 1fr; }
    .example-category-nav { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
    .example-category-nav a { flex: 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
    .interactive-card, .back-to-top { transition: none; }
    .interactive-card:hover, .interactive-card:focus-visible { transform: none; }
}

.modal-content.form-modal-wrapper {
    max-width: 680px;
}

@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .trust-features-row,
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .trust-features-row,
    .footer-features,
    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }

    .footer-features {
        text-align: left;
        margin: 0 auto;
        max-width: 300px;
    }

    .footer-tagline {
        text-align: center;
        margin-top: 40px;
    }

    .service-detail-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    
    .cta-banner h2 {
        font-size: 1.7rem;
    }
    
    .cta-banner {
        padding: 40px 20px;
    }

    .modal-overlay {
        padding: 0;
    }

    .form-modal-inner {
        border-radius: 0;
        max-height: 100vh;
    }

    .form-modal-close {
        top: 12px;
        right: 15px;
    }
}

@media (min-width: 1024px) {
    .bottom-grid-container {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 40px;
    }
}

.record-subtitle {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.record-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 35px;
}

.record-step {
    flex: 1;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 8px;
    position: relative;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
    border: 1px solid transparent;
}

.record-step:hover,
.record-step:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(132, 204, 22, 0.55);
    background: rgba(132, 204, 22, 0.08);
    outline: none;
}

.record-grid .record-step:not(:last-child)::after {
    content: "▶" !important;
    position: absolute !important;
    right: -22px !important;
    top: 24px !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 14px !important;
    border: none !important;
}

.record-grid .record-step::before {
    display: none !important;
}

.record-step h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.record-step p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.record-step-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

/* Full-width written explanations opened from the homepage stage cards. */
.process-block.written-stage-block {
    grid-template-columns: minmax(0, 1fr);
    padding: 30px;
}

.written-stage-block > div {
    width: 100%;
    max-width: 920px;
}

.written-stage-block p {
    max-width: 900px;
    font-size: 15px;
    line-height: 1.75;
}

.service-area-map-block {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(132, 204, 22, 0.32);
    border-radius: 10px;
    background: #0b1115;
}

.service-area-map-block img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    background: #0b1115;
}

.service-area-map-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 24px;
    border-top: 1px solid rgba(132, 204, 22, 0.25);
}

@media (max-width: 640px) {
    .service-area-map-action {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

.audience-icons-row.centered {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 30px;
}

.audience-icons-row.centered .aud-item {
    flex: 1;
    min-width: 0;
    padding: 15px 5px;
}

.audience-icons-row.centered .aud-item span {
    font-size: 0.75rem;
    text-align: center;
    display: block;
    line-height: 1.2;
}

.trust-features-row.centered {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

@media (max-width: 991px) {
    .record-grid, .audience-icons-row.centered {
        flex-wrap: wrap;
    }
    .record-grid .record-step::after {
        display: none !important;
    }
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
    margin: 0;
    padding: 0;
    border: none;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

@media (max-width: 991px) {
    .footer-legal-links {
        order: 3;
        flex: 1 1 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
  .audience-icons-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .audience-icons-row .aud-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 65%;
    margin: 0 auto;
  }

  .audience-icons-row .aud-item {
    padding: 12px 6px !important;
  }

  .audience-icons-row .aud-item span {
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }
}

@media (min-width: 1025px) {
  .header .container {
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

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

  .main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    gap: 2vw !important;
  }

  .nav-list a {
    font-size: 13px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 768px) {
    .site-footer .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        gap: 30px; 
    }

    .footer-logo {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-value-line {
        margin: 15px 0 0 0;
        text-align: center !important;
    }

    .footer-tagline {
        order: 2;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .footer-tagline p,
    .footer-tagline a {
        text-align: center !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .footer-tagline p {
        margin-bottom: 8px !important;
    }

    .footer-legal-links {
        order: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

.service-card .service-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.about-hero-container {
    text-align: left;
}

.about-hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 15px;
}

.about-hero-desc {
    max-width: none !important;
}

.about-text-content {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

.about-text-content p {
    margin-bottom: 20px;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

.text-highlight {
    font-weight: 600;
    color: #ffffff;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.about-card-title {
    font-size: 22px;
    margin-bottom: 25px;
    margin-top: 0;
}

.about-card-highlight {
    margin-top: 25px;
    margin-bottom: 0;
}

.about-quote {
    border-left: 3px solid var(--primary-green);
    padding-left: 20px;
    margin-top: 40px;
}

.about-quote p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.cta-buttons-center {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.about-container .section-heading {
    color: #ffffff !important;
}

.services-hero-content {
    max-width: 100%;
    text-align: left;
}

.services-hero-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.services-hero-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: none;
}

.services-hero-content .highlight-white {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px !important;
}

.services-hero-content .highlight-green {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.services-heading {
    margin-bottom: 40px;
    text-align: left;
}

.service-card-subtitle {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.service-card-desc {
    margin-bottom: 20px;
}

.packages-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.packages-hero-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.packages-hero-desc {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0 auto 30px auto;
    max-width: 750px;
}

.packages-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-green {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: #ffffff;
}

.btn-outline-green:hover {
    background: var(--primary-green);
    color: #000000;
}

.packages-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.pricing-card.dark-bg {
    background: rgba(0, 0, 0, 0.3);
}

.pricing-card.featured-card {
    border-color: var(--primary-green);
}

.pricing-card h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.pricing-card .price.price-text {
    font-size: 24px;
}

.pricing-card .target-audience {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 15px;
}

.pricing-card-highlight {
    color: var(--primary-green);
    font-size: 14px;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.pricing-card .best-for {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.pricing-btn {
    text-align: center;
    margin-top: auto;
}

.upgrade-section {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 40px;
    margin-top: 40px;
}

.upgrade-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 24px;
}

.upgrade-subtitle {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 600;
}

.upgrade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.upgrade-item-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

.upgrade-item-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.upgrade-list {
    list-style: none;
    padding: 0;
    color: #ffffff;
    line-height: 1.8;
}

.upgrade-list-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.text-green {
    color: var(--primary-green);
}

.realtor-section {
    background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
    border-top: 2px solid var(--primary-green);
    padding: 80px 0;
}

.realtor-heading {
    text-align: center;
    margin-bottom: 10px;
}

.realtor-subheading {
    text-align: center;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.realtor-desc {
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
}

.realtor-featured-upgrade {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-green);
}

.rf-upgrade-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.rf-upgrade-subtitle {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.rf-upgrade-desc {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.rf-upgrade-note {
    color: #ffffff;
    font-style: italic;
    margin-bottom: 15px;
}

.rf-upgrade-list {
    color: var(--text-gray);
    margin-bottom: 20px;
    padding-left: 20px;
}

.rf-upgrade-disclaimer {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.table-responsive {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.compare-table th, 
.compare-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.compare-table th {
    color: #ffffff;
    font-weight: 600;
}

.compare-table td:first-child {
    text-align: left;
    color: #ffffff;
    font-weight: 500;
}

.text-light-gray {
    color: #ccc;
}

.check-icon {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 18px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.resources-hero-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.resources-hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.resources-hero-desc {
    max-width: none;
}

.pg-subtitle {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.pg-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pg-desc.mb-30 {
    margin-bottom: 30px;
}

.pg-categories-wrap {
    margin-bottom: 40px;
}

.pg-categories-title {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.pg-categories-list {
    color: var(--primary-green);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

.pg-cta-banner {
    margin-bottom: 60px;
}

.pg-cta-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.pg-cta-desc {
    margin-bottom: 20px;
}

.prep-section {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.prep-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prep-card-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
}

.prep-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.prep-card-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.insights-subheading {
    margin-bottom: 40px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.insight-card:hover {
    border-color: var(--primary-green);
}

.insight-card-inner {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-card-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.insight-card-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.insight-card-link {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
}

.featured-visual-section {
    margin-bottom: 60px;
}

.featured-image-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.featured-image-wrapper img {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 40px; 
}

@media (min-width: 992px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.example-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.example-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.example-video-wrap {
    width: 100%;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.example-video-wrap video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    background: #000;
}

.example-info {
    padding: 25px;
    flex-grow: 1;
}

.example-info h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

.example-info p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ADDITIONS — accessibility, ZIP checker, contact form success state */

/* Visually-hidden but screen-reader-accessible labels */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Restore a visible keyboard focus ring on the hamburger */
.hamburger:focus-visible {
    outline: 2px solid var(--primary-green) !important;
    outline-offset: 2px;
}

/* ZIP / service-area checker */
.zip-checker {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 22px 24px;
    margin-top: 24px;
    max-width: 480px;
}

.zip-checker h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: #ffffff;
}

.zip-checker p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 14px;
}

.zip-checker-row {
    display: flex;
    gap: 10px;
}

.zip-checker input[type="text"] {
    flex: 1;
    min-width: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 12px 14px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.zip-checker button {
    white-space: nowrap;
    padding: 12px 20px;
}

.zip-result {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    display: none;
}

.zip-result.show {
    display: block;
}

.zip-result.in-area {
    color: var(--primary-green);
}

.zip-result.out-area {
    color: #f0ad4e;
}

/* Contact / intake form success + error state */
.form-status-message {
    display: none;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 12px;
}

.form-status-message.show {
    display: block;
}

.form-status-message.success {
    background: rgba(103, 194, 32, 0.1);
    border: 1px solid var(--primary-green);
    color: #ffffff;
}

.form-status-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #ffffff;
}

/* Secondary "ask a question" link sitting next to the hero CTA */
.ask-question-link {
    margin-left: 4px;
}

/* Homepage hero layout tweaks: stack secondary links under the main
   CTA, move Watch Video directly above the feature cards, and add
   breathing room between the ZIP checker and the cards below it */
.hero-buttons-stacked {
    flex-direction: column;
    align-items: flex-start;
}

.hero-buttons-stacked .secondary-links {
    margin-top: 4px;
}

.zip-checker-spaced {
    margin-bottom: 36px;
}

.zip-checker-compact {
    width: 100%;
    max-width: none;
    margin: 24px 0 28px;
}

.zip-checker-compact .zip-result {
    margin-bottom: 0;
}

.watch-video-btn-above-cards {
    margin-bottom: 20px;
}

.btn {
    white-space: normal !important;
    word-wrap: break-word;
    height: auto;
    max-width: 100%;
    text-align: center;
    line-height: 1.4;
}

/* PHOTO GUIDE MODAL TWEAKS & SCROLLBARS */

.pg-modal-tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; 
    scrollbar-color: var(--primary-green) rgba(255, 255, 255, 0.05); 
    padding-bottom: 5px;
}

.pg-modal-tabs button {
    flex-shrink: 0; 
}

.pg-modal-tabs::-webkit-scrollbar,
.pg-modal-body::-webkit-scrollbar,
.pg-modal::-webkit-scrollbar,
.pg-modal-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.pg-modal-tabs::-webkit-scrollbar-track,
.pg-modal-body::-webkit-scrollbar-track,
.pg-modal::-webkit-scrollbar-track,
.pg-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.pg-modal-tabs::-webkit-scrollbar-thumb,
.pg-modal-body::-webkit-scrollbar-thumb,
.pg-modal::-webkit-scrollbar-thumb,
.pg-modal-content::-webkit-scrollbar-thumb {
    background: rgba(126, 217, 87, 0.5);
    border-radius: 4px;
}

.pg-modal-tabs::-webkit-scrollbar-thumb:hover,
.pg-modal-body::-webkit-scrollbar-thumb:hover,
.pg-modal::-webkit-scrollbar-thumb:hover,
.pg-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(126, 217, 87, 0.9);
}

.pg-modal-tabs .pg-tab:hover {
    color: var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.form-modal-iframe-wrap {
    height: 550px !important;
    max-height: 90vh;
}

.form-modal-iframe {
    height: 100% !important;
    min-height: 550px !important;
}


/* IPAD INTAKE BASELINE — full landscape workspace */
.modal-content.form-modal-wrapper {
    width: 100%;
    max-width: min(1180px, calc(100vw - 24px));
}

@media (min-width: 768px) and (max-width: 1366px) {
    .modal-overlay {
        padding: 8px;
        overflow: hidden;
    }

    .modal-content.form-modal-wrapper {
        width: calc(100vw - 16px);
        max-width: none;
        height: calc(100dvh - 16px);
        margin: 0;
    }

    .form-modal-inner {
        width: 100%;
        height: 100%;
        max-height: none;
        padding-top: 36px;
        border-radius: 10px;
    }

    .form-modal-close {
        top: 4px;
        right: 8px;
    }

    .form-modal-iframe-wrap {
        flex: 1 1 auto;
        height: auto !important;
        min-height: 0;
        max-height: none;
        padding: 0 8px;
    }

    .form-modal-iframe {
        top: 0;
        left: 8px;
        width: calc(100% - 16px);
        height: 100% !important;
        min-height: 0 !important;
    }
}


/* Package Builder */
.builder-choice {
    width: 100%;
    border: 0;
    cursor: pointer;
}
.builder-choice.is-selected,
.builder-price-choice.is-selected {
    background: #c8ff38;
    color: #050505;
    border-color: #c8ff38;
}
.builder-price-list {
    display: grid;
    gap: 8px;
}
.builder-price-list li {
    padding: 0;
    border: 0;
}
.builder-price-choice {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px;
    color: #dce2e6;
    background: #0b0d0f;
    border: 1px solid #343b40;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    line-height: 1.45;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.builder-price-choice:hover,
.builder-price-choice:focus-visible {
    border-color: #c8ff38;
    outline: none;
}
.builder-price-choice b {
    flex: 0 0 auto;
    color: #c8ff38;
    font-size: 12px;
    letter-spacing: .08em;
}
.builder-price-choice.is-selected b,
.builder-price-choice.is-selected .text-green {
    color: #050505;
}
.package-builder-panel {
    max-width: 920px;
    margin: 56px auto 0;
    padding: 32px;
    background: #111519;
    border: 1px solid #3a4248;
    border-left: 5px solid #c8ff38;
    border-radius: 16px;
    scroll-margin-top: 110px;
}
.package-builder-head,
.builder-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.package-builder-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    letter-spacing: .04em;
}
.builder-kicker {
    margin: 0 0 4px;
    color: #c8ff38;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
}
.builder-clear,
.builder-remove {
    color: #c8ff38;
    background: transparent;
    border: 1px solid #59636a;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}
.builder-clear {
    padding: 10px 14px;
}
.builder-intro,
.builder-estimate-note,
.builder-payment-note,
.builder-empty {
    color: #aeb7bd;
}
.builder-intro {
    margin: 18px 0 24px;
    line-height: 1.6;
}
.builder-empty {
    padding: 18px;
    border: 1px dashed #485158;
    border-radius: 8px;
}
.builder-selections {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}
.builder-selections li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: #fff;
    background: #090b0d;
    border: 1px solid #30373c;
    border-radius: 8px;
}
.builder-selections strong {
    color: #c8ff38;
    white-space: nowrap;
}
.builder-remove {
    padding: 7px 9px;
    font-size: 11px;
}
.builder-total-row {
    padding-top: 22px;
    border-top: 1px solid #465057;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}
.builder-count {
    color: #aeb7bd;
    font-size: 13px;
    font-weight: 600;
}
.builder-estimate-note {
    margin: 12px 0 20px;
    font-size: 13px;
}
.builder-continue {
    width: 100%;
    text-align: center;
}
.builder-payment-note {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}
@media (max-width: 700px) {
    .package-builder-panel {
        margin-top: 36px;
        padding: 22px 18px;
    }
    .builder-selections li {
        grid-template-columns: 1fr auto;
    }
    .builder-remove {
        grid-column: 1 / -1;
        justify-self: end;
    }
    .builder-total-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        font-size: 19px;
    }
    .builder-price-choice {
        align-items: flex-start;
    }
}


.builder-actions {
    display: grid;
    grid-template-columns: minmax(190px, .7fr) minmax(260px, 1.3fr);
    gap: 12px;
}
.builder-shop-more {
    width: 100%;
    cursor: pointer;
}
.builder-added-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 100000;
    width: min(560px, calc(100% - 32px));
    padding: 14px 18px;
    color: #050505;
    background: #c8ff38;
    border: 1px solid #dcff7c;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0,0,0,.45);
    font-weight: 800;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, 16px);
    transition: opacity .2s ease, transform .2s ease;
}
.builder-added-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}
@media (max-width: 700px) {
    .builder-actions {
        grid-template-columns: 1fr;
    }
}


.builder-payment-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin: 20px 0 14px;
    padding: 20px;
    background: #080a0b;
    border: 1px solid #4a545b;
    border-radius: 10px;
}
.builder-payment-label {
    margin: 0 0 3px;
    color: #aeb7bd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}
.builder-payment-amount {
    display: block;
    color: #c8ff38;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}
.builder-payment-terms {
    margin: 7px 0 0;
    color: #c7ced2;
    font-size: 13px;
    line-height: 1.5;
}
.builder-pay-now {
    min-width: 170px;
    cursor: pointer;
}
.builder-pay-now:disabled {
    cursor: not-allowed;
    opacity: .42;
}
.builder-payment-status {
    margin: 0 0 16px;
    padding: 12px 14px;
    color: #dce2e6;
    background: rgba(200,255,56,.07);
    border: 1px solid rgba(200,255,56,.35);
    border-radius: 8px;
    font-size: 13px;
}
@media (max-width: 700px) {
    .builder-payment-box {
        grid-template-columns: 1fr;
    }
    .builder-pay-now {
        width: 100%;
    }
}


/* Keep the Permanent Visual Record cards inside phone-width viewports. */
@media (max-width: 768px) {
  .process-card-box .record-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: 100%;
  }

  .process-card-box .record-step {
    min-width: 0;
    width: 100%;
  }
}


/* Contain all homepage lower sections within phone-width viewports. */
@media (max-width: 768px) {
  .bottom-grid-container {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .bottom-grid-container > *,
  .bottom-grid-container .card-box,
  .process-card-box,
  .audience-card-box,
  .record-subtitle,
  .record-step,
  .t-feat,
  .t-feat > div,
  .service-area-map-block {
    min-width: 0;
    max-width: 100%;
  }

  .bottom-grid-container .card-box {
    width: 100%;
    overflow: hidden;
  }

  .audience-icons-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .audience-icons-row .aud-item,
  .audience-icons-row .aud-item span {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .record-subtitle,
  .record-step,
  .t-feat p {
    overflow-wrap: anywhere;
  }

  .zip-checker-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }
}
