/* CSS Document

Tooplate 2158 Forge Reality

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Industrial Brutalist Color Palette */
    --black: #0A0A0A;
    --concrete: #2C2C2C;
    --steel: #404040;
    --industrial-red: #17CBEB;
    --industrial-orange: #FF6B35;
    --light-gray: #A8A8A8;
    --white: #F5F5F5;
    --border: #1A1A1A;
    --cyan: #00FFFF;
    --darkblue:#0A0C82;
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Century Gothic', 'Futura', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-gray);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1600px;
    padding: 1rem 2rem;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--industrial-red);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo svg {
    width: 35px;
    height: 35px;
}

.logo:hover {
    color: var(--industrial-orange);
    transform: translateY(-2px);
}

.logo:hover svg path {
    fill: var(--industrial-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.newlogo  {
         position: absolute;
         z-index: 900;
          top: 5px;
          left: 250;
          width: 175px;
}

.newlogo img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 960px) {
     .newlogo {
         top: 10;
         left: 50;
        width: 105px;
}
}


.pricing-card img  {
    max-width: 100%; 
    height: auto; 
    display: block;
}

.pricing-diagram-zoom {
    display: block;
    width: 100%;
    margin: 0;
    padding: 4px;
    box-sizing: border-box;
    border: 1px solid var(--industrial-red);
    background: var(--black);
    cursor: zoom-in;
    line-height: 0;
}

.pricing-diagram-zoom:focus {
    outline: 2px solid var(--industrial-red);
    outline-offset: 3px;
}

.pricing-diagram-zoom:focus:not(:focus-visible) {
    outline: none;
}

.pricing-diagram-zoom:focus-visible {
    outline: 2px solid var(--industrial-red);
    outline-offset: 3px;
}

.pricing-diagram-zoom img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.image-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 11000;
    align-items: center;
    justify-content: center;
    padding: min(2rem, 4vw);
    background: rgba(5, 5, 8, 0.94);
    cursor: zoom-out;
    box-sizing: border-box;
}

.image-lightbox.is-open {
    display: flex;
}

.image-lightbox__img {
    max-width: min(96vw, 1400px);
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: auto;
    cursor: zoom-out;
}

/* Leyte map card: zoom scales whole card; pad/font compensated so title matches diagram card (2.5rem / 1.5rem .plan-name). */
.pricing-card.pricing-card--region-map {
    --leyte-card-scale: 0.3;
    --leyte-map-inner-scale: 0.728;
    --leyte-badge-scale: 3;
    /* How far the map shifts left on screen (compensated for card zoom below) */
    --leyte-map-shift-x: 4.25rem;
    position: relative;
    padding: calc(2.5rem / var(--leyte-card-scale));
    zoom: var(--leyte-card-scale);
    max-width: 100%;
    box-sizing: border-box;
}

/* Avoid global .pricing-card:hover transform fighting zoom on this card */
.pricing-card.pricing-card--region-map:hover {
    transform: none;
    border-color: var(--industrial-orange);
}

.pricing-card--region-map__badges {
    position: absolute;
    top: calc(2.5rem / var(--leyte-card-scale));
    right: calc(2.5rem / var(--leyte-card-scale));
    left: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(0.75rem * var(--leyte-badge-scale));
    pointer-events: none;
}

.pricing-card--region-map__badge-img {
    width: calc(6.5rem * var(--leyte-badge-scale));
    height: calc(6.5rem * var(--leyte-badge-scale));
    object-fit: contain;
    object-position: center;
    display: block;
}

.pricing-card--region-map__badge-link {
    display: block;
    pointer-events: auto;
}

/* Wide logos letterbox with contain; fill the same square as the flags (may crop edges slightly). */
.pricing-card--region-map__badge-img--logo {
    object-fit: cover;
}

.pricing-card.pricing-card--region-map .plan-name {
    font-size: calc(1.5rem / var(--leyte-card-scale));
    margin-bottom: calc(1rem / var(--leyte-card-scale));
    padding: 0;
    padding-left: 0;
    padding-right: calc(6.5rem * var(--leyte-badge-scale) + 0.75rem);
    text-align: left;
}

.te-style-map {
    margin: 0;
    max-width: 100%;
}

