@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Fraunces:ital,wght@0,300;0,600;0,700;1,300;1,600&display=swap');

/*
Theme Name: Akira Solutions
Author: Your Name
Description: A custom WordPress theme for Akira Solutions
Version: 2.0
*/

/* ===========================
   CSS RESET & BASE STYLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
   TYPOGRAPHY SYSTEM
   Fraunces (headings) + DM Sans (body)
=========================== */

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0D1F4E;
}

p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* ===========================
   TYPE SCALE — SINGLE SOURCE OF TRUTH
   All heading sizes live here only.
   Do not set font-size on h1/h2/h3 anywhere else.
=========================== */

/* Hero — unique large treatment */
.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.15;
}

/* All section h2s across every page */
h2 {
    font-size: 2.2rem;
}

/* Card and subsection h3s */
h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.1rem;
}

/* Mobile type scale */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

/* ===========================
   GLOBAL FONT ENFORCEMENT
   No paragraph text below 1.1rem anywhere on the site.
   WCAG 2.1 AA compliance for NDIS providers.
=========================== */

.why-card p,
.service-body p,
.pillar-right p,
.hiw-step-right p,
.guarantee-rule-right p,
.guarantee-tier-content p,
.contact-step p,
.contact-detail-item p,
.faq-answer p,
.compliance-content p,
.about-content p,
.problem-inner p,
.ecosystem-intro,
.ecosystem-note,
.reviews-content p,
.void-item p,
.guarantee-void-intro,
.guarantee-explainer-inner p,
.akira-text p,
.about-section p,
.why-intro,
.section-intro {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    font-family: 'DM Sans', sans-serif !important;
}

/* Callout / note text — smaller but still readable */
.hiw-detail p,
.guarantee-rule-note p,
.guarantee-checklist-item p,
.provide-item p,
.card-description,
.plaque-sub {
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

/* ===========================
   UTILITY CLASSES
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.coral-italic {
    color: #E8614A;
    font-style: italic;
}

.section-title {
    font-family: 'Fraunces', serif;
    color: #0D1F4E;
    margin-bottom: 2rem;
}

.section-intro {
    max-width: 800px;
    margin-bottom: 3rem;
    color: #4a5568;
}

.section-cta {
    margin-top: 3rem;
}

/* ===========================
   HEADER & NAVIGATION
=========================== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .site-header {
        padding: 1.5rem 1rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

/* Hamburger */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: #0D1F4E;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile nav drawer */
.main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #0D1F4E;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
}

.main-navigation.active {
    right: 0;
}

.main-navigation ul {
    list-style: none;
}

.main-navigation li {
    margin-bottom: 2rem;
    text-align: right;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #E8614A;
}

/* Desktop nav */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .main-navigation {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .main-navigation ul {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }

    .main-navigation li {
        margin-bottom: 0;
    }

    .main-navigation a {
        font-size: 0.95rem;
        color: #0D1F4E;
        font-family: 'DM Sans', sans-serif;
        font-weight: 500;
    }

    .main-navigation a:hover {
        color: #E8614A;
    }
}

/* Nav special items */
.main-navigation a.nav-guarantee {
    color: #E8614A !important;
    font-weight: 600;
}

.main-navigation a.nav-contact-btn {
    background: #1a1a1a;
    color: #ffffff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.main-navigation a.nav-contact-btn:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
    background-color: #E8614A;
    color: #ffffff !important;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff !important;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.7);
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.btn-pricing {
    display: block;
    width: 100%;
    background-color: #E8614A;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-pricing:hover {
    background-color: #d44f38;
    transform: translateY(-2px);
}

.btn-about {
    display: inline-block;
    background-color: #E8614A;
    color: #ffffff !important;
    padding: 0.85rem 1.75rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-about:hover {
    background-color: #d44f38;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.5rem !important;
    font-size: 1rem !important;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
    background: #0D1F4E;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: left;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    right: 100px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 97, 74, 0.08);
    pointer-events: none;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #E8614A;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: 'Fraunces', serif;
    margin-bottom: 2rem;
    color: #ffffff;
    animation: fadeInUp 1.2s ease;
}

.hero-subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    max-width: 600px;
    animation: fadeIn 1.6s ease;
}

.hero-guarantee {
    color: #E8614A !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s ease;
    margin-top: 2rem;
}

/* Hero overrides for blue-border inside hero */
.hero-section .blue-border {
    border-left: none;
    padding-left: 0;
    margin: 2rem 0 0;
}

.hero-section .blue-border p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1.5rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ===========================
   BLUE BORDER CALLOUT
=========================== */
.blue-border {
    border-left: 4px solid #E8614A;
    padding-left: 2rem;
    margin: 2rem 0;
}

.blue-border p {
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background-color: #0D1F4E;
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
}

/* ===========================
   PRICING SECTION
=========================== */
.pricing-section {
    background-color: #f7f8fa;
    padding: 5rem 2rem;
}

.pricing-scroll-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
}

