/*
Theme Name: HyperBunker
Theme URI: https://hyperbunker.com
Author: HyperBunker Team
Author URI: https://hyperbunker.com
Description: Custom theme for HyperBunker - Unhackable Vault landing page
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hyperbunker
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: "HeliosExt";
    src: url("/press-kit/HeliosExt-Regular.woff2") format("woff2"),
         url("/press-kit/HeliosExt-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: "HeliosExt";
    src: url("/press-kit/HeliosExt-Bold.woff2") format("woff2"),
         url("/press-kit/HeliosExt-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
  }

/* ===================================
   BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: "HeliosExt", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #8b94b3;
    font-weight: 600;
    text-decoration: none;
}

.logo a {
    font-family: "HeliosExt", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #8b94b3;
    font-weight: 600;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

/* Language Switcher */
.language-switcher {
    margin-left: 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.language-switcher a {
    color: inherit;
    text-decoration: none;
    padding: 5px 8px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.language-switcher a:hover,
.language-switcher a.active {
    opacity: 1;
}

.language-switcher .separator {
    margin: 0 5px;
    opacity: 0.5;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(20, 20, 40, 0.8) 0%, #000000 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0.6; 
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* ===================================
   SECTION LAYOUTS
   =================================== */

.full-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 60px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    background: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.stat-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.6;
}

/* ===================================
   SPLIT SECTION
   =================================== */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.split-content.dark {
    background: #000000;
}

.split-content.accent {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9) 0%, rgba(10, 10, 20, 0.9) 100%);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 0;
}