.pricing-card--region-map .te-style-map__viewport--vector {
    position: relative;
    border: none;
    background: transparent;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Scroll-into-view: Leyte highlight only (.leyte-map-focus-pop; class from leyte-vector-map.js) */
@keyframes leyte-focus-scroll-pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.48);
    }
    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .pricing-card--region-map .leyte-map-focus-pop.leyte-map-focus-pop--scroll-animate {
        animation: leyte-focus-scroll-pop 2.45s cubic-bezier(0.28, 1.24, 0.42, 1) forwards;
        transform-box: fill-box;
        transform-origin: center center;
    }
}

.pricing-card--region-map .te-style-map__svg-host {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.te-style-map__svg-host {
    position: relative;
    z-index: 1;
    width: 100%;
    line-height: 0;
}

.te-style-map__svg-host--error {
    padding: 1.25rem 0.75rem;
    font-size: 0.8rem;
    color: var(--light-gray);
    line-height: 1.4;
}

.leyte-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* 150% × inner scale; shift left in pre-zoom coords so it reads correctly with zoom: 0.3 */
.pricing-card--region-map .leyte-map-svg {
    width: calc(150% * var(--leyte-map-inner-scale));
    max-width: none;
    flex-shrink: 0;
    transform: translateX(calc(-1 * var(--leyte-map-shift-x) / var(--leyte-card-scale)));
}

.pricing-card--region-map .leyte-map-svg--interactive {
    cursor: pointer;
}

.pricing-card--region-map .leyte-map-svg--interactive:focus {
    outline: none;
}

.pricing-card--region-map .leyte-map-svg--interactive:focus-visible {
    outline: 2px solid var(--industrial-red);
    outline-offset: 3px;
}

.leyte-map-ocean {
    fill: #05080c;
}

.leyte-map__p {
    fill: #38475a;
    stroke: #1a222c;
    stroke-width: 0.5;
    vector-effect: non-scaling-stroke;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.leyte-map__p--focus {
    fill: #17cbeb;
    stroke: #9cf0ff;
    stroke-width: 0.65;
    vector-effect: non-scaling-stroke;
}

.leyte-map-acreage-overlay {
    pointer-events: none;
    opacity: 0.95;
    /* Recolour extracted cyan PNG to the site's orange accent for contrast. */
    filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(1838%) hue-rotate(337deg) brightness(101%) contrast(101%);
}

/* Leyte map call-out: label box fixed; leader line re-anchored on zoom */
.leyte-map-callout-static {
    pointer-events: none;
}

.leyte-map-callout__leader {
    pointer-events: none;
    stroke: #17cbeb;
    stroke-width: 3.15;
    vector-effect: non-scaling-stroke;
}

/* Hide leader while Leyte scroll-pop runs (path math is zoom-only, not CSS scale). */
.leyte-map-svg--scroll-pop .leyte-map-callout__leader {
    opacity: 0;
}

.leyte-map-callout__box {
    fill: rgba(10, 10, 10, 0.92);
    stroke: #17cbeb;
    stroke-width: 1.75;
    vector-effect: non-scaling-stroke;
}

.leyte-map-callout__label {
    fill: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.leyte-map-callout__title {
    font-size: 37.8px;
    font-weight: 700;
}

.leyte-map-callout__subtitle {
    font-size: 31.5px;
    font-weight: 400;
}

.leyte-map-callout__dot {
    fill: var(--industrial-orange);
    stroke: #05080c;
    stroke-width: 1.05;
    vector-effect: non-scaling-stroke;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 2px solid var(--industrial-red);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:hover {
        background: var(--industrial-red);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--industrial-red);
}

.nav-links a.active {
    background: var(--industrial-red);
    color: var(--white);
}

.book-tour-btn {
    background: transparent;
    color: var(--industrial-red);
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--industrial-red);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book-tour-btn:hover {
    background: var(--industrial-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section with Rotating Backgrounds */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Extra height for parallax */
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.62;
    filter: brightness(0.72);
    background-image: url('images/Cover Image - Blue H2_high Quality_Less Dirt.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
   
}


.hero-content {
    position: relative;
    z-index: 2;
    font-size: 12px;
    text-align: center;
}


.hero h1 {
    margin-bottom: 1rem;
    line-height: 0.9;
   }

.hero h1 span {
    color: var(--industrial-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--industrial-red);
    margin-bottom: 2rem;
    text-transform: none;
}

.hero .hero-subtitle {
    text-transform: uppercase;
    /* Replaces removed spacer markup; keeps hero headline block visually weighted */
    margin-bottom: clamp(6rem, 18vh, 12rem);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 5rem;
margin-left: 3.5rem;
}

.btn-primary {
    background: var(--industrial-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 2px solid var(--industrial-red);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 1px solid var(--industrial-red);
  
}

.btn-secondary:hover {
    background: var(--steel);
    border-color: var(--steel);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--concrete);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--industrial-red), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2,
.section-header h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Tighter gap under mission tagline before intro copy */
.features .section-header {
    margin-bottom: 2rem;
}

.features .section-header .hero-subtitle {
    margin-bottom: 0.5rem;
}

.features-mission-intro {
    width: 100%;
    max-width: min(90ch, 58rem);
    margin: 0 auto 3rem;
    padding: 0 1rem;
    box-sizing: border-box;
    text-align: center;
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.65;
}

.features-mission-intro p {
    margin: 0 0 1rem;
}

.features-mission-intro p:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--black);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--industrial-red);
    transition: height 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, var(--industrial-red) 50%);
    transition: all 0.3s ease;
    opacity: 0;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--industrial-red);
    background: linear-gradient(135deg, var(--black) 0%, rgba(230,57,70,0.05) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--industrial-red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--industrial-red);
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--industrial-red);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.feature-card:hover .feature-icon {
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon.icon-24-7::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(230,57,70,0.3) 3px,
        rgba(230,57,70,0.3) 6px
    );
    z-index: -2;
}

