/* --- Brand Variables (Corporate Trust Design System) --- */
:root {
    --holyot-canvas: #F8FAFC;
    --holyot-surface: #FFFFFF;
    --holyot-primary: #005A9C;
    --holyot-secondary: #7A7A7A;
    --holyot-accent: #007BFF;
    --holyot-text: #0F172A;
    --holyot-muted: #64748B;
    --holyot-border: #E2E8F0;
    --holyot-success: #10B981;
    --holyot-dark: #0F172A;
    --holyot-shadow: 0 4px 20px -2px rgba(0, 90, 156, 0.1);
    --holyot-shadow-hover: 0 10px 25px -5px rgba(0, 90, 156, 0.15);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--holyot-canvas);
    color: var(--holyot-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--holyot-primary);
    color: var(--holyot-surface);
}

/* --- Noise Grain Overlay --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.012;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ======== HEADER ======== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0) 100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--holyot-border);
}

.header-logo {
    display: flex;
    align-items: center;
    z-index: 10001;
}

.header-logo img {
    height: 42px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.menu-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--holyot-text);
    transition: color 0.3s;
}

.hamburger-lines {
    width: 28px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 2px;
    background-color: var(--holyot-text);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-open .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--holyot-primary);
}

.menu-open .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-open .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
    background-color: var(--holyot-primary);
}

.menu-open .menu-text {
    color: var(--holyot-primary);
}

/* ======== FULLSCREEN MENU ======== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--holyot-dark);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    clip-path: circle(0% at 95% 5%);
}

.menu-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--holyot-primary);
    opacity: 0.05;
    pointer-events: none;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.nav-item {
    margin: 12px 0;
    overflow: hidden;
}

.nav-link {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    transition: all 0.4s ease;
    transform: translateY(100%);
}

.nav-link:hover {
    color: var(--holyot-accent);
    transform: translateX(10px);
}

.menu-footer {
    position: absolute;
    bottom: 50px;
    display: flex;
    gap: 40px;
    color: var(--holyot-muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0;
}

.menu-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-footer a:hover {
    color: var(--holyot-accent);
}

/* ======== SECTION LABEL (shared) ======== */
.section-label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--holyot-primary);
    margin-bottom: 50px;
    text-align: center;
}

/* ======== SECTION 1: HERO ======== */
.holyot-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    background-color: var(--holyot-canvas);
    overflow: hidden;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 90, 156, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23005A9C' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-orb {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: var(--holyot-primary);
    opacity: 0.06;
    filter: blur(120px);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--holyot-text);
    margin-bottom: 30px;
}

.accent-gradient {
    background: linear-gradient(135deg, var(--holyot-primary), var(--holyot-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--holyot-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: var(--holyot-primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--holyot-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--holyot-shadow-hover);
    background-color: #004a82;
}

.btn-secondary {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--holyot-text);
    background-color: var(--holyot-surface);
    border: 1px solid var(--holyot-border);
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #F1F5F9;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-inner {
    perspective: 2000px;
}

.hero-graphic {
    width: 100%;
    max-width: 380px;
    height: auto;
    transform: rotateY(-5deg);
    transition: transform 0.6s ease;
}

.hero-visual-inner:hover .hero-graphic {
    transform: rotateY(0deg);
}

.pulse-ring {
    animation: pulseRing 3s ease-in-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1.5s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-scroll-indicator span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--holyot-muted);
    font-weight: 600;
}

.scroll-line {
    width: 60px;
    height: 2px;
    background-color: var(--holyot-border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--holyot-primary);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ======== SECTION 2: THE DEAL ======== */
.holyot-deal {
    position: relative;
    width: 100%;
    padding: 120px 60px;
    background-color: var(--holyot-canvas);
    overflow: hidden;
}

.deal-decorative {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--holyot-primary);
    opacity: 0.03;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.04em;
    user-select: none;
}

.deal-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.deal-card {
    background: var(--holyot-surface);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: var(--holyot-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--holyot-shadow-hover);
}

.deal-label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--holyot-primary);
    margin-bottom: 24px;
}

.deal-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--holyot-text);
    margin-bottom: 20px;
}

.deal-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--holyot-muted);
}

.deal-sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.deal-side-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--holyot-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ======== SECTION 3: VISION ======== */
.holyot-vision {
    position: relative;
    width: 100%;
    padding: 140px 60px;
    background-color: var(--holyot-canvas);
    text-align: center;
}

.vision-container {
    max-width: 900px;
    margin: 0 auto;
}

.vision-statement {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--holyot-text);
    letter-spacing: -0.01em;
}

.vision-audience {
    display: block;
    margin-top: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--holyot-muted);
    letter-spacing: 0.5px;
}

/* ======== SECTION 4: PROCESS ======== */
.holyot-process {
    position: relative;
    width: 100%;
    padding: 120px 60px;
    background-color: var(--holyot-surface);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--holyot-canvas);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--holyot-shadow-hover);
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 90, 156, 0.1);
    color: var(--holyot-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.process-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--holyot-text);
    margin-bottom: 12px;
}

.process-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--holyot-muted);
}

/* ======== SECTION 5: DASHBOARD ======== */
.holyot-dashboard {
    position: relative;
    width: 100%;
    padding: 120px 60px;
    background-color: var(--holyot-canvas);
}