.section-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process-section {
    background: #0a0a0a;
    padding: 120px 60px;
    overflow-x: hidden;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.process-step {
    text-align: center;
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.process-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.process-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===================================
   INDUSTRY SECTION
   =================================== */

.industry-section {
    background: #000000;
    padding: 120px 60px;
    overflow-x: hidden;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 80px auto 0;
    overflow-x: hidden;
}

.industry-card {
    background: #0a0a0a;
    padding: 80px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.industry-card:hover {
    background: #111111;
    transform: scale(1.02);
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.industry-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.industry-cost {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.industry-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: 120px 60px;
    text-align: center;
}

.contact-content {
    max-width: 800px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Contact Form Styling */
.contact-form-wrapper {
    max-width: 700px;
    margin: 60px auto 80px;
}

.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

/* Two column layout for name and email */
.contact-form-wrapper .wpcf7-form > p:nth-child(1),
.contact-form-wrapper .wpcf7-form > p:nth-child(2) {
    display: inline-block;
    width: calc(50% - 10px);
    margin: 0;
}

.contact-form-wrapper .wpcf7-form > p:nth-child(1) {
    margin-right: 20px;
}

/* Input fields styling */
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox styling */
.contact-form-wrapper .wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin: 10px 0 30px;
}

.contact-form-wrapper .wpcf7-acceptance input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-form-wrapper .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Submit button styling */
.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button[type="submit"] {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper button[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Contact Form 7 validation and response messages */
.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
}

.contact-form-wrapper .wpcf7-response-output {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.contact-form-wrapper .wpcf7-spinner {
    margin: 10px auto;
    display: block;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 60px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInFloat {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 0.4;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeInFloatCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 0.4;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

@keyframes gentleFloatCenter {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(-20px); 
    }
}

/* Hero Device Image - Ensure it stays centered */
.hero-device-image {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ===================================
   TABLET RESPONSIVE (768px - 1024px)
   =================================== */

@media (max-width: 1024px) and (min-width: 769px) {
    /* Navigation */
    .nav {
        padding: 25px 40px !important;
    }
    
    .nav.scrolled {
        padding: 18px 40px !important;
    }
    
    .logo {
        font-family: "HeliosExt", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 12px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: #8b94b3;
        font-weight: 600;
        text-decoration: none;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    
    .language-switcher {
        margin-left: 20px;
        font-size: 13px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Full Sections */
    .full-section {
        padding: 100px 40px;
    }
    
    /* Split Section */
    .split-section {
        grid-template-columns: 1fr;
    }
    
    .split-content {
        padding: 80px 60px;
        min-height: 60vh;
    }
    
    /* Process Grid */
    .process-section {
        padding: 100px 40px;
        overflow-x: hidden;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        overflow-x: hidden;
    }
    
    /* Industry Grid */
    .industry-section {
        padding: 100px 40px;
        overflow-x: hidden;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        overflow-x: hidden;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 100px 40px;
    }
    
    .contact-info {
        gap: 40px;
    }
}

/* ===================================
   MOBILE RESPONSIVE (max-width: 768px)
   =================================== */

@media (max-width: 768px) {
    /* Navigation */
    .nav {
        padding: 20px 25px !important;
    }
    
    .nav.scrolled {
        padding: 15px 25px !important;
    }
    
    .logo {
        font-family: "HeliosExt", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 12px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: #8b94b3;
        font-weight: 600;
        text-decoration: none;
    }
    
    .language-switcher {
        margin-left: 15px;
        font-size: 13px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 0.8rem;
    }
    
    /* Hero Image - Better mobile positioning */
    .hero-device-image {
        bottom: -30px !important;
        max-width: 700px !important;
        width: 90% !important;
        opacity: 0.3 !important;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 30px;
        font-size: 0.65rem;
    }
    
    /* Full Sections */
    .full-section {
        min-height: auto;
        padding: 80px 30px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    /* Split Section */
    .split-section {
        grid-template-columns: 1fr;
    }
    
    .split-content {
        padding: 60px 30px;
        min-height: auto;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item {
        padding: 40px 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    /* Process Section */
    .process-section {
        padding: 80px 30px;
        overflow-x: hidden;
    }
    
    .process-header {
        margin-bottom: 60px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        overflow-x: hidden;
    }
    
    .process-step {
        padding: 40px 25px;
    }
    
    .process-number {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    /* Industry Section */
    .industry-section {
        padding: 80px 30px;
        overflow-x: hidden;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 1px;
        margin-top: 60px;
        overflow-x: hidden;
    }
    
    .industry-card {
        padding: 60px 30px;
    }
    
    .industry-icon {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .industry-title {
        font-size: 1.3rem;
    }
    
    .industry-cost {
        font-size: 1.8rem;
    }
    
    /* Contact Section */
    .contact-section {
        min-height: auto;
        padding: 80px 30px;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        margin: 40px auto 60px;
    }
    
    /* Contact Form Mobile */
    .contact-form-wrapper .wpcf7-form > p:nth-child(1),
    .contact-form-wrapper .wpcf7-form > p:nth-child(2) {
        display: block;
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"],
    .contact-form-wrapper textarea,
    .contact-form-wrapper input[type="submit"],
    .contact-form-wrapper button[type="submit"] {
        font-size: 0.95rem;
        padding: 14px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }
    
    .contact-item {
        width: 100%;
    }
    
    /* News/Media Sections - Mobile Responsive */
    #insights > .section-container > div:not(.process-header),
    #media > .section-container > div:not(.process-header) {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    #insights article,
    #media article {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    #insights article > div:first-child,
    #media article > div:first-child {
        height: 250px !important;
        min-height: 250px !important;
    }
    
    #insights article > div:last-child,
    #media article > div:last-child {
        padding: 30px !important;
    }
    
    /* Category Pages - News and Media Mobile */
    .full-section article {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .full-section article > div:first-child {
        height: 250px !important;
        min-height: 250px !important;
    }
    
    .full-section article > div:last-child {
        padding: 30px !important;
    }
    
    /* Footer */
    .footer {
        padding: 60px 30px;
    }
    
    .footer .section-container > div:last-child > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    /* Smooth Scrolling for Mobile */
    html {
        scroll-padding-top: 80px;
    }
}

/* ===================================
   SMALL MOBILE (max-width: 480px)
   =================================== */

@media (max-width: 480px) {
    /* Navigation */
    .nav {
        padding: 18px 20px !important;
    }
    
    .nav.scrolled {
        padding: 12px 20px !important;
    }
    
    .logo {
        font-family: "HeliosExt", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 12px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: #8b94b3;
        font-weight: 600;
        text-decoration: none;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 14px 35px;
        font-size: 0.75rem;
    }
    
    /* Hero Image - Extra Small Mobile */
    .hero-device-image {
        bottom: -20px !important;
        max-width: 600px !important;
        width: 85% !important;
        opacity: 0.25 !important;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .process-title {
        font-size: 1rem;
    }
    
    .industry-title {
        font-size: 1.2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

/* ===================================
   LANDSCAPE MOBILE (max-width: 768px)
   =================================== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Prevent Body Scroll When Menu is Open */
body.menu-open {
    overflow: hidden;
}

/* Ensure no horizontal overflow */
body,
.section-container {
    overflow-x: hidden;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}


/* Prevent layout shift and horizontal overflow from vertical scrollbar gutter */
html {
    scrollbar-gutter: stable;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
   display: none;
}

body {
    -ms-overflow-style: none;
   scrollbar-width: none;
}

body::-webkit-scrollbar {
   display: none;
}