/* PorchMyPaper Landing Page Styles */
/* Based on Spectral template by HTML5 UP */

/* Reset & Base */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, ul, li, form, label, input, select, textarea, button, header, footer, section {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background: #2e3842;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.65em;
    font-weight: 400;
    letter-spacing: 0.025em;
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: dotted 1px;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

a:hover {
    border-bottom-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 1em 0;
}

h2 {
    font-size: 1.75em;
    line-height: 1.4em;
}

h3 {
    font-size: 1.2em;
    line-height: 1.5em;
}

p {
    margin: 0 0 2em 0;
}

ul {
    list-style: none;
    padding: 0;
}

/* Page Wrapper */
#page-wrapper {
    transition: opacity 0.5s ease;
    opacity: 1;
    padding-top: 0;
}

body.landing #page-wrapper {
    background-image: url("../images/banner.png");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Header */
#header {
    background: rgba(46, 56, 66, 0.95);
    height: 3.5rem;
    line-height: 3.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.2s ease;
}

#header h1 {
    height: inherit;
    left: 1.25em;
    line-height: inherit;
    position: absolute;
    top: 0;
    margin: 0;
}

#header h1 a {
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    color: #fff;
}

#header.alt {
    background: transparent;
}

#header nav {
    height: inherit;
    line-height: inherit;
    position: absolute;
    right: 1.25em;
    top: 0;
}

#header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#header nav ul li {
    display: inline-block;
    padding: 0;
    margin-left: 1.5em;
}

#header nav ul li a {
    border: none;
    color: #fff;
    display: block;
    font-size: 0.85em;
    letter-spacing: 0.02em;
    padding: 0 1em;
    transition: color 0.2s ease;
}

#header nav ul li a:hover {
    color: #ED4933;
}

#header nav ul li a.button {
    border: solid 2px #fff;
    border-radius: 3px;
    padding: 0.5em 1.5em;
    box-shadow: none;
}

#header nav ul li a.button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.menuToggle {
    outline: 0;
    position: relative;
}

.menuToggle span {
    margin-right: 0.5em;
}

#menu {
     transform: translateX(-20em);
    transition: transform 0.5s ease;
    overflow-scrolling: touch;
    background: #2e3842;
    color: white;
    height: 100%;
    max-width: 80%;
    overflow-y: auto;
    padding: 3em 2em;
    position: fixed;
    left: 0;
    top: 0;
    width: 20em;
    z-index: 10002;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#menu.visible {
    transform: translateX(0);
}

#menu ul {
    list-style: none;
    padding: 0;
}

#menu ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.125);
    padding: 1em 0;
}

#menu ul li:first-child {
    padding-top: 0;
}

#menu ul li:last-child {
    border-bottom: 0;
}

#menu ul li a {
    border: 0;
    color: inherit;
    display: block;
    font-size: 0.95em;
    letter-spacing: 0.02em;
    text-decoration: none;
}

/* Hero Section */
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 8em 2em 4em 2em;
    position: relative;
}

#hero .inner {
    max-width: 60em;
    margin: 0 auto;
}

#hero .logo-svg {
    margin-bottom: 2rem;
    width: 28rem;
    max-width: 90%;
}

#hero h2 {
    font-size: 2.5em;
    display: inline-block;
    padding: 0.35em 1em;
    position: relative;
    margin-bottom: 0.5em;
}

#hero h2 span {
    color: #ED4933;
}

#hero p {
    font-size: 1.1em;
    letter-spacing: 0.02em;
    margin-bottom: 2em;
}

#hero .more {
    border: none;
    bottom: 2em;
    color: inherit;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    outline: 0;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

#hero .more::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #fff;
    margin: 0.5em auto 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3em;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 3em 2em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    background-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.feature-card:nth-child(1) { background-color: rgba(0, 0, 0, 0.07); }
.feature-card:nth-child(2) { background-color: rgba(0, 0, 0, 0.14); }
.feature-card:nth-child(3) { background-color: rgba(0, 0, 0, 0.21); }
.feature-card:nth-child(4) { background-color: rgba(0, 0, 0, 0.28); }