.pricing-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.pricing-scroll-wrapper::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.pricing-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #0D1F4E;
    border-radius: 10px;
}

.pricing-card-new {
    background-color: #ffffff;
    min-width: 350px;
    max-width: 350px;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(13, 31, 78, 0.08);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card-new:hover {
    transform: translateY(-5px);
}

.card-description {
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-family: 'DM Sans', sans-serif;
}

.price-wrapper {
    text-align: left;
    margin: 1rem 0;
}

.price-prefix,
.price-suffix {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.pricing-card-new .price {
    font-size: 2.5rem;
    font-weight: 300;
    color: #0D1F4E;
    font-family: 'Fraunces', serif;
    line-height: 1.1;
}

.toggle-features {
    background: transparent;
    border: 1.5px solid #0D1F4E;
    color: #0D1F4E;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.toggle-features:hover {
    background: #0D1F4E;
    color: #ffffff;
}

.features-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.features-list.hidden {
    max-height: 0;
}

.features-list.visible {
    max-height: 500px;
    margin-bottom: 1.5rem;
}

.features-list ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #4a5568;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'DM Sans', sans-serif;
}

.features-list li:before {
    content: "✓ ";
    color: #E8614A;
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 5rem 1.5rem;
    }

    .pricing-card-new {
        min-width: 300px;
        max-width: 300px;
    }
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
    padding: 5rem 2rem;
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 1.5rem;
    }
}

.profile-photo-float {
    float: left;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #E8614A;
    margin: 0 2rem 1rem 0;
    shape-outside: circle(50%);
}

@media (max-width: 768px) {
    .profile-photo-float {
        width: 120px;
        height: 120px;
        margin: 0 1rem 1rem 0;
    }
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
    background-color: #0D1F4E;
    padding: 5rem 2rem;
}

.faq-section h2 {
    color: #ffffff;
}

.faq-section .section-intro {
    color: rgba(255,255,255,0.7);
}

.faq-list {
    max-width: 800px;
    margin: 3rem 0 0;
}

.faq-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: none;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.faq-question:hover {
    color: #E8614A;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #E8614A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: rgba(255,255,255,0.7);
}

.faq-answer b {
    color: #ffffff;
}

.faq-more {
    margin-top: 2rem;
}

.faq-more-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #E8614A;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(232,97,74,0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.faq-more-link:hover {
    border-color: #E8614A;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
}

/* ===========================
   FINAL CTA SECTION
=========================== */
.final-cta-section {
    background: #0D1F4E;
    padding: 5rem 2rem
}

.final-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-inner h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-inner > p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.final-cta-sub {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.45) !important;
    margin-top: 1.25rem !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 5rem 1.5rem;
    }
}

/* ===========================
   HOMEPAGE — PROBLEM SECTION
=========================== */
.problem-section {
    background: #f7f8fa;
    padding: 5rem 2rem;
}

.problem-inner {
    max-width: 800px;
}

.problem-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8614A;
    margin-bottom: 1.25rem;
}

.problem-inner p strong {
    color: #0D1F4E;
    font-weight: 700;
}

.problem-callout {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #ffffff;
    border-left: 4px solid #E8614A;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
    box-shadow: 0 2px 12px rgba(13,31,78,0.06);
}

.problem-callout-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.problem-callout p {
    color: #0D1F4E;
    font-style: italic;
    margin: 0;
    font-family: 'Fraunces', serif;
    font-weight: 300;
}

@media (max-width: 768px) {
    .problem-section {
        padding: 5rem 1.5rem;
    }
}

/* ===========================
   WHY AKIRA SECTION
=========================== */
.why-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.why-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8614A;
    margin-bottom: 1rem;
}

