/* ============================================
   ピッチラボ — live-cloud-806.css
   Deep navy #1a2255 + warm orange #e8621a
   Editorial split layout from DNA template
   ============================================ */

/* ---- Reset & base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    color: #1a1a2e;
    background: #fff;
    padding-top: 80px;
    transition: padding-top 0.3s ease;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

:root {
    --navy: #1a2255;
    --navy-dark: #111740;
    --orange: #e8621a;
    --orange-light: #f0884a;
    --white: #ffffff;
    --off-white: #f5f5f0;
    --gray: #6b6b7a;
    --gray-light: #e8e8ec;
    --text: #1a1a2e;
    --max-w: 1400px;
    --radius: 3px;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    line-height: 1.3;
    color: var(--navy);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    color: #3a3a4a;
    line-height: 1.8;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.accent-rule {
    width: 40px;
    height: 2px;
    background: var(--orange);
    margin: 0.75rem 0 1.25rem;
}

/* ---- Layout helpers ---- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 80px 0;
}

.section--dark {
    background: var(--navy);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section--dark .eyebrow {
    color: var(--orange-light);
}

.section--gray {
    background: var(--off-white);
}

.hairline {
    border: none;
    border-top: 1px solid var(--gray-light);
    margin: 0;
}

.hairline--max {
    max-width: var(--max-w);
    margin: 0 auto;
}

/* ---- Header / Nav ---- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    height: 80px;
    display: flex;
    align-items: center;
}

.header-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-link svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-text span {
    color: var(--orange);
}

.main-nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--orange);
    background: rgba(232, 98, 26, 0.06);
}

.nav-link--active {
    color: var(--orange);
}

.nav-phone-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--navy);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    transition: background 0.2s, color 0.2s;
}

.nav-phone-link:hover {
    background: var(--navy);
    color: var(--white);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1010;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: transform 0.3s, opacity 0.3s;
    display: block;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 990;
    overflow-y: auto;
    padding: 2rem;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-light);
}

/* ---- Hero — split 50/50 ---- */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
}