.feature-card h3 {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.feature-card h3::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--industrial-orange);
    transition: width 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover h3::after {
    width: 60px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin: 0;
}


.feature-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--industrial-red);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Spaces Section */
.spaces {
    padding: 6rem 0;
    background: var(--black);
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.space-card {
    position: relative;
    height: 400px;
    background: var(--concrete);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.space-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

/* Ophiolite Systems cards: hover animation only, not clickable */
#spaces .spaces-grid .space-card {
    cursor: default;
}

#spaces .space-card:nth-child(1) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.8)), 
                url('images/New Hydrogen Generation Image.jpg');
    background-size: cover;
    background-position: center;
}

#spaces .space-card:nth-child(2) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.8)), 
                url('images/4section1.png');
    background-size: cover;
    background-position: center;
}

#spaces .space-card:nth-child(3) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.8)), 
                url('images/New Hydrogen Reservoir Image.jpg');
    background-size: cover;
    background-position: center;
}

#spaces .space-card:nth-child(4) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.8)), 
                url('images/toopate-forge-space-04.jpg');
    background-size: cover;
    background-position: center;
}

#spaces .space-card:nth-child(5) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.8)), 
                url('images/toopate-forge-space-05.jpg');
    background-size: cover;
    background-position: center;
}

#spaces .space-card:nth-child(6) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.8)), 
                url('images/toopate-forge-space-06.jpg');
    background-size: cover;
    background-position: center;
}

/* Leyte pillar cards: hover animation only, not clickable */
#pricing .spaces-grid.leyte-pillars .space-card {
    cursor: default;
}

#pricing .spaces-grid .space-card:nth-child(1) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.8)), 
                url('images/Ophiolites.png');
    background-size: cover;
    background-position: center;
}

#pricing .spaces-grid .space-card:nth-child(2) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.8)), 
                url('images/New Temp Gauge.jpg');
    background-size: cover;
    background-position: center;
}

#pricing .spaces-grid .space-card:nth-child(3) .space-thumbnail {
    background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.7)), 
                url('images/Sedimentary Cover.jpg');
    background-size: cover;
    background-position: center;
}

.space-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.9) 100%);
    transition: all 0.3s ease;
}

.space-card:hover .space-thumbnail {
    transform: scale(1.1);
}

.space-card:hover::after {
    background: linear-gradient(180deg, rgba(20,57,170,0.2) 0%, rgba(10,10,10,0.7) 100%);
}