.dashboard-container {
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-mockup {
    background: var(--holyot-surface);
    border-radius: 16px;
    box-shadow: 0 25px 60px -12px rgba(0, 90, 156, 0.15);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--holyot-canvas);
    border-bottom: 1px solid var(--holyot-border);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red { background: #EF4444; }
.dashboard-dot.yellow { background: #F59E0B; }
.dashboard-dot.green { background: #10B981; }

.dashboard-title {
    margin-left: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--holyot-muted);
    letter-spacing: 0.5px;
}

.dashboard-body {
    padding: 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

.dashboard-chart-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--holyot-text);
    margin-bottom: 20px;
}

.chart-area {
    position: relative;
}

.chart-svg {
    width: 100%;
    height: auto;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--holyot-muted);
    font-weight: 500;
}

.roster-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.roster-table th {
    text-align: left;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--holyot-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--holyot-border);
}

.roster-table td {
    padding: 10px 12px;
    color: var(--holyot-text);
    border-bottom: 1px solid var(--holyot-border);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.status-fitted {
    background: rgba(16, 185, 129, 0.1);
    color: var(--holyot-success);
}

.status-production {
    background: rgba(0, 90, 156, 0.1);
    color: var(--holyot-primary);
}

.status-scanned {
    background: rgba(100, 116, 139, 0.1);
    color: var(--holyot-muted);
}

/* ======== SECTION 6: TRUST ======== */
.holyot-trust {
    position: relative;
    width: 100%;
    padding: 120px 60px;
    background-color: var(--holyot-surface);
    overflow: hidden;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.marquee-wrapper {
    overflow: hidden;
    margin-bottom: 60px;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--holyot-secondary);
    white-space: nowrap;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: default;
}

.marquee-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--holyot-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--holyot-canvas);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--holyot-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--holyot-shadow-hover);
}

.testimonial-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--holyot-text);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--holyot-primary);
}

/* ======== SECTION 7: IMPACT ======== */
.holyot-impact {
    position: relative;
    width: 100%;
    padding: 160px 60px;
    background-color: var(--holyot-dark);
    text-align: center;
}

.impact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.impact-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.impact-accent {
    background: linear-gradient(135deg, var(--holyot-accent), #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======== SECTION 8: FOOTER ======== */
.holyot-footer {
    position: relative;
    width: 100%;
    padding: 100px 60px 40px;
    background-color: var(--holyot-canvas);
    border-top: 1px solid var(--holyot-border);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--holyot-surface);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--holyot-shadow);
    margin-bottom: 50px;
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--holyot-primary), var(--holyot-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-initials {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.founder-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--holyot-text);
}

.founder-role {
    font-size: 0.85rem;
    color: var(--holyot-muted);
    font-weight: 500;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--holyot-border);
    border-bottom: 1px solid var(--holyot-border);
    margin-bottom: 40px;
}

.footer-contact-col {
    padding: 30px 24px;
    border-left: 1px solid var(--holyot-border);
}

.footer-contact-col:first-child {
    border-left: none;
}

.footer-contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--holyot-muted);
    margin-bottom: 8px;
}

.footer-contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--holyot-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-value:hover {
    color: var(--holyot-primary);
}

.footer-cta-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.footer-cta-btn {
    display: inline-block;
    width: 100%;
    padding: 20px 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    background-color: var(--holyot-primary);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--holyot-shadow);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--holyot-shadow-hover);
    background-color: #004a82;
}

.footer-cta-btn:focus-visible {
    outline: 2px solid var(--holyot-primary);
    outline-offset: 2px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--holyot-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--holyot-muted);
    font-weight: 500;
}

.footer-bottom-links a {
    color: var(--holyot-muted);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--holyot-text);
}

/* ======== KEYFRAMES ======== */
@keyframes scrollPulse {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.4); opacity: 0; }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======== RESPONSIVE: TABLET (1024px) ======== */
@media (max-width: 1024px) and (min-width: 769px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }

    .deal-sides {
        grid-template-columns: 1fr;
    }
}

/* ======== RESPONSIVE: MOBILE (768px) ======== */
@media (max-width: 768px) {
    .site-header {
        padding: 16px 20px;
    }

    .header-logo img {
        height: 32px;
    }

    .menu-text {
        display: none;
    }

    .nav-link {
        font-size: 2rem;
    }

    .menu-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        bottom: 30px;
    }

    /* Hero mobile */
    .holyot-hero {
        padding: 120px 24px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .btn-primary, .btn-secondary {
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-orb {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
    }

    /* Deal mobile */
    .holyot-deal {
        padding: 80px 24px;
    }

    .deal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .deal-card {
        padding: 32px 24px;
    }

    .deal-heading {
        font-size: 1.4rem;
    }

    .deal-sides {
        grid-template-columns: 1fr;
    }

    .deal-decorative {
        font-size: 4rem;
    }

    /* Vision mobile */
    .holyot-vision {
        padding: 80px 24px;
    }

    .vision-statement {
        font-size: 1.4rem;
    }

    /* Process mobile */
    .holyot-process {
        padding: 80px 24px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Dashboard mobile */
    .holyot-dashboard {
        padding: 80px 24px;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .roster-table {
        font-size: 0.75rem;
    }

    .roster-table th, .roster-table td {
        padding: 8px 6px;
    }

    /* Trust mobile */
    .holyot-trust {
        padding: 80px 24px;
    }

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

    .testimonial-card {
        padding: 30px 24px;
    }

    /* Impact mobile */
    .holyot-impact {
        padding: 100px 24px;
    }

    .impact-headline {
        font-size: 1.8rem;
    }

    /* Footer mobile */
    .holyot-footer {
        padding: 60px 24px 30px;
    }

    .founder-card {
        padding: 24px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-col {
        border-left: none;
        border-bottom: 1px solid var(--holyot-border);
        padding: 20px 0;
    }

    .footer-contact-col:last-child {
        border-bottom: none;
    }

    .footer-cta-btn {
        font-size: 0.9rem;
        padding: 18px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links a {
        margin-left: 0;
        margin: 0 10px;
    }
}