.why-intro {
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: #f7f8fa;
    border-radius: 12px;
    padding: 2rem;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
    border-color: #E8614A;
    transform: translateY(-4px);
}

.why-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.why-card p {
    margin: 0;
}

@media (max-width: 768px) {
    .why-section {
        padding: 5rem 1.5rem;
    }

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

/* ===========================
   ECOSYSTEM SECTION
=========================== */
.ecosystem-section {
    background: #0D1F4E;
    padding: 5rem 2rem;
}

.ecosystem-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8614A;
    margin-bottom: 1rem;
}

.ecosystem-section h2 {
    color: #ffffff;
    max-width: 600px;
}

.ecosystem-intro {
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin-bottom: 4rem;
}

.ecosystem-diagram {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    margin: 0 0 3rem;
    max-width: 900px;
    flex-wrap: wrap;
}

.eco-inputs,
.eco-outputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eco-arrows-in,
.eco-arrows-out {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.eco-arrow {
    font-size: 1.2rem;
    color: #E8614A;
    opacity: 0.7;
    line-height: 1;
    padding: 0.6rem 0;
}

.eco-node {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    min-width: 140px;
}

.eco-node-icon {
    font-size: 1rem;
}

.eco-node span:last-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

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

.eco-hub-inner {
    background: #E8614A;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 0 40px rgba(232,97,74,0.3);
}

.eco-hub-inner span {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
}

.eco-hub-sub {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.7) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ecosystem-note {
    color: rgba(255,255,255,0.7);
    font-family: 'Fraunces', serif;
    font-weight: 300;
    text-align: left;
    margin: 0;
    max-width: 600px;
}

@media (max-width: 768px) {
    .ecosystem-section {
        padding: 5rem 1.5rem;
    }

    .ecosystem-diagram {
        flex-direction: column;
        gap: 1rem;
    }

    .eco-arrows-in,
    .eco-arrows-out {
        flex-direction: row;
        justify-content: center;
    }

    .eco-arrow {
        transform: rotate(90deg);
    }

    .eco-inputs,
    .eco-outputs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .eco-node {
        min-width: 120px;
        flex: 1;
    }
}

/* ===========================
   REVIEW AUTOMATION SECTION
=========================== */
.reviews-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.reviews-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8614A;
    margin-bottom: 1rem;
}

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


@media (max-width: 768px) {
    .reviews-section {
        padding: 5rem 1.5rem;
    }

    .reviews-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .plaque-placeholder {
        max-width: 240px;
    }
}

/* ===========================
   NDIS COMPLIANCE PAGE
=========================== */
.compliance-intro {
    background: #ffffff;
    padding: 5rem 2rem 2rem;
}

.compliance-section {
    padding: 0 2rem 5rem;
    background: #ffffff;
}

.compliance-block {
    display: flex;
    gap: 2.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

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

.compliance-icon {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #E8614A;
    opacity: 0.4;
    min-width: 60px;
    line-height: 1;
    padding-top: 4px;
}

.compliance-content h3 {
    margin-bottom: 0.75rem;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.compliance-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #4a5568;
    padding: 0.4rem 0 0.4rem 1.25rem;
    border-bottom: 1px solid #f7f8fa;
    position: relative;
}

.compliance-list li::before {
    content: '—';
    color: #E8614A;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.compliance-badge {
    display: inline-block;
    background: #f0f4ff;
    color: #0D1F4E;
    border: 1px solid #d0d9f0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
}

.compliance-trust-strip {
    background: #f7f8fa;
    padding: 5rem 2rem;
}

.fail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fail-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(13, 31, 78, 0.06);
}

.fail-icon {
    color: #E8614A;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.fail-item p {
    margin: 0;
}

.compliance-cta-section {
    background: #0D1F4E;
    padding: 5rem 2rem;
    text-align: center;
}

.compliance-cta-section h2 {
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 1rem;
}

.compliance-cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .compliance-block {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
    }

    .compliance-icon {
        font-size: 1.8rem;
        min-width: auto;
    }

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

/* ===========================
   HOW IT WORKS PAGE
=========================== */
.hiw-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.hiw-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.hiw-step-left {
    display: none;
}

.hiw-step-right {
    flex: 1;
}

.hiw-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8614A;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.hiw-step-right h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.hiw-step-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    color: #4a5568;
}

