/* ============================================================
   Ancordi — Data Center Design
   Editorial layer: Cormorant Garamond / DM Sans / Space Mono
   over a navy + blueprint-blue palette.
   ============================================================ */

.page-design {
    --white: #FFFFFF;
    --paper: #F5F4F0;
    --paper2: #ECEAE3;
    --ink: #0B1F40;
    --ink2: #1A3461;
    --blue: #1D59C4;
    --blue-lt: #EBF1FB;
    --steel: #5C7EA8;
    --mist: #8A9AB8;
    --line: #D4D0C8;
    --red: #C8391A;
    --sh: 0 2px 16px rgba(11, 31, 64, 0.07);
    --sh-lg: 0 12px 48px rgba(11, 31, 64, 0.13);
    --f-serif: 'Cormorant Garamond', serif;
    --f-body: 'DM Sans', sans-serif;
    --f-mono: 'Space Mono', monospace;
    --max: 1280px;

    font-family: var(--f-body);
    background: var(--white);
    color: var(--ink);
    line-height: 1.65;
}

.page-design ::-webkit-scrollbar { width: 3px; }
.page-design ::-webkit-scrollbar-track { background: var(--paper); }
.page-design ::-webkit-scrollbar-thumb { background: var(--blue); }

/* ── HERO ── */
#hero {
    min-height: calc(100vh - var(--a-header-h));
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
}
.hero-l {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 6%; position: relative; z-index: 2; background: var(--white);
}
.hero-index {
    font-family: var(--f-mono); font-size: .68rem; letter-spacing: .3em;
    color: var(--blue); margin-bottom: 40px;
    display: flex; align-items: center; gap: 12px;
}
.hero-index::before { content: ''; width: 32px; height: 1px; background: var(--blue); }
.hero-h1 {
    font-family: var(--f-serif);
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 300; line-height: 1.0; color: var(--ink); letter-spacing: -.01em; margin-bottom: 6px;
}
.hero-h1 em { font-style: italic; color: var(--blue); }
.hero-h1 strong { display: block; font-weight: 700; }
.hero-en { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .35em; color: var(--mist); margin-bottom: 36px; }
.hero-lead {
    font-size: 1rem; line-height: 1.9; color: var(--steel);
    max-width: 440px; margin-bottom: 44px;
    border-left: 2px solid var(--line); padding-left: 20px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-fill {
    padding: 13px 30px; background: var(--ink); color: var(--white);
    font-size: .82rem; font-weight: 700; letter-spacing: .12em;
    text-decoration: none; display: inline-block; transition: all .3s; border: 1.5px solid var(--ink);
}
.btn-fill:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29, 89, 196, .28); }
.btn-line {
    padding: 12px 28px; border: 1.5px solid var(--line); color: var(--steel);
    font-size: .82rem; font-weight: 600; letter-spacing: .1em;
    text-decoration: none; display: inline-block; transition: all .3s;
}
.btn-line:hover { border-color: var(--ink); color: var(--ink); }
.hero-kpis { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 36px; }
.kpi { padding-right: 24px; border-right: 1px solid var(--line); }
.kpi:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.kpi:nth-child(2) { padding: 0 24px; }
.kpi-num { font-family: var(--f-serif); font-size: 2.8rem; font-weight: 300; color: var(--ink); line-height: 1; }
.kpi-num span { color: var(--blue); }
.kpi-lbl { font-size: .72rem; color: var(--mist); letter-spacing: .06em; margin-top: 4px; }

.hero-r { position: relative; background: var(--paper); overflow: hidden; }
.hero-r-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 40px 40px; opacity: .5;
}
.scan-line {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(29, 89, 196, .6), transparent);
    animation: scan 4s linear infinite; pointer-events: none;
}
@keyframes scan { 0% { top: 0; opacity: .8; } 100% { top: 100%; opacity: .2; } }
.hero-r-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; }
.bp-title { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .3em; color: var(--blue); margin-bottom: 20px; align-self: flex-start; display: flex; align-items: center; gap: 8px; }
.bp-title::before { content: ''; width: 12px; height: 1px; background: var(--blue); }
.floorplan-svg { width: 100%; max-width: 480px; height: auto; }