.space-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 1;
    text-align: left;
}

/* Match .feature-card title + body (Unlocking Subsurface Hydrogen Reservoirs).
   Flex column keeps the orange rule under the title text (not at bottom of min-height box). */
.space-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.25;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.space-info h3::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--industrial-orange);
    transition: width 0.3s ease;
    flex-shrink: 0;
}

.space-card:hover .space-info h3::after {
    width: 60px;
}

.space-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin: 0;
}

.space-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.space-feature-tag {
    background: var(--steel);
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--concrete);
}

/* Leyte (#pricing): intro band, pillars first, map + diagram 2:1 */
#pricing .spaces-grid.leyte-pillars {
    margin-top: 0;
    margin-bottom: 0;
}

/* Desktop: shared row tracks align icons/titles/body (features) and image/text blocks (Leyte pillars) */
@media (min-width: 1024px) {
    .features .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto auto;
    }

    .features .feature-card {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
    }

    /* Leyte pillars: same 400px card footprint as #spaces .space-card; copy anchored to bottom (trim excess from subgrid above) */
    #pricing .spaces-grid.leyte-pillars {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #pricing .spaces-grid.leyte-pillars .space-card {
        display: block;
        height: 400px;
        min-height: 0;
    }

    #pricing .spaces-grid.leyte-pillars .space-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }

    #pricing .spaces-grid.leyte-pillars .space-info {
        display: block;
        position: absolute;
        top: 9.75rem;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        z-index: 2;
    }

    #pricing .spaces-grid.leyte-pillars .space-info h3 {
        min-height: 2.75em;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
    }

    #pricing .spaces-grid.leyte-pillars .space-info p {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }

    #pricing .spaces-grid.leyte-pillars .space-card::after {
        z-index: 1;
        pointer-events: none;
    }

    /* Ophiolite Systems: same text band + title metrics as Leyte pillars */
    #spaces .spaces-grid .space-thumbnail {
        z-index: 0;
        pointer-events: none;
    }

    #spaces .spaces-grid .space-info {
        display: block;
        position: absolute;
        top: 9.75rem;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        z-index: 2;
    }

    #spaces .spaces-grid .space-info h3 {
        min-height: 2.75em;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
    }

    #spaces .spaces-grid .space-info p {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }

    #spaces .spaces-grid .space-card::after {
        z-index: 1;
        pointer-events: none;
    }
}

@media (max-width: 1023px) {
    .feature-card h3 {
        min-height: 3.25em;
    }

    #pricing .spaces-grid.leyte-pillars .space-info {
        display: flex;
        flex-direction: column;
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        top: auto;
    }

    #pricing .spaces-grid.leyte-pillars .space-info h3 {
        min-height: 2.85em;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
    }

    #pricing .spaces-grid.leyte-pillars .space-info p {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }

    #spaces .spaces-grid .space-info {
        display: flex;
        flex-direction: column;
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        top: auto;
    }

    #spaces .spaces-grid .space-info h3 {
        min-height: 2.85em;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
    }

    #spaces .spaces-grid .space-info p {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}

#pricing .pricing-grid--leyte-geo {
    margin-top: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

#pricing .pricing-grid--leyte-geo > .pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

#pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 0;
}

#pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map__viewport--vector {
    flex: 1 1 auto;
    min-height: 0;
}

#pricing .pricing-grid--leyte-geo .pricing-card--diagram {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