.feature-card .icon-wrapper {
    margin-bottom: 1.5em;
}

.feature-card .icon-wrapper i {
    color: #ED4933;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

.feature-card p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Content Sections */
.wrapper {
    padding: 6em 0 4em 0;
}

.wrapper .inner {
    max-width: 70em;
    margin: 0 auto;
    padding: 0 3em;
}

.wrapper.style1 {
    background-color: rgba(46, 56, 66, 0.85);
}

.wrapper.style2 {
    background-color: rgba(0, 0, 0, 0.3);
}

.wrapper.style3 {
    background-color: rgba(46, 56, 66, 0.95);
}

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

/* Wave Border Decorations */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}

.wave-divider.wave-white svg {
    fill: #fff;
}

.wave-divider.wave-dark svg {
    fill: #171B34;
}

.wave-divider.wave-gray svg {
    fill: #f6f6f6;
}

.wave-divider.wave-section {
    margin: -1px 0;
}

/* Flip wave for bottom borders */
.wave-divider.flip svg {
    transform: rotate(180deg);
}

header.major {
    margin: 0 0 3em 0;
}

header.major h2 {
    display: inline-block;
    padding-bottom: 0.6em;
    position: relative;
    font-size: 2.1em;
}

header.major h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #ED4933;
    margin: 0.5em auto 0;
}

/* About Section */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
}

.content-text {
    text-align: left;
}

.content-text .lead {
    font-size: 1.05em;
    margin-bottom: 2em;
    line-height: 1.8em;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75em 0;
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

.feature-list li i {
    margin-right: 1em;
    font-size: 1.2em;
}

.feature-list li i.green {
    color: #4CAF50;
}

.content-image img.screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Demo Section */
.demo-split {
    align-items: center;
}

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

.demo-image img {
    max-width: 100%;
    height: auto;
}

.demo-text {
    text-align: left;
}

.demo-text h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.demo-text .lead {
    font-size: 1.1em;
    line-height: 1.8em;
    margin-bottom: 2em;
}

/* Pricing Section */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3em 2em;
    text-align: center;
}

.price-header {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 0.5em;
}

.price-header .currency {
    font-size: 0.5em;
    vertical-align: super;
}

.price-header .amount {
    font-size: 1.5em;
}

.price-subtext {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-minimum {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5em;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2em 0;
}

.pricing-features li {
    padding: 0.75em 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.pricing-features li.highlight {
    color: #ED4933;
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.02em;
}

.pricing-features li.note {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 0;
}

/* Contact Section */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 1em;
}

.contact-info p {
    line-height: 1.8em;
}

.contact-detail {
    margin-top: 2em;
    font-size: 1.05em;
}

.contact-form .form-group {
    margin-bottom: 1.5em;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 3px;
    color: #fff;
    padding: 0.75em 1em;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px #ED4933;
}

/* The select itself is translucent white on a dark section, but its dropdown list
   renders against the OS popup background — without this the options are white
   on white and effectively invisible. */
.contact-form select option {
    color: #333;
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form ::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-message {
    padding: 1em;
    margin-top: 1em;
    border-radius: 3px;
    text-align: center;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

/* Buttons */
.button {
    appearance: none;
    background-color: transparent;
    border-radius: 3px;
    border: 0;
    box-shadow: inset 0 0 0 2px #fff;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9em;
    font-weight: 600;
    height: 3.125em;
    letter-spacing: 0.02em;
    line-height: 3.125em;
    padding: 0 2.25em;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    white-space: nowrap;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 0;
}

.button.primary {
    background-color: #ED4933;
    box-shadow: none;
    color: #ffffff;
}

.button.primary:hover {
    background-color: #d63d28;
}

.button.large {
    font-size: 1em;
    height: 3.5em;
    line-height: 3.5em;
}

.actions {
    display: flex;
    list-style: none;
    padding: 0;
}

.actions li {
    padding: 0 0 0 1em;
}

.actions.special {
    justify-content: center;
}

.scrolly {
    border-bottom: none;
}

/* Footer */
#footer {
    padding: 4em 0 2em 0;
    background-color: rgba(29, 36, 42, 0.95);
    text-align: center;
}

#footer .icons {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

#footer .icons a {
    color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 0.5em;
}

#footer .icons a:hover {
    color: #fff;
}