.hiw-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #f7f8fa;
    border-left: 3px solid #E8614A;
    padding: 1rem 1.25rem;
    border-radius: 0 6px 6px 0;
    margin-top: 1.25rem;
}

.hiw-detail span {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hiw-detail p {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hiw-provide-section {
    background: #f7f8fa;
    padding: 5rem 2rem;
}

.provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.provide-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(13, 31, 78, 0.06);
}

.provide-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.provide-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.provide-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
}

.hiw-guarantee {
    background: #0D1F4E;
    padding: 5rem 2rem;
}

.guarantee-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-text h2 {
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.guarantee-text p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hiw-section {
        padding: 5rem 1.5rem;
    }

    .hiw-step {
        gap: 1.25rem;
    }

    .hiw-step-right {
        padding-bottom: 2.5rem;
    }

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

    .guarantee-inner {
        flex-direction: column;
        text-align: center;
    }
}
/* ===========================
   SERVICES PAGE
=========================== */
.services-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.service-block {
    padding: 3.5rem 0;
}

.service-block:first-child {
    padding-top: 0;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E8614A;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.service-header h2 {
    margin-bottom: 0.5rem;
}

.service-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.5rem;
}

.service-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    padding: 0.5rem 0 0.5rem 1.25rem;
    position: relative;
    border-bottom: 1px solid #f7f8fa;
}

.service-list li::before {
    content: '✓';
    color: #E8614A;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.service-note {
    display: inline-block;
    background: #fff8f0;
    border: 1px solid #f5d5c0;
    color: #c04a2e;
    padding: 0.6rem 1.1rem;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.service-divider {
    height: 1px;
    background: #f0f0f0;
    width: 100%;
}

.services-cta {
    background: #0D1F4E;
    padding: 5rem 2rem;
    text-align: center;
}

.services-cta h2 {
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services-section {
        padding: 5rem 1.5rem;
    }

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}
/* ===========================
   OUR PHILOSOPHY PAGE
=========================== */
.philosophy-intro {
    padding: 5rem 2rem 0;
    background: #ffffff;
}

.akira-meaning {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.akira-definition {
    font-size: 1.1rem;
    color: #E8614A;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}

.philosophy-pillars {
    padding: 3rem 2rem 5rem;
    background: #ffffff;
}

.pillar-block {
    display: flex;
    gap: 3rem;
    padding: 4rem 0;
    align-items: flex-start;
}

.pillar-left {
    min-width: 180px;
    flex-shrink: 0;
}

.pillar-number {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #E8614A;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pillar-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #E8614A;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
}

.pillar-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    color: #4a5568;
}

.pillar-right h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pillar-callout {
    border-left: 3px solid #E8614A;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #0D1F4E;
    font-weight: 300;
    line-height: 1.8;
    background: #fafafa;
}

.pillar-divider {
    height: 1px;
    background: #f0f0f0;
}

.philosophy-about {
    background: #f7f8fa;
    padding: 5rem 2rem;
}

.philosophy-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    color: #4a5568;
}

.about-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.philosophy-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #E8614A;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .philosophy-intro {
        padding: 4rem 1.5rem 0;
    }

    .akira-meaning {
        flex-direction: column;
        gap: 1rem;
    }

    .philosophy-pillars {
        padding: 0 1.5rem 5rem;
    }

    .pillar-block {
        flex-direction: column;
        gap: 1.5rem;
        padding: 3rem 0;
    }

    .pillar-left {
        min-width: auto;
    }

    .pillar-number {
        font-size: 2rem;
    }

    .about-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .philosophy-photo {
        width: 140px;
        height: 140px;
    }
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-step-num {
    font-family: 'Fraunces', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: #E8614A;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-step strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0D1F4E;
    margin-bottom: 0.2rem;
}

.contact-step p {
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.contact-detail-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0D1F4E;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

.contact-detail-item p {
    margin: 0;
}

.contact-form-wrap {
    position: sticky;
    top: 100px;
}

.contact-form-inner {
    background: #f7f8fa;
    border-radius: 16px;
    padding: 2.5rem;
}

/* Fluent Forms brand overrides */
.contact-form-inner .ff-el-form-control {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 0.75rem 1rem !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.95rem !important;
    color: #1a1a1a !important;
    background: #ffffff !important;
    transition: border-color 0.2s ease !important;
}

.contact-form-inner .ff-el-form-control:focus {
    border-color: #0D1F4E !important;
    outline: none !important;
    box-shadow: none !important;
}

.contact-form-inner .ff-el-group label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #0D1F4E !important;
    margin-bottom: 0.4rem !important;
}