#pricing .pricing-grid--leyte-geo .pricing-card--diagram .pricing-diagram-zoom {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pricing .pricing-grid--leyte-geo .pricing-card--diagram .pricing-diagram-zoom img {
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 960px) {
    #pricing .pricing-grid--leyte-geo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #pricing .pricing-grid--leyte-geo > .pricing-card {
        height: auto;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map {
        --leyte-card-scale: 1;
        --leyte-map-inner-scale: 1;
        --leyte-badge-scale: 0.55;
        --leyte-map-shift-x: 0rem;
        padding: 1.5rem;
        zoom: 1;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .plan-name {
        font-size: 1.2rem;
        padding-right: 0;
        text-align: center;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map__badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.65rem;
        margin-bottom: 1rem;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map__badge-img {
        width: 3.5rem;
        height: 3.5rem;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map,
    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map__viewport--vector {
        flex: 0 1 auto;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map__viewport--vector {
        justify-content: center;
        overflow: visible;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map__svg-host {
        justify-content: center;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .leyte-map-svg {
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--diagram .pricing-diagram-zoom {
        flex: 0 1 auto;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--diagram .pricing-diagram-zoom img {
        max-height: none;
    }
}

.leyte-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.leyte-intro h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.leyte-tagline {
    font-size: 1.25rem;
    color: var(--industrial-red);
    /* Match gap under Features mission tagline → intro (see .features .section-header + .hero-subtitle) */
    margin: 0 auto 2rem;
    text-transform: none;
    text-align: center;
    max-width: min(70ch, 44rem);
    line-height: 1.45;
}

.leyte-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--industrial-red);
}

/* Use full pricing container width so lead copy wraps less (fewer lines per paragraph) */
.leyte-lead {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--light-gray);
}

.leyte-lead p {
    margin: 0 auto 1rem;
    max-width: 100%;
}

.leyte-lead p:last-child {
    margin-bottom: 0;
}

#pricing .plan-caption {
    margin: -0.35rem 0 1rem;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--light-gray);
}

/* Pricing Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.pricing-toggle-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.pricing-toggle-label.active {
    color: var(--white);
}

.toggle-switch {
    position: relative;
    width: 70px;
    height: 35px;
    background: var(--steel);
    border: 2px solid var(--industrial-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 25px;
    height: 25px;
    background: var(--industrial-red);
    transition: all 0.3s ease;
}

.toggle-switch.yearly::before {
    transform: translateX(35px);
}

.pricing-badge {
    display: inline-block;
    background: var(--industrial-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--black);
    padding: 2.5rem;
    border: 1px solid var(--industrial-red);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--industrial-red);
    transform: scale(1.5);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--industrial-red);
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.pricing-card:hover {
    transform: translateY(0px);
    border-color: var(--industrial-orange);
transform: scale(1.0);
}

.pricing-card.featured:hover {
    transform: scale(1.5) translateY(0px);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--industrial-red);
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--light-gray);
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--light-gray);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    color: var(--industrial-red);
    margin-right: 0.5rem;
    font-weight: bold;
}

.special-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.special-feature {
    text-align: center;
}

.special-feature-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--industrial-orange);
    margin-bottom: 0.25rem;
}

.special-feature-label {
    font-size: 0.85rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Form Section */
.contact {
    padding: 2rem 0;
    background: linear-gradient(180deg, var(--black) 0%, #0F0F0F 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(230,57,70,0.03) 0%, transparent 70%);
    animation: subtleRotate 30s linear infinite;
}

@keyframes subtleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Match .hero-subtitle / .leyte-tagline treatment */
.contact .section-header p {
    color: var(--industrial-red);
    font-size: 1.25rem;
    line-height: 1.45;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.contact-left {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, rgba(44,44,44,0.5) 0%, rgba(26,26,26,0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(230,57,70,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--industrial-red), var(--industrial-orange), var(--industrial-red));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.contact-info:hover {
    border-color: rgba(230,57,70,0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(230,57,70,0.1);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info h3::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--industrial-red);
}

.contact-info p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.contact-details li:hover {
    color: var(--white);
    transform: translateX(5px);
}

.contact-details li strong {
    color: var(--industrial-orange);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    min-width: 80px;
}

.contact-offer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(230,57,70,0.1) 0%, rgba(255,107,53,0.1) 100%);
    border: 1px solid rgba(230,57,70,0.3);
    position: relative;
    overflow: hidden;
}

.contact-offer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--industrial-red);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.1;
}

.contact-offer strong {
    color: var(--industrial-red);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.contact-offer p {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(44,44,44,0.3) 0%, rgba(26,26,26,0.5) 100%);
    backdrop-filter: blur(10px);
    padding: 1px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.2) 0%, transparent 50%, rgba(255,107,53,0.2) 100%);
    opacity: 0.5;
}

.contact-form {
    background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 100%);
    padding: 2rem 3.5rem 3.5rem;
    position: relative;
    height: 100%;
}

.form-header {
    margin-bottom: 3rem;
    position: relative;
}