#footer .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
    letter-spacing: 0.03em;
    list-style: none;
    padding: 0;
}

#footer .copyright li {
    border-left: solid 1px rgba(255, 255, 255, 0.5);
    display: inline-block;
    line-height: 1em;
    margin-left: 1em;
    padding-left: 1em;
}

#footer .copyright li:first-child {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
}

#footer .copyright li a {
    color: inherit;
    border: none;
}

#footer .copyright li a:hover {
    color: #fff;
}

/* Responsive Styles */
@media screen and (max-width: 1280px) {
    body {
        font-size: 17px;
    }
    
    .wrapper .inner {
        padding: 0 2em;
    }
}

@media screen and (max-width: 980px) {
    body {
        font-size: 16px;
    }
    
    .wrapper {
        padding: 4em 0 2em 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-split,
    .contact-split {
        grid-template-columns: 1fr;
        gap: 2em;
    }
    
    .content-text,
    .demo-text,
    .contact-info {
        text-align: center;
    }
    
    header.major h2 {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 736px) {
    body {
        font-size: 15px;
    }
    
    #header {
        height: 3rem;
        line-height: 3rem;
    }
    
    #header h1 {
        left: 1em;
    }
    
    #header h1 a {
        font-size: 0.9em;
    }
    
    #header nav {
        right: 1em;
    }
    
    #hero {
        min-height: auto;
        padding: 6em 2em 3em 2em;
    }
    
    #hero h2 {
        font-size: 1.75em;
    }
    
    #hero .more {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        border-top: solid 2px rgba(255, 255, 255, 0.125);
    }
    
    .wrapper {
        padding: 3em 0 1em 0;
    }
    
    .wrapper .inner {
        padding: 0 1.5em;
    }
    
    .demo-text h2 {
        font-size: 1.5em;
    }
    
    .price-header {
        font-size: 2em;
    }
    
    #footer .copyright li {
        border: 0;
        display: block;
        line-height: 1.65em;
        margin: 0;
        padding: 0.5em 0;
    }
}

@media screen and (max-width: 480px) {
    .button {
        width: 100%;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .actions li {
        padding: 0.5em 0;
        width: 100%;
    }
}

/* Preload Animation */
body.is-preload #hero h2 {
    opacity: 0;
    transform: scale(0.95);
}

body.is-preload #hero .more {
    opacity: 0;
    transform: translateY(2em);
}

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

/* Fix pre-existing invisible body text: solution cards use a light background
   but inherit the global white body text. Give their copy a readable dark tone. */
.solution-card p {
    color: #4a4a4a;
}

/* Demo form sits on a white card — force readable text despite the dark body default */
.demo-form-wrapper label {
    color: #333;
}

.demo-form-wrapper input,
.demo-form-wrapper select,
.demo-form-wrapper textarea {
    color: #333;
    background: #fff;
}

/* ==========================================================================
   Version 1.1 additions — Story, Timeline, Audiences, Route Optimization,
   Why PorchMyPaper, and Industry Experience.
   These extend the existing brand system (dark navy #2e3842, orange #ED4933,
   uppercase headings) rather than replacing it.
   ========================================================================== */

/* Shared subheadline used under new section headers */
.section-subhead {
    max-width: 780px;
    margin: 0 auto 1em auto;
    font-size: 1.05em;
    line-height: 1.9em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: none;
    letter-spacing: 0.02em;
}

/* Header brand + hero wordmark kept visually identical after H1 cleanup */
#header .site-title {
    height: inherit;
    left: 1.25em;
    line-height: inherit;
    position: absolute;
    top: 0;
    margin: 0;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 0.02em;
}