/* ── PHILOSOPHY ── */
#philosophy { background: var(--ink); padding: 100px 5%; position: relative; overflow: hidden; }
#philosophy::before {
    content: 'DESIGN'; position: absolute; right: -20px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--f-serif); font-size: 12rem; font-weight: 700;
    color: rgba(255, 255, 255, .03); line-height: 1; pointer-events: none; white-space: nowrap;
}
.phil-inner { max-width: var(--max); margin: 0 auto; }
.phil-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; gap: 40px; flex-wrap: wrap; }
.phil-tag { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .3em; color: rgba(255, 255, 255, .35); margin-bottom: 14px; }
.phil-h2 { font-family: var(--f-serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); line-height: 1.15; }
.phil-h2 em { font-style: italic; color: rgba(255, 255, 255, .45); }
.phil-desc { max-width: 380px; font-size: .9rem; color: rgba(255, 255, 255, .5); line-height: 1.85; }
.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, .08); }
.phil-item { background: var(--ink); padding: 48px 40px; position: relative; overflow: hidden; transition: background .35s; }
.phil-item:hover { background: var(--ink2); }
.phil-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.phil-item:hover::after { transform: scaleX(1); }
.phil-n { font-family: var(--f-serif); font-size: 5rem; font-weight: 300; color: rgba(255, 255, 255, .06); line-height: 1; margin-bottom: -10px; }
.phil-icon { font-size: 1.8rem; margin-bottom: 20px; }
.phil-item-h { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.phil-item-p { font-size: .85rem; color: rgba(255, 255, 255, .5); line-height: 1.85; }
.phil-item-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.phil-tag-item { padding: 3px 10px; border: 1px solid rgba(255, 255, 255, .12); font-family: var(--f-mono); font-size: .6rem; color: rgba(255, 255, 255, .35); letter-spacing: .1em; }

/* ── BENTO AREAS ── */
#areas { background: var(--paper); padding: 110px 5%; }
.areas-inner { max-width: var(--max); margin: 0 auto; }
.areas-header { margin-bottom: 64px; }
.areas-header .tag { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .3em; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.areas-header .tag::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.areas-header h2 { font-family: var(--f-serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--ink); line-height: 1.1; }
.areas-header h2 em { font-style: italic; color: var(--blue); }
.areas-header p { margin-top: 16px; font-size: .92rem; color: var(--steel); max-width: 560px; line-height: 1.85; }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: auto; gap: 16px; }
.bento-a { grid-column: span 7; }
.bento-b { grid-column: span 5; }
.bento-c { grid-column: span 5; }
.bento-d { grid-column: span 12; }
.bcard { background: var(--white); border: 1px solid var(--line); padding: 44px; position: relative; overflow: hidden; transition: box-shadow .35s, transform .35s; height: 100%; }
.bcard:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.bcard-num { font-family: var(--f-serif); font-size: 4.5rem; font-weight: 300; color: var(--paper2); line-height: 1; position: absolute; top: 20px; right: 28px; }
.bcard-icon { font-size: 1.6rem; margin-bottom: 18px; }
.bcard-h { font-family: var(--f-serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 6px; line-height: 1.2; }
.bcard-en { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .25em; color: var(--mist); margin-bottom: 16px; }
.bcard-p { font-size: .85rem; color: var(--steel); line-height: 1.85; margin-bottom: 20px; }
.bcard-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bcard-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--steel); padding-bottom: 8px; border-bottom: 1px solid var(--paper2); }
.bcard-list li:last-child { border-bottom: none; padding-bottom: 0; }
.bcard-list li::before { content: '—'; color: var(--blue); flex-shrink: 0; font-size: .75rem; margin-top: 2px; }
.bcard-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--ink2)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.bcard:hover .bcard-accent { transform: scaleX(1); }
.bento-a .bcard-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bcard-vis { background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; min-height: 220px; position: relative; overflow: hidden; }
.bento-d .bcard-inner-h { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; }
.bsi { padding: 24px; background: var(--paper); border: 1px solid var(--line); transition: all .3s; }
.bsi:hover { border-color: var(--blue); background: var(--blue-lt); }
.bsi-icon { font-size: 1.3rem; margin-bottom: 12px; }
.bsi-h { font-family: var(--f-serif); font-size: 1rem; color: var(--ink); font-weight: 600; margin-bottom: 6px; }
.bsi-p { font-size: .78rem; color: var(--steel); line-height: 1.7; }