.form-header h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--industrial-red) 0%, var(--industrial-orange) 100%);
}

.form-header p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    letter-spacing: 0.3px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select option {
    background: var(--concrete);
    color: var(--white);
    padding: 0.75rem;
}

.form-group select option:hover {
    background: var(--steel);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(230,57,70,0.5);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group--recaptcha {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.form-group--recaptcha .g-recaptcha {
    margin-bottom: 0.75rem;
}

.recaptcha-legal {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--light-gray);
    max-width: 36rem;
}

.recaptcha-legal a {
    color: var(--industrial-red);
    text-decoration: underline;
}

.recaptcha-legal a:hover {
    color: var(--industrial-orange);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: linear-gradient(135deg, var(--industrial-red) 0%, var(--industrial-orange) 100%);
    color: var(--white);
    padding: 1.25rem 3rem;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-submit:hover::before {
    width: 300%;
    height: 300%;
}

.form-submit span {
    position: relative;
    z-index: 1;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(230,57,70,0.4);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-left {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* Amenities Section */
.amenities {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--concrete) 100%);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 51%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 1;
}

.amenities::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--industrial-red), transparent);
    z-index: 2;
}

.amenities .container {
    position: relative;
    z-index: 2;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.amenity-item {
    text-align: center;
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--industrial-red);
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    background: var(--industrial-red);
    color: var(--white);
    transform: rotate(5deg);
}

.amenity-item h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.8) 0%, rgba(255,107,53,0.7) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 51%);
    background-size: 100px 100px;
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 100%);
    pointer-events: none;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--industrial-red);
    border-color: var(--white);
}

.cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--industrial-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--industrial-red);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-credits {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0;
}

.footer-credits a {
    color: var(--industrial-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--industrial-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--industrial-red);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-tour-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-credits {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .feature-card {
        clip-path: none;
    }

    .feature-icon {
        clip-path: none;
    }
}

/* Loading Animation */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--industrial-red);
    transform: scaleX(0);
    transform-origin: left;
    animation: loading 2s ease-out forwards;
    z-index: 10000;
}

@keyframes loading {
    to {
        transform: scaleX(1);
    }
}

/* Phone-specific Leyte bottom-card layout. Keep this late so it wins over desktop map scaling. */
@media (max-width: 900px) {
    #pricing .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #pricing .pricing-grid--leyte-geo {
        display: grid;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
    }

    #pricing .pricing-grid--leyte-geo > .pricing-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 1.25rem;
        overflow: hidden;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map {
        --leyte-card-scale: 1;
        --leyte-map-inner-scale: 1;
        --leyte-badge-scale: 1;
        --leyte-map-shift-x: 0rem;
        zoom: 1 !important;
        transform: none !important;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .plan-name {
        font-size: clamp(1rem, 5vw, 1.2rem) !important;
        line-height: 1.25;
        text-align: center;
        padding-right: 0 !important;
        margin-bottom: 0.9rem;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map__badges {
        position: relative !important;
        inset: auto !important;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: clamp(0.4rem, 2vw, 0.65rem);
        margin: 0 0 0.9rem;
        pointer-events: auto;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map__badge-link {
        flex: 0 0 auto;
        width: clamp(2.25rem, 15vw, 3.25rem);
        height: clamp(2.25rem, 15vw, 3.25rem);
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map__badge-img {
        width: clamp(2.25rem, 15vw, 3.25rem) !important;
        height: clamp(2.25rem, 15vw, 3.25rem) !important;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map__badge-img--logo {
        object-fit: cover;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map,
    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map__viewport--vector,
    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .te-style-map__svg-host {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        justify-content: center;
        overflow: hidden;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .leyte-map-svg {
        width: min(100%, 22rem) !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 0 auto;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .leyte-map-callout-static,
    #pricing .pricing-grid--leyte-geo .pricing-card--region-map .leyte-map-callout__leader {
        display: none;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--diagram .plan-name {
        font-size: clamp(1rem, 5vw, 1.2rem);
        line-height: 1.25;
        text-align: center;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--diagram .plan-caption {
        text-align: center;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--diagram .pricing-diagram-zoom {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    #pricing .pricing-grid--leyte-geo .pricing-card--diagram .pricing-diagram-zoom img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}
