/* ================================
   VoxelForge Clean Theme
   SeekMake-powered public site
================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: #f7f7f2;
    font-family: 'Poppins', Arial, sans-serif;
    background:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        radial-gradient(circle at 16% 8%, rgba(124, 255, 138, 0.12), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.07), transparent 26%),
        #0d0e0d;
    background-size:
        48px 48px,
        48px 48px,
        auto,
        auto,
        auto;
}

a {
    color: inherit;
}

/* ================================
   Header / Brand
================================ */

.site-header {
    min-height: 96px;
    padding: 22px clamp(22px, 6vw, 86px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: rgba(9, 10, 9, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.forge-logo {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid; 
    place-items: center; 
} 
 
.forge-svg { 
    width: 56px; 
    height: 56px; 
    overflow: visible;
}

.forge-voxel-main {
    fill: #f2f2f2;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.22));
}

.forge-voxel-small {
    fill: #d9d9d9;
}

.forge-voxel-accent {
    fill: #7cff8a;
}

.forge-voxel-glow {
    fill: #7cff8a;
    opacity: 0.92;
    filter: drop-shadow(0 0 9px rgba(124, 255, 138, 0.85));
}

.logo-text strong {
    display: block;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.logo-text small {
    display: block;
    margin-top: 4px;
    color: #a6aea8;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
    flex-wrap: wrap;
}

.site-nav a {
    color: #d9ddd9;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.site-nav a:hover {
    color: #7cff8a;
}

/* ================================
   Shared Buttons / Text
================================ */

.eyebrow {
    color: #7cff8a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.primary-btn,
.secondary-btn {
    min-height: 54px;
    padding: 15px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: 0.2s ease;
}

.primary-btn {
    background: #7cff8a;
    color: #051006;
    box-shadow: 0 0 26px rgba(124, 255, 138, 0.16);
}

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

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    border-color: #7cff8a;
    color: #7cff8a;
}

/* ================================
   Hero
================================ */

.hero {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 96px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
}

.hero-copy {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.hero h1,
.split-section h2,
.section-heading h2,
.final-cta h2,
.quote-intro h1 {
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: -0.07em;
}

.hero h1 {
    margin: 20px 0 24px;
    max-width: 760px;
    font-size: clamp(52px, 6.4vw, 92px);
    line-height: 0.94;
}

.hero-text {
    max-width: 760px;
    color: #c7d0c9;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.7;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ================================
   Workflow Panel
================================ */

.hero-panel {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 520px;
    justify-self: end;
    padding: 38px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        rgba(16, 18, 16, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
    overflow: hidden;
}

.panel-topline {
    position: absolute;
    top: 0;
    left: 38px;
    right: 38px;
    height: 4px;
    background: #7cff8a;
    border-radius: 0 0 999px 999px;
    box-shadow: 0 0 20px rgba(124, 255, 138, 0.7);
}

.panel-label {
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-size: 13px;
}

.mini-steps {
    display: grid;
    gap: 18px;
}

.mini-steps div {
    padding: 24px 22px;
    border-radius: 22px;
    text-align: center;
    background: rgba(0, 0, 0, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.mini-steps span {
    color: #7cff8a;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.06em;
}

.mini-steps strong {
    display: block;
    margin: 8px 0 10px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
}

.mini-steps p {
    color: #b8c2ba;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================
   Homepage Sections
================================ */

.statement-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 34px;
    padding: 34px 0;
    border-top: 1px solid rgba(124, 255, 138, 0.34);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.statement-section p {
    max-width: 920px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.split-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 34px;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.split-section h2 {
    margin-top: 16px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.98;
}

.split-section p {
    color: #c7d0c9;
    line-height: 1.78;
    font-size: 18px;
}

.split-section p + p {
    margin-top: 18px;
}

/* ================================
   Process Strip
================================ */

.process-strip {
    width: min(1180px, calc(100% - 44px));
    margin: 56px auto 96px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
}

.process-item {
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.process-item:last-child {
    border-right: 0;
}

.process-item span {
    color: #7cff8a;
    font-weight: 900;
    font-size: 13px;
}

.process-item h3 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-size: 20px;
}

.process-item p {
    color: #b8c2ba;
    line-height: 1.65;
    font-size: 15px;
}

/* ================================
   Materials
================================ */

.materials-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 100px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin-top: 16px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
}

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

.material-info-grid {
    grid-template-columns: repeat(5, 1fr);
}

.material-card {
    min-height: 220px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    text-decoration: none;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: 0.2s ease;
}

.material-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 255, 138, 0.5);
}

.material-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 23px;
}

.material-card p {
    color: #c7d0c9;
    line-height: 1.65;
    font-size: 15px;
}

/* ================================
   Quote Page / SeekMake
================================ */

.quote-intro {
    width: min(1080px, calc(100% - 44px));
    margin: 0 auto;
    padding: 84px 0 32px;
    text-align: center;
}

.quote-intro h1 {
    margin: 20px auto 18px;
    max-width: 920px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 0.95;
}

.quote-intro p {
    max-width: 740px;
    margin: 0 auto;
    color: #c7d0c9;
    font-size: 18px;
    line-height: 1.7;
}

.seekmake-section {
    width: min(1500px, calc(100% - 44px));
    margin: 0 auto 100px;
}

.quote-frame-top {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 26px 26px 0 0;
    background: #101210;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
}

.quote-frame-top strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.quote-frame-top span {
    display: block;
    margin-top: 2px;
    color: #aab4ad;
    font-size: 13px;
}

.frame-back-link {
    color: #7cff8a;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.seekmake-frame-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 26px 26px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

#seekmake-quote-container {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

.seekmake-embed-iq {
    display: block;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

/* ================================
   Final CTA / Footer
================================ */

.final-cta {
    width: min(980px, calc(100% - 44px));
    margin: 74px auto 100px;
    padding: 58px;
    text-align: center;
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(124, 255, 138, 0.17), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.final-cta h2 {
    margin: 16px auto 28px;
    max-width: 760px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
}

.site-footer {
    padding: 34px 20px;
    text-align: center;
    color: #9ca7b0;
    background: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

/* ================================
   Responsive
================================ */

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

    .hero h1 {
        max-width: 900px;
        font-size: clamp(52px, 8vw, 92px);
    }

    .hero-panel {
        justify-self: stretch;
        max-width: 760px;
    }

    .process-strip,
    .material-grid,
    .material-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        border-right: 0;
    }

    .process-item:nth-child(1),
    .process-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        gap: 18px;
    }

    .hero {
        padding-top: 72px;
    }

    .process-strip,
    .material-grid,
    .material-info-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .process-item:last-child {
        border-bottom: 0;
    }

    .quote-frame-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 20px 18px;
    }

    .forge-logo,
    .forge-svg {
        width: 46px;
        height: 46px;
    }

    .logo-text strong {
        font-size: 20px;
    }

    .logo-text small {
        font-size: 10px;
    }

    .site-nav a {
        font-size: 14px;
    }

    .hero,
    .statement-section,
    .split-section,
    .process-strip,
    .materials-section,
    .final-cta,
    .quote-intro,
    .seekmake-section {
        width: min(100% - 28px, 1180px);
    }

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

    .hero-panel,
    .final-cta {
        padding: 28px;
        border-radius: 26px;
    }

    .statement-section p {
        font-size: 30px;
    }

    .split-section h2,
    .section-heading h2,
    .final-cta h2 {
        font-size: 38px;
    }

    .mini-steps strong {
        font-size: 19px;
    }
}
/* ================================
   Official VoxelForge Logo Image
================================ */

.brand-logo-image {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
}
/* ================================
   FAQ / Contact Section
================================ */

.faq-contact-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.faq-card,
.contact-card {
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-card {
    min-height: 230px;
    padding: 26px;
}

.faq-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
}

.faq-card p {
    color: #c7d0c9;
    line-height: 1.65;
    font-size: 15px;
}

.contact-card {
    padding: 34px;
    text-align: center;
}

.contact-card h3 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.contact-card p {
    color: #c7d0c9;
    font-size: 17px;
    line-height: 1.7;
}

.contact-email {
    margin-top: 18px;
    display: inline-flex;
    color: #7cff8a;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 900;
    text-decoration: none;
    word-break: break-word;
}

.contact-email:hover {
    color: #ffffff;
}

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

@media (max-width: 640px) {
    .faq-contact-section {
        width: min(100% - 28px, 1180px);
    }

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

    .contact-card {
        padding: 28px;
    }
}
/* ================================
   Header Contact Button
================================ */

.nav-contact-btn {
    padding: 10px 17px;
    border-radius: 999px;
    background: #7cff8a;
    color: #051006 !important;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(124, 255, 138, 0.14);
}

.nav-contact-btn:hover {
    background: #ffffff;
    color: #051006 !important;
    transform: translateY(-1px);
}
/* ================================
   Header Contact Button
================================ */

.nav-contact-btn {
    padding: 10px 17px;
    border-radius: 999px;
    background: #7cff8a;
    color: #051006 !important;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(124, 255, 138, 0.14);
}

.nav-contact-btn:hover {
    background: #ffffff;
    color: #051006 !important;
    transform: translateY(-1px);
}

/* ================================
   FAQ / Contact Section
================================ */

.faq-contact-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.faq-card,
.contact-card {
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-card {
    min-height: 230px;
    padding: 26px;
}

.faq-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
}

.faq-card p {
    color: #c7d0c9;
    line-height: 1.65;
    font-size: 15px;
}

.contact-card {
    padding: 34px;
    text-align: center;
}

.contact-card h3 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.contact-card p {
    color: #c7d0c9;
    font-size: 17px;
    line-height: 1.7;
}

.contact-email {
    margin-top: 18px;
    display: inline-flex;
    color: #7cff8a;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 900;
    text-decoration: none;
    word-break: break-word;
}

.contact-email:hover {
    color: #ffffff;
}

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

@media (max-width: 640px) {
    .faq-contact-section {
        width: min(100% - 28px, 1180px);
    }

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

    .contact-card {
        padding: 28px;
    }
}
/* ================================
   VoxelForge Clean Theme
   SeekMake-powered public site
================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: #f7f7f2;
    font-family: 'Poppins', Arial, sans-serif;
    background:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        radial-gradient(circle at 16% 8%, rgba(124, 255, 138, 0.12), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.07), transparent 26%),
        #0d0e0d;
    background-size:
        48px 48px,
        48px 48px,
        auto,
        auto,
        auto;
}

a {
    color: inherit;
}

/* ================================
   Header / Brand
================================ */

.site-header {
    min-height: 96px;
    padding: 22px clamp(22px, 6vw, 86px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: rgba(9, 10, 9, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.forge-logo {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
}

.brand-logo-image {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
}

.logo-text strong {
    display: block;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.logo-text small {
    display: block;
    margin-top: 4px;
    color: #a6aea8;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
    flex-wrap: wrap;
}

.site-nav a {
    color: #d9ddd9;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.site-nav a:hover {
    color: #7cff8a;
}

/* ================================
   Shared Buttons / Text
================================ */

.eyebrow {
    color: #7cff8a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.primary-btn,
.secondary-btn,
.site-nav .nav-contact-btn {
    min-height: 54px;
    padding: 15px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: 0.2s ease;
}

.primary-btn,
.site-nav .nav-contact-btn {
    background: #7cff8a;
    color: #051006 !important;
    box-shadow: 0 0 26px rgba(124, 255, 138, 0.16);
}

.primary-btn:hover,
.site-nav .nav-contact-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #051006 !important;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    border-color: #7cff8a;
    color: #7cff8a;
}

/* ================================
   Hero
================================ */

.hero {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 96px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
}

.hero-copy {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.hero h1,
.split-section h2,
.section-heading h2,
.final-cta h2,
.quote-intro h1 {
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: -0.07em;
}

.hero h1 {
    margin: 20px 0 24px;
    max-width: 760px;
    font-size: clamp(52px, 6.4vw, 92px);
    line-height: 0.94;
}

.hero-text {
    max-width: 760px;
    color: #c7d0c9;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.7;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ================================
   Workflow Panel
================================ */

.hero-panel {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 520px;
    justify-self: end;
    padding: 38px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        rgba(16, 18, 16, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
    overflow: hidden;
}

.panel-topline {
    position: absolute;
    top: 0;
    left: 38px;
    right: 38px;
    height: 4px;
    background: #7cff8a;
    border-radius: 0 0 999px 999px;
    box-shadow: 0 0 20px rgba(124, 255, 138, 0.7);
}

.panel-label {
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-size: 13px;
}

.mini-steps {
    display: grid;
    gap: 18px;
}

.mini-steps div {
    padding: 24px 22px;
    border-radius: 22px;
    text-align: center;
    background: rgba(0, 0, 0, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.mini-steps span {
    color: #7cff8a;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.06em;
}

.mini-steps strong {
    display: block;
    margin: 8px 0 10px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
}

.mini-steps p {
    color: #b8c2ba;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================
   Homepage Sections
================================ */

.statement-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 34px;
    padding: 34px 0;
    border-top: 1px solid rgba(124, 255, 138, 0.34);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.statement-section p {
    max-width: 920px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.split-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 34px;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.split-section h2 {
    margin-top: 16px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.98;
}

.split-section p {
    color: #c7d0c9;
    line-height: 1.78;
    font-size: 18px;
}

.split-section p + p {
    margin-top: 18px;
}

/* ================================
   Process Strip
================================ */

.process-strip {
    width: min(1180px, calc(100% - 44px));
    margin: 56px auto 96px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
}

.process-item {
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.process-item:last-child {
    border-right: 0;
}

.process-item span {
    color: #7cff8a;
    font-weight: 900;
    font-size: 13px;
}

.process-item h3 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-size: 20px;
}

.process-item p {
    color: #b8c2ba;
    line-height: 1.65;
    font-size: 15px;
}

/* ================================
   Materials
================================ */

.materials-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 100px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin-top: 16px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
}

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

.material-info-grid {
    grid-template-columns: repeat(5, 1fr);
}

.material-card {
    min-height: 220px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    text-decoration: none;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: 0.2s ease;
}

.material-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 255, 138, 0.5);
}

.material-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 23px;
}

.material-card p {
    color: #c7d0c9;
    line-height: 1.65;
    font-size: 15px;
}

/* ================================
   FAQ / Contact Section
================================ */

.faq-contact-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto 100px;
    scroll-margin-top: 130px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.faq-card,
.contact-card {
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-card {
    min-height: 230px;
    padding: 26px;
}

.faq-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
}

.faq-card p {
    color: #c7d0c9;
    line-height: 1.65;
    font-size: 15px;
}

.contact-card {
    padding: 34px;
    text-align: center;
}

.contact-card h3 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.contact-card p {
    color: #c7d0c9;
    font-size: 17px;
    line-height: 1.7;
}

.contact-email {
    margin-top: 18px;
    display: inline-flex;
    color: #7cff8a;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 900;
    text-decoration: none;
    word-break: break-word;
}

.contact-email:hover {
    color: #ffffff;
}

/* ================================
   Quote Page / SeekMake
================================ */

.quote-intro {
    width: min(1080px, calc(100% - 44px));
    margin: 0 auto;
    padding: 84px 0 32px;
    text-align: center;
}

.quote-intro h1 {
    margin: 20px auto 18px;
    max-width: 920px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 0.95;
}

.quote-intro p {
    max-width: 740px;
    margin: 0 auto;
    color: #c7d0c9;
    font-size: 18px;
    line-height: 1.7;
}

.seekmake-section {
    width: min(1500px, calc(100% - 44px));
    margin: 0 auto 100px;
}

.quote-frame-top {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 26px 26px 0 0;
    background: #101210;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
}

.quote-frame-top strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.quote-frame-top span {
    display: block;
    margin-top: 2px;
    color: #aab4ad;
    font-size: 13px;
}

.frame-back-link {
    color: #7cff8a;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.seekmake-frame-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 26px 26px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

#seekmake-quote-container {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

.seekmake-embed-iq {
    display: block;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

/* ================================
   Final CTA / Footer
================================ */

.final-cta {
    width: min(980px, calc(100% - 44px));
    margin: 74px auto 100px;
    padding: 58px;
    text-align: center;
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(124, 255, 138, 0.17), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.final-cta h2 {
    margin: 16px auto 28px;
    max-width: 760px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
}

.site-footer {
    padding: 34px 20px;
    text-align: center;
    color: #9ca7b0;
    background: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

/* ================================
   Responsive
================================ */

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

    .hero h1 {
        max-width: 900px;
        font-size: clamp(52px, 8vw, 92px);
    }

    .hero-panel {
        justify-self: stretch;
        max-width: 760px;
    }

    .process-strip,
    .material-grid,
    .material-info-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        border-right: 0;
    }

    .process-item:nth-child(1),
    .process-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        gap: 14px;
    }

    .hero {
        padding-top: 72px;
    }

    .process-strip,
    .material-grid,
    .material-info-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .process-item:last-child {
        border-bottom: 0;
    }

    .quote-frame-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 20px 18px;
    }

    .forge-logo,
    .brand-logo-image {
        width: 46px;
        height: 46px;
    }

    .logo-text strong {
        font-size: 20px;
    }

    .logo-text small {
        font-size: 10px;
    }

    .site-nav a {
        font-size: 14px;
    }

    .primary-btn,
    .secondary-btn,
    .site-nav .nav-contact-btn {
        min-height: 48px;
        padding: 13px 18px;
        font-size: 14px;
    }

    .hero,
    .statement-section,
    .split-section,
    .process-strip,
    .materials-section,
    .faq-contact-section,
    .final-cta,
    .quote-intro,
    .seekmake-section {
        width: min(100% - 28px, 1180px);
    }

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

    .hero-panel,
    .final-cta {
        padding: 28px;
        border-radius: 26px;
    }

    .statement-section p {
        font-size: 30px;
    }

    .split-section h2,
    .section-heading h2,
    .final-cta h2 {
        font-size: 38px;
    }

    .mini-steps strong {
        font-size: 19px;
    }

    .contact-card {
        padding: 28px;
    }
}
/* ================================
   Policy Pages
================================ */

.policy-page {
    width: min(980px, calc(100% - 44px));
    margin: 0 auto;
    padding: 84px 0 100px;
}

.policy-page h1 {
    margin: 18px 0 10px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.policy-updated {
    color: #aab4ad;
    margin-bottom: 28px;
}

.policy-card {
    padding: clamp(28px, 5vw, 52px);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.policy-card h2 {
    margin: 30px 0 10px;
    color: #ffffff;
    font-size: 24px;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card p {
    color: #c7d0c9;
    line-height: 1.75;
    font-size: 16px;
}

.policy-card a {
    color: #7cff8a;
    font-weight: 800;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c7d0c9;
    text-decoration: none;
    font-weight: 700;
}

.footer-links a:hover {
    color: #7cff8a;
}
/* ================================
   Policy Pages / Footer Links
================================ */

.policy-page {
    width: min(980px, calc(100% - 44px));
    margin: 0 auto;
    padding: 84px 0 100px;
}

.policy-page h1 {
    margin: 18px 0 10px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.policy-updated {
    color: #aab4ad;
    margin-bottom: 28px;
}

.policy-card {
    padding: clamp(28px, 5vw, 52px);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.policy-card h2 {
    margin: 30px 0 10px;
    color: #ffffff;
    font-size: 24px;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card p {
    color: #c7d0c9;
    line-height: 1.75;
    font-size: 16px;
}

.policy-card a {
    color: #7cff8a;
    font-weight: 800;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8f9992;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.footer-links a:hover {
    color: #7cff8a;
}
/* ================================
   Policy Pages / Footer Links
================================ */

.policy-page {
    width: min(980px, calc(100% - 44px));
    margin: 0 auto;
    padding: 84px 0 100px;
}

.policy-page h1 {
    margin: 18px 0 10px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.policy-updated {
    color: #aab4ad;
    margin-bottom: 28px;
}

.policy-card {
    padding: clamp(28px, 5vw, 52px);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.policy-card h2 {
    margin: 30px 0 10px;
    color: #ffffff;
    font-size: 24px;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card p {
    color: #c7d0c9;
    line-height: 1.75;
    font-size: 16px;
}

.policy-card a {
    color: #7cff8a;
    font-weight: 800;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8f9992;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.footer-links a:hover {
    color: #7cff8a;
}
/* ================================
   Quote Policy Notice
================================ */

.policy-notice {
    width: min(1080px, calc(100% - 44px));
    margin: 0 auto 28px;
    padding: 22px 26px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(124, 255, 138, 0.10), rgba(255, 255, 255, 0.03)),
        rgba(15, 17, 15, 0.92);
    border: 1px solid rgba(124, 255, 138, 0.28);
}

.policy-notice strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 17px;
}

.policy-notice p {
    color: #c7d0c9;
    line-height: 1.65;
    font-size: 15px;
}

.policy-notice a {
    color: #7cff8a;
    font-weight: 800;
    text-decoration: none;
}

.policy-notice a:hover {
    color: #ffffff;
}