/* ── VERTICAL TIMELINE ── */
#process { background: var(--white); padding: 110px 5%; }
.process-inner { max-width: var(--max); margin: 0 auto; }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.process-header .left .tag { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .3em; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.process-header .left .tag::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.process-header .left h2 { font-family: var(--f-serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--ink); line-height: 1.1; }
.process-header .left h2 em { font-style: italic; color: var(--blue); }
.process-header .right p { font-size: .92rem; color: var(--steel); line-height: 1.85; }
.process-header .right .total { margin-top: 24px; padding: 20px 24px; background: var(--paper); border-left: 3px solid var(--blue); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.total-label { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .2em; color: var(--mist); }
.total-val { font-family: var(--f-serif); font-size: 1.6rem; color: var(--ink); font-weight: 600; white-space: nowrap; }

.vtl { position: relative; padding-left: 48px; }
.vtl::before { content: ''; position: absolute; left: 14px; top: 10px; bottom: 10px; width: 1px; background: linear-gradient(180deg, var(--blue), var(--ink2) 60%, transparent); }
.vtl-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; padding: 40px 0; border-bottom: 1px solid var(--paper2); }
.vtl-item:last-child { border-bottom: none; }
.vtl-dot { position: absolute; left: -42px; top: 44px; width: 18px; height: 18px; background: var(--white); border: 2px solid var(--blue); border-radius: 50%; transition: all .3s; display: flex; align-items: center; justify-content: center; }
.vtl-dot::after { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; transition: all .3s; }
.vtl-item:hover .vtl-dot { background: var(--blue); }
.vtl-item:hover .vtl-dot::after { background: var(--white); }
.vtl-phase { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .3em; color: var(--blue); margin-bottom: 8px; }
.vtl-h { font-family: var(--f-serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); line-height: 1.15; margin-bottom: 10px; }
.vtl-p { font-size: .85rem; color: var(--steel); line-height: 1.85; }
.vtl-dur { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 5px 12px; border: 1px solid var(--line); font-family: var(--f-mono); font-size: .62rem; color: var(--mist); letter-spacing: .1em; }
.vtl-deliverables { background: var(--paper); padding: 24px 28px; }
.vtl-del-title { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .25em; color: var(--mist); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.vtl-del-list { list-style: none; }
.vtl-del-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--steel); padding: 7px 0; border-bottom: 1px solid var(--paper2); transition: color .2s; }
.vtl-del-list li:last-child { border-bottom: none; }
.vtl-del-list li:hover { color: var(--ink); }
.vtl-del-list li::before { content: '↳'; color: var(--blue); font-size: .7rem; flex-shrink: 0; margin-top: 2px; }