#header .site-title a {
    border: none;
    color: #fff;
}

/* --- Built From Real Experience (founder story) --- */
.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5em;
    align-items: start;
    text-align: left;
    margin-top: 1em;
}

.story-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1em;
    line-height: 1.85em;
    margin-bottom: 1.25em;
    text-transform: none;
    letter-spacing: 0.02em;
}

.story-copy p:last-child {
    margin-bottom: 0;
}

.story-quote {
    border-left: 3px solid #ED4933;
    padding: 0.25em 0 0.25em 1.25em;
    margin: 1.75em 0;
    font-style: italic;
    color: #fff;
}

.story-quote .q-answer {
    display: block;
    margin-top: 0.5em;
    color: #ED4933;
    font-weight: 600;
}

.story-aside {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2em;
}

.story-aside h3 {
    font-size: 1em;
    color: #ED4933;
    margin-bottom: 1em;
}

.story-aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.story-aside li {
    display: flex;
    align-items: flex-start;
    gap: 0.75em;
    padding: 0.6em 0;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: none;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.story-aside li:last-child {
    border-bottom: 0;
}

.story-aside li i {
    color: #ED4933;
    margin-top: 0.2em;
}

/* --- Horizontal Timeline --- */
.pmp-timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 3.5em 0 0 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pmp-timeline li {
    position: relative;
    flex: 1 0 0;
    min-width: 110px;
    padding: 2.75em 0.5em 0 0.5em;
    text-align: center;
}

/* connecting line */
.pmp-timeline li::before {
    content: '';
    position: absolute;
    top: 0.9em;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(249, 147, 51, 0.35);
    z-index: 0;
}

.pmp-timeline li:last-child::before {
    display: none;
}

/* node dot */
.pmp-timeline li::after {
    content: '';
    position: absolute;
    top: 0.35em;
    left: 50%;
    transform: translateX(-50%);
    width: 1.1em;
    height: 1.1em;
    border-radius: 50%;
    background: #2e3842;
    border: 3px solid #ED4933;
    z-index: 1;
}

.pmp-timeline li.is-endpoint::after {
    background: #ED4933;
}

.pmp-timeline .t-year {
    display: block;
    font-weight: 800;
    color: #ED4933;
    letter-spacing: 0.1em;
    font-size: 0.9em;
    margin-bottom: 0.4em;
}

.pmp-timeline .t-label {
    display: block;
    font-size: 0.82em;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    letter-spacing: 0.02em;
}

/* --- Card grids shared (Who We Help, Why PorchMyPaper) --- */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75em;
    margin-top: 3em;
    text-align: left;
}

.pmp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2em;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.pmp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 147, 51, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.pmp-card .card-icon {
    color: #ED4933;
    font-size: 1.75rem;
    margin-bottom: 0.75em;
}

.pmp-card h3 {
    font-size: 1.05em;
    margin-bottom: 0.4em;
    line-height: 1.5em;
}

.pmp-card .card-note {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9em;
    line-height: 1.7em;
    margin-bottom: 1.25em;
    text-transform: none;
    letter-spacing: 0.02em;
}

.pmp-card .capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.pmp-card .capability-list li {
    background: rgba(249, 147, 51, 0.12);
    color: #ffc38a;
    border-radius: 999px;
    padding: 0.3em 0.9em;
    font-size: 0.78em;
    letter-spacing: 0.03em;
    text-transform: none;
}

/* Why PorchMyPaper benefit cards (icon + short benefit) */
.why-card {
    display: flex;
    gap: 1em;
    align-items: flex-start;
}

.why-card .card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 2.5rem;
    text-align: center;
}

.why-card .why-body h3 {
    margin-bottom: 0.35em;
}

.why-card .why-body p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9em;
    line-height: 1.7em;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.02em;
}

/* --- Route Optimization feature highlight --- */
.route-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5em;
    align-items: center;
    text-align: left;
    margin-top: 1em;
}

.route-copy h2 {
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 2em;
    margin-bottom: 0.5em;
    text-align: left;
    display: block;
}