.contact-form-inner .ff-btn-submit {
    background-color: #E8614A !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 0.85rem 2rem !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.contact-form-inner .ff-btn-submit:hover {
    background-color: #d44f38 !important;
}

.contact-reassurance {
    background: #0D1F4E;
    padding: 5rem 2rem;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.reassurance-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.75rem;
}

.reassurance-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.reassurance-item p {
    color: rgba(255,255,255,0.65);
    margin: 0;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 1.5rem;
    }

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

    .contact-form-wrap {
        position: static;
    }

    .contact-form-inner {
        padding: 1.75rem;
    }

    .reassurance-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

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

/* ===========================
   7 DAY GUARANTEE PAGE
=========================== */
.guarantee-explainer {
    background: #ffffff;
    padding: 5rem 2rem 0;
}

.guarantee-explainer-inner {
    max-width: 800px;
}

.guarantee-explainer-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
}

.guarantee-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8614A;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.guarantee-rules-section {
    background: #ffffff;
    padding: 2rem 2rem 5rem;
}

.guarantee-rule {
    display: flex;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.guarantee-rule-left {
    display: none;
}

.guarantee-rule-right {
    flex: 1;
}

.guarantee-rule-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8614A;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.guarantee-rule-right h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.guarantee-rule-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    color: #4a5568;
}

.guarantee-rule-right p strong {
    color: #0D1F4E;
    font-weight: 700;
}

.guarantee-rule-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #f7f8fa;
    border-left: 3px solid #E8614A;
    padding: 1rem 1.25rem;
    border-radius: 0 6px 6px 0;
    margin-top: 1.25rem;
}

.guarantee-rule-note span {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-rule-note p {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.guarantee-checklist {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.guarantee-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f7f8fa;
    background: #ffffff;
}

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

.gcl-icon {
    color: #E8614A;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
}

.guarantee-checklist-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D1F4E;
    margin-bottom: 0.2rem;
}

.guarantee-checklist-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
}

.guarantee-void-section {
    background: #f7f8fa;
    padding: 5rem 2rem;
}

.guarantee-void-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    color: #4a5568;
    margin-bottom: 2rem;
}

.void-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.void-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(13,31,78,0.05);
}

.void-icon {
    color: #E8614A;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.void-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D1F4E;
    margin-bottom: 0.35rem;
}

.void-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
}

.guarantee-tier-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.guarantee-tier-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-tier-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    color: #4a5568;
}

.guarantee-tier-card {
    background: #f7f8fa;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #E8614A;
}

.guarantee-price {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #0D1F4E;
    line-height: 1;
    margin: 0.5rem 0 0;
}

.guarantee-price-note {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0.25rem 0 1.5rem;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
}

.guarantee-tier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.guarantee-tier-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    padding: 0.5rem 0 0.5rem 1.25rem;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.guarantee-tier-list li::before {
    content: '✓';
    color: #E8614A;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.guarantee-tier-list li strong {
    color: #0D1F4E;
}

@media (max-width: 768px) {
    .guarantee-rules-section {
        padding: 3rem 1.5rem 5rem;
    }

    .guarantee-rule {
        gap: 1.25rem;
    }

    .guarantee-rule-right {
        padding-bottom: 2.5rem;
    }

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

    .guarantee-tier-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .guarantee-void-section {
        padding: 5rem 1.5rem;
    }

    .guarantee-tier-section {
        padding: 5rem 1.5rem;
    }
}

.plaque-photo {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(13,31,78,0.12);
    display: block;
    margin: 0 auto;
}

/* ===========================
   MODALS
=========================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 31, 78, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    position: relative;
}

.modal-inner h3 {
    margin-bottom: 0.5rem;
}

.modal-inner p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #4a5568;
    line-height: 1;
}

.modal-close:hover {
    color: #0D1F4E;
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0D1F4E;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color 0.2s ease;
    appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #0D1F4E;
    outline: none;
}

.modal-inner .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .modal-inner {
        padding: 2rem 1.5rem;
    }
}