/* ── DELIVERABLES ── */
#deliverables { background: var(--paper); padding: 100px 5%; position: relative; overflow: hidden; }
#deliverables::before { content: 'OUTPUT'; position: absolute; left: -20px; top: 50%; transform: translateY(-50%); font-family: var(--f-serif); font-size: 10rem; font-weight: 700; color: rgba(11, 31, 64, .04); line-height: 1; pointer-events: none; }
.del-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.del-header { text-align: center; margin-bottom: 64px; }
.del-header .tag { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .3em; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.del-header .tag::before, .del-header .tag::after { content: ''; width: 24px; height: 1px; background: var(--blue); }
.del-header h2 { font-family: var(--f-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; color: var(--ink); }
.del-header h2 em { font-style: italic; color: var(--blue); }
.del-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; background: var(--line); }
.del-card { background: var(--white); padding: 36px 28px; position: relative; overflow: hidden; transition: all .35s; cursor: default; }
.del-card:hover { background: var(--ink); z-index: 1; }
.del-card-n { font-family: var(--f-serif); font-size: 3.5rem; font-weight: 300; color: var(--paper2); line-height: 1; margin-bottom: 14px; transition: color .35s; }
.del-card:hover .del-card-n { color: rgba(255, 255, 255, .1); }
.del-card-icon { font-size: 1.4rem; margin-bottom: 12px; }
.del-card-h { font-family: var(--f-serif); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.2; transition: color .35s; }
.del-card:hover .del-card-h { color: var(--white); }
.del-card-fmt { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .2em; color: var(--blue); margin-bottom: 10px; transition: color .35s; }
.del-card:hover .del-card-fmt { color: rgba(255, 255, 255, .45); }
.del-card-p { font-size: .78rem; color: var(--steel); line-height: 1.7; transition: color .35s; }
.del-card:hover .del-card-p { color: rgba(255, 255, 255, .5); }
.del-card-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.del-card:hover .del-card-bar { transform: scaleX(1); }

/* ── WHY US ── */
#why { background: var(--white); padding: 110px 5%; }
.why-inner { max-width: var(--max); margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .tag { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .3em; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.why-text .tag::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.why-text h2 { font-family: var(--f-serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--ink); line-height: 1.1; margin-bottom: 20px; }
.why-text h2 em { font-style: italic; color: var(--blue); }
.why-text > p { font-size: .92rem; color: var(--steel); line-height: 1.9; margin-bottom: 36px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.why-stat { background: var(--white); padding: 24px 20px; transition: background .3s; }
.why-stat:hover { background: var(--paper); }
.ws-num { font-family: var(--f-serif); font-size: 2.8rem; font-weight: 300; color: var(--ink); line-height: 1; }
.ws-num span { color: var(--blue); }
.ws-lbl { font-size: .75rem; color: var(--mist); margin-top: 4px; line-height: 1.5; }
.why-features { display: flex; flex-direction: column; }
.wf-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--paper2); transition: all .3s; }
.wf-item:first-child { border-top: 1px solid var(--paper2); }
.wf-item:hover { padding-left: 8px; }
.wf-num { font-family: var(--f-serif); font-size: 1.6rem; font-weight: 300; color: var(--paper2); flex-shrink: 0; line-height: 1; margin-top: 2px; min-width: 40px; transition: color .3s; }
.wf-item:hover .wf-num { color: var(--blue); }
.wf-text h4 { font-size: .92rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.wf-text p { font-size: .82rem; color: var(--steel); line-height: 1.75; }

/* ── CTA ── */
#cta { background: var(--ink); padding: 120px 5%; position: relative; overflow: hidden; }
#cta::before { content: '01'; position: absolute; right: -40px; bottom: -60px; font-family: var(--f-serif); font-size: 24rem; font-weight: 700; color: rgba(255, 255, 255, .025); line-height: 1; pointer-events: none; }
.cta-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.cta-text .tag { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .3em; color: rgba(255, 255, 255, .35); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.cta-text .tag::before { content: ''; width: 20px; height: 1px; background: rgba(255, 255, 255, .2); }
.cta-text h2 { font-family: var(--f-serif); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
.cta-text h2 em { font-style: italic; color: rgba(255, 255, 255, .35); }
.cta-text p { font-size: .95rem; color: rgba(255, 255, 255, .5); line-height: 1.85; max-width: 520px; }
.cta-right { display: flex; flex-direction: column; gap: 16px; min-width: 260px; }
.btn-cta-primary { padding: 16px 36px; background: var(--white); color: var(--ink); font-weight: 700; font-size: .88rem; letter-spacing: .1em; text-decoration: none; display: block; text-align: center; transition: all .3s; border: 1.5px solid var(--white); }
.btn-cta-primary:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.btn-cta-line { padding: 14px 34px; border: 1.5px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .6); font-size: .88rem; letter-spacing: .1em; text-decoration: none; display: block; text-align: center; transition: all .3s; }
.btn-cta-line:hover { border-color: var(--white); color: var(--white); }
.cta-contacts { margin-top: 80px; padding-top: 48px; border-top: 1px solid rgba(255, 255, 255, .1); display: grid; grid-template-columns: repeat(3, 1fr); }
.cta-c { padding: 0 40px; border-right: 1px solid rgba(255, 255, 255, .08); }
.cta-c:first-child { padding-left: 0; }
.cta-c:last-child { border-right: none; }
.cta-c-lbl { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .3em; color: rgba(255, 255, 255, .3); margin-bottom: 8px; }
.cta-c-val { font-size: .95rem; color: var(--white); font-weight: 500; }
.cta-c-val a { text-decoration: none; }
.cta-c-val a:hover { color: var(--blue); }

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.sr.in { opacity: 1; transform: translateY(0); }
.sr-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.sr-l.in { opacity: 1; transform: translateX(0); }
.sr-r { opacity: 0; transform: translateX(28px); transition: opacity .7s ease, transform .7s ease; }
.sr-r.in { opacity: 1; transform: translateX(0); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    #hero { grid-template-columns: 1fr; }
    .hero-r { display: none; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-a, .bento-d { grid-column: span 2; }
    .bento-b, .bento-c { grid-column: span 1; }
    .bento-a .bcard-inner { grid-template-columns: 1fr; }
    .bento-d .bcard-inner-h { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 50px; }
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-contacts { grid-template-columns: 1fr; }
    .cta-c { padding: 20px 0; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .cta-c:last-child { border-bottom: none; }
    .process-header { grid-template-columns: 1fr; }
    .vtl-item { grid-template-columns: 1fr; }
    .del-track { grid-template-columns: repeat(3, 1fr); }
    .phil-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .bento { grid-template-columns: 1fr; }
    .bento-a, .bento-b, .bento-c, .bento-d { grid-column: span 1; }
    .bento-d .bcard-inner-h { grid-template-columns: 1fr; }
    .del-track { grid-template-columns: repeat(2, 1fr); }
    .why-stats { grid-template-columns: 1fr; }
    .vtl { padding-left: 28px; }
    .vtl::before { left: 6px; }
    .vtl-dot { left: -28px; }
    .hero-l { padding: 60px 6%; }
    #philosophy, #areas, #process, #deliverables, #why, #cta { padding: 70px 5%; }
}