.hero-image-col {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text-col {
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-content {
    max-width: 540px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: var(--enter-delay, 0.3s);
}

.hero-meta span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-meta .dot {
    color: var(--orange);
}

.hero-accent {
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: var(--enter-delay, 0.4s);
}

.hero-accent div {
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.hero-title {
    color: var(--white) !important;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: var(--enter-delay, 0.5s);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: var(--enter-delay, 0.7s);
}

.hero-description {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: var(--enter-delay, 0.9s);
}

.scroll-indicator {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: var(--enter-delay, 1.1s);
}

.scroll-indicator button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.scroll-indicator button:hover {
    color: var(--orange);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
}

.btn--primary:hover {
    background: #c94e10;
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---- Alternating image-text spreads ---- */
.spread-section {
    padding: 80px 0;
}

.spread-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.spread-grid--reverse .spread-image {
    order: 2;
}

.spread-grid--reverse .spread-content {
    order: 1;
}

.spread-image {
    position: relative;
    overflow: hidden;
    min-height: 440px;
}

.spread-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spread-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ---- Cards grid ---- */
.cards-grid {
    display: grid;
    gap: 2rem;
}

.cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    border-top: 2px solid var(--gray-light);
    padding-top: 1.5rem;
}

.card--dark {
    border-color: rgba(255, 255, 255, 0.15);
}

.card-icon {
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card--dark .card-title {
    color: var(--white);
}

.card-text {
    font-size: 0.9rem;
    color: var(--gray);
}

.card--dark .card-text {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Process / numbered timeline ---- */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-light);
}

.process-step:last-child {
    border-bottom: 1px solid var(--gray-light);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
    padding-top: 0.1em;
}

.step-content {}

.step-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ---- Pricing ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    border: 1.5px solid var(--gray-light);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: box-shadow 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 8px 32px rgba(26, 34, 85, 0.1);
}

.pricing-card--featured {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(232, 98, 26, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin: 1.25rem 0;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Noto Serif JP', serif;
}

.pricing-price .currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orange);
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.pricing-price .period {
    font-size: 0.85rem;
    color: var(--gray);
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--gray-light);
    margin: 1.25rem 0;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #3a3a4a;
}

.pricing-feature i {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.8rem;
}

/* ---- Team cards ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {}

.team-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s;
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ---- Contact band (dark) ---- */
.contact-band {
    padding: 80px 0;
    background: var(--navy);
}

.contact-band-header {
    margin-bottom: 3rem;
}

.contact-band-headline {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.contact-band-lead {
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 560px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-detail-block {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.25rem;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.detail-link {
    color: var(--orange-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---- Contact form ---- */
.contact-form {
    max-width: 680px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-grid--full {
    grid-column: 1 / -1;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.form-label--white {
    color: rgba(255, 255, 255, 0.8);
}

.form-input,
.form-textarea,
.form-select {
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--navy);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ---- CTA closer ---- */
.cta-closer {
    background: var(--off-white);
    padding: 80px 0;
}

.closer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.closer-title {
    margin-bottom: 1rem;
}

.closer-text {
    color: var(--gray);
    margin-bottom: 2rem;
}

.closer-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.closer-aside-block {
    border-top: 1px solid var(--gray-light);
    padding-top: 1rem;
}

.closer-aside-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.4rem;
}

.closer-aside-text {
    font-size: 0.9rem;
    color: var(--gray);
}

.closer-aside-link {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 600;
}

/* ---- Newsletter band ---- */
.newsletter-section {
    background: var(--navy-dark);
    padding: 60px 0;
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-title {
    color: var(--white) !important;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-fine {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.6rem;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--navy);
    padding: 60px 0 0;
}

.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand-col {}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-text span {
    color: var(--orange);
}

.footer-address {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
    background: var(--orange);
    color: var(--white);
}

.footer-nav-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: var(--orange-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: var(--orange-light);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---- Cookie banner ---- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy-dark);
    border-top: 2px solid var(--orange);
    padding: 1rem 2rem;
    display: none;
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent__text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.cookie-consent__link {
    color: var(--orange-light);
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.cookie-consent__btn--reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent__btn--reject:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.cookie-consent__btn--accept {
    background: var(--orange);
    color: var(--white);
}

.cookie-consent__btn--accept:hover {
    background: #c94e10;
}

/* ---- Animations ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Sub-page hero ---- */
.page-hero {
    background: var(--navy);
    padding: 80px 0 60px;
}

.page-hero .eyebrow {
    color: var(--orange-light);
}

.page-hero h1 {
    color: var(--white) !important;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 1rem;
    max-width: 600px;
}

/* ---- Prose (policy pages) ---- */
.prose {
    max-width: 820px;
    margin: 0 auto;
}

.prose h2 {
    margin: 2.5rem 0 1rem;
    font-size: 1.4rem;
}

.prose h3 {
    margin: 2rem 0 0.75rem;
    font-size: 1.1rem;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose ul {
    margin: 1rem 0 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.prose ul li {
    font-size: 0.95rem;
    color: #3a3a4a;
    list-style: disc;
}

.prose a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---- FAQ / Accordion ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-light);
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    gap: 1rem;
}

.faq-question i {
    color: var(--orange);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* ---- Toast ---- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast-notification {
    background: var(--navy);
    color: var(--white);
    border-left: 3px solid var(--orange);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.3s ease;
}

.toast-icon {
    color: var(--orange);
    flex-shrink: 0;
}

.toast-content {}

.toast-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.toast-message {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
}

.toast-close {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.toast-close:hover {
    color: var(--white);
}

/* ---- Skip link ---- */
.skip-to-content {
    position: absolute;
    top: -9999px;
    left: 1rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 99999;
}

.skip-to-content:focus {
    top: 1rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image-col {
        min-height: 360px;
    }

    .hero-text-col {
        padding: 60px 40px;
    }

    .spread-grid {
        grid-template-columns: 1fr;
    }

    .spread-grid--reverse .spread-image {
        order: 0;
    }

    .spread-grid--reverse .spread-content {
        order: 0;
    }

    .spread-image {
        min-height: 320px;
    }

    .spread-content {
        padding: 40px 2rem;
    }

    .cards-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .closer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .main-header {
        height: 70px;
    }

    .main-nav-list {
        display: none;
    }

    .nav-phone-link {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-text-col {
        padding: 50px 1.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .cards-grid--3,
    .cards-grid--2 {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}