.route-copy .lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05em;
    line-height: 1.85em;
    margin-bottom: 1.5em;
    text-transform: none;
    letter-spacing: 0.02em;
}

.route-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75em 0;
}

.route-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.85em;
    padding: 0.55em 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98em;
    text-transform: none;
    letter-spacing: 0.02em;
}

.route-benefits li i {
    color: #ED4933;
    margin-top: 0.2em;
}

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

.route-illustration svg {
    width: 100%;
    height: auto;
    max-width: 520px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.route-note {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: none;
    letter-spacing: 0.02em;
}

/* --- Industry Experience credibility --- */
.industry-pubs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85em;
    margin: 2.5em auto 1.5em auto;
    max-width: 900px;
    padding: 0;
    list-style: none;
}

.industry-pubs li {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.7em 1.4em;
    font-size: 0.95em;
    color: #fff;
    letter-spacing: 0.03em;
}

.industry-region {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05em;
    margin-top: 1em;
    text-transform: none;
    letter-spacing: 0.02em;
}

.industry-disclaimer {
    max-width: 720px;
    margin: 1.5em auto 0 auto;
    font-size: 0.82em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.7em;
}

/* --- Responsive for V1.1 sections --- */
@media screen and (max-width: 980px) {
    .story-grid,
    .route-highlight {
        grid-template-columns: 1fr;
        gap: 2.5em;
    }

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

    .route-copy h2 {
        text-align: center;
    }
}

@media screen and (max-width: 736px) {
    .pmp-timeline {
        flex-direction: column;
        gap: 0;
    }

    .pmp-timeline li {
        flex: none;
        min-width: 0;
        padding: 0 0 1.75em 2.5em;
        text-align: left;
    }

    /* vertical connector on mobile */
    .pmp-timeline li::before {
        top: 0.5em;
        left: 0.5em;
        width: 2px;
        height: 100%;
    }

    .pmp-timeline li::after {
        top: 0.25em;
        left: 0.5em;
        transform: none;
    }
}

/* ==========================================================================
   Version 1.2 additions - Pass 4 modernization: desktop nav, hero glow,
   red accent system aligned to the logo (#ED4933).
   ========================================================================== */

/* Desktop navigation: inline links on wide screens, drawer on mobile */
.desktop-nav {
    display: none;
}

@media screen and (min-width: 981px) {
    #header nav ul.nav-mobile {
        display: none;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        height: inherit;
    }

    #header nav ul.desktop-nav li {
        display: inline-block;
        margin-left: 0.25em;
    }

    #header .desktop-nav li a.button.primary {
        border: none;
        box-shadow: none;
        background-color: #ED4933;
        color: #fff;
        line-height: 1;
        height: auto;
        padding: 0.8em 1.4em;
        margin-left: 0.75em;
        border-radius: 6px;
    }

    #header .desktop-nav li a.button.primary:hover {
        background-color: #d63d28;
    }
}

/* Warm dawn glow behind the hero content */
#hero {
    background: radial-gradient(ellipse 70% 55% at 50% 42%, rgba(237, 73, 51, 0.14), rgba(237, 73, 51, 0) 70%);
}

/* Softer corners across buttons */
.button {
    border-radius: 6px;
}

/* --- FAQ section --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: solid 1px rgba(255, 255, 255, 0.12);
    padding: 0.25em 0;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05em;
    padding: 1em 2em 1em 0;
    position: relative;
    list-style: none;
    outline: none;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0.25em;
    top: 50%;
    transform: translateY(-50%);
    color: #ED4933;
    font-size: 1.4em;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '\2013';
}

.faq-item p {
    margin: 0 0 1.25em 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* --- Customer reviews --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-left: solid 3px #ED4933;
    border-radius: 8px;
    padding: 2rem;
    margin: 0;
    text-align: left;
}

.review-quote {
    font-style: italic;
    margin-bottom: 1.25em;
    line-height: 1.7;
}

.review-attribution strong {
    display: block;
    color: #fff;
}

.review-attribution span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9em;
}
