 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --black: #0a0a0a;
     --white: #f5f0e8;
     --accent: #e8401c;
     --accent2: #f5a623;
     --mid: #1a1a1a;
     --grey: #3a3a3a;
     --light-grey: #888;
     --font-display: 'Bebas Neue', sans-serif;
     --font-body: 'DM Sans', sans-serif;
     --font-mono: 'JetBrains Mono', monospace;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-body);
     background: var(--black);
     color: var(--white);
     overflow-x: hidden;
     font-size: 16px;
     line-height: 1.6;
 }

 /* ───────── PAGE LOADER ───────── */
 #pageLoader {
     position: fixed;
     inset: 0;
     background: #0c0c0c;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     transition: opacity 0.8s ease, visibility 0.8s ease;
 }

 #pageLoader.hide {
     opacity: 0;
     visibility: hidden;
 }

 .loader-content {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .loader-logo {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 2.5rem;
     letter-spacing: 2px;
     color: #fff;
     margin-bottom: 1.5rem;
 }

 .loader-logo span {
     color: var(--accent);
 }

 .loader-spinner {
     width: 50px;
     height: 50px;
     border: 3px solid rgba(255, 255, 255, 0.2);
     border-top: 3px solid var(--accent);
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* Smooth page fade-in */
 body {
     /* opacity: 0; */
     transition: opacity 1s ease;
 }

 body.loaded {
     opacity: 1;
 }

 /* ── NAVBAR ── */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 1rem 2rem;
     background: rgba(10, 10, 10, 0.92);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }

 .nav-logo {
     font-family: var(--font-display);
     font-size: 1.5rem;
     letter-spacing: 0.04em;
     color: var(--white);
     text-decoration: none;
 }

 .nav-logo span {
     color: var(--accent);
 }

 .nav-links {
     display: flex;
     gap: 1.5rem;
     list-style: none;
     align-items: center;
 }

 .nav-links a {
     color: var(--light-grey);
     text-decoration: none;
     font-size: 0.8rem;
     font-weight: 500;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     transition: color 0.2s;
 }

 .nav-links a:hover {
     color: var(--white);
 }

 .nav-cta {
     background: var(--accent);
     color: var(--white) !important;
     padding: 0.5rem 1.2rem;
     border-radius: 2px;
     font-weight: 600 !important;
 }

 .nav-cta:hover {
     background: #c93516;
     color: var(--white) !important;
 }

 /* Hamburger */
 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     background: none;
     border: none;
     padding: 4px;
 }

 .hamburger span {
     display: block;
     width: 24px;
     height: 2px;
     background: var(--white);
     border-radius: 2px;
     transition: all 0.3s;
 }

 .hamburger.open span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
 }

 .hamburger.open span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.open span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
 }

 /* Mobile menu */
 .mobile-menu {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: var(--black);
     z-index: 999;
     padding: 6rem 2rem 2rem;
     flex-direction: column;
     gap: 0;
 }

 .mobile-menu.open {
     display: flex;
 }

 .mobile-menu a {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 1.2rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
     color: var(--white);
     text-decoration: none;
     font-family: var(--font-display);
     font-size: 2rem;
     letter-spacing: 0.04em;
 }

 .mobile-menu a span {
     color: var(--accent);
     font-size: 1.2rem;
 }

 .mobile-menu-cta {
     margin-top: 2rem;
     background: var(--accent);
     color: var(--white) !important;
     padding: 1rem 2rem;
     text-align: center;
     font-size: 1rem !important;
     font-family: var(--font-body) !important;
     font-weight: 600;
     border-radius: 2px;
 }

 /* ── HERO ── */
 #home {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 0 2rem 4rem;
     position: relative;
     overflow: hidden;
     padding-top: 80px;
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, #0a0a0a 60%, #1a0a0a 100%);
 }

 .hero-bg::after {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at 70% 50%, rgba(232, 64, 28, 0.12) 0%, transparent 60%);
 }

 .hero-grid {
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
     background-size: 60px 60px;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero-tag {
     font-family: var(--font-mono);
     font-size: 0.7rem;
     color: var(--accent);
     letter-spacing: 0.15em;
     text-transform: uppercase;
     margin-bottom: 1.5rem;
 }

 .hero-title {
     font-family: var(--font-display);
     font-size: clamp(4rem, 14vw, 5rem);
     line-height: 0.9;
     letter-spacing: -0.01em;
     margin-bottom: 2rem;
 }

 .hero-title em {
     color: var(--accent);
     font-style: italic;
 }

 .hero-desc {
     max-width: 560px;
     font-size: clamp(0.95rem, 2.5vw, 1.1rem);
     color: rgba(245, 240, 232, 0.7);
     margin-bottom: 2.5rem;
     font-weight: 300;
 }

 .hero-btns {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .btn {
     padding: 0.85rem 1.8rem;
     font-weight: 600;
     font-size: 0.85rem;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 2px;
     transition: all 0.2s;
     cursor: pointer;
     border: none;
 }

 .btn-primary {
     background: var(--accent);
     color: var(--white);
 }

 .btn-primary:hover {
     background: #c93516;
 }

 .btn-outline {
     background: transparent;
     color: var(--white);
     border: 1px solid rgba(255, 255, 255, 0.3);
 }

 .btn-outline:hover {
     border-color: var(--white);
 }

 .hero-stats {
     display: flex;
     gap: 2rem;
     margin-top: 4rem;
     flex-wrap: wrap;
     position: relative;
     z-index: 2;
 }

 .stat {
     border-left: 2px solid var(--accent);
     padding-left: 1rem;
 }

 .stat-num {
     font-family: var(--font-display);
     font-size: 2.2rem;
     line-height: 1;
 }

 .stat-label {
     font-size: 0.75rem;
     color: var(--light-grey);
     margin-top: 0.2rem;
 }

 /* ── TICKER ── */
 .ticker {
     background: var(--accent);
     overflow: hidden;
     padding: 0.7rem 0;
     white-space: nowrap;
 }

 .ticker-inner {
     display: inline-flex;
     gap: 3rem;
     animation: ticker 25s linear infinite;
 }

 .ticker-inner span {
     font-family: var(--font-mono);
     font-size: 0.7rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--white);
     font-weight: 500;
 }

 @keyframes ticker {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 /* ── SECTIONS COMMON ── */
 section {
     padding: 6rem 2rem;
 }

 .section-label {
     font-family: var(--font-mono);
     font-size: 1.65rem;
     color: var(--accent);
     letter-spacing: 0.2em;
     text-transform: uppercase;
     margin-bottom: 1rem;
     display: block;
 }

 .section-title {
     font-family: var(--font-display);
     font-size: clamp(2.5rem, 7vw, 5rem);
     line-height: 1;
     margin-bottom: 2rem;
 }

 .section-title em {
     color: var(--accent);
     font-style: italic;
 }

 /* ── ABOUT ── */
 #about {
     background: var(--mid);
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .about-img {
     width: 100%;
     aspect-ratio: 4/3;
     object-fit: cover;
     border-radius: 2px;
     filter: grayscale(20%);
 }

 .about-desc {
     color: rgba(245, 240, 232, 0.7);
     font-size: 1rem;
     margin-bottom: 1.5rem;
     line-height: 1.8;
 }

 .about-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     margin-top: 2rem;
 }

 .tag {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 0.4rem 1rem;
     border-radius: 100px;
     font-size: 0.75rem;
     font-weight: 500;
     letter-spacing: 0.05em;
 }

 /* ── SERVICES ── */
 #services {
     background: var(--black);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1px;
     background: rgba(255, 255, 255, 0.08);
     margin-top: 3rem;
 }

 .service-card {
     background: var(--black);
     padding: 2.5rem 2rem;
     transition: background 0.3s;
     cursor: default;
 }

 .service-card:hover {
     background: var(--mid);
 }

 .service-num {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     color: var(--accent);
     margin-bottom: 1.5rem;
     letter-spacing: 0.1em;
 }

 .service-icon {
     font-size: 2rem;
     margin-bottom: 1rem;
 }

 .service-title {
     font-family: var(--font-display);
     font-size: 1.6rem;
     margin-bottom: 0.8rem;
     letter-spacing: 0.02em;
 }

 .service-desc {
     color: rgba(245, 240, 232, 0.6);
     font-size: 0.85rem;
     line-height: 1.7;
 }

 .service-techs {
     display: flex;
     flex-wrap: wrap;
     gap: 0.4rem;
     margin-top: 1.2rem;
 }

 .tech-pill {
     background: rgba(232, 64, 28, 0.12);
     border: 1px solid rgba(232, 64, 28, 0.25);
     color: var(--accent);
     padding: 0.2rem 0.7rem;
     border-radius: 100px;
     font-size: 0.65rem;
     font-weight: 600;
     letter-spacing: 0.05em;
 }

 /* ── MARKETING ── */
 #digital-marketing {
     background: var(--mid);
 }

 .marketing-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: start;
     margin-top: 3rem;
 }

 .marketing-cards {
     display: grid;
     gap: 1rem;
 }

 .mcard {
     background: var(--black);
     border: 1px solid rgba(255, 255, 255, 0.07);
     padding: 1.5rem;
     border-radius: 2px;
 }

 .mcard-title {
     font-weight: 700;
     font-size: 0.9rem;
     margin-bottom: 0.4rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .mcard-desc {
     font-size: 0.8rem;
     color: rgba(245, 240, 232, 0.6);
 }

 .metrics-box {
     background: var(--black);
     border: 1px solid rgba(255, 255, 255, 0.07);
     padding: 2rem;
     border-radius: 2px;
 }

 .metrics-title {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     color: var(--light-grey);
     letter-spacing: 0.1em;
     margin-bottom: 1.5rem;
 }

 .metric-row {
     margin-bottom: 1.2rem;
 }

 .metric-label {
     display: flex;
     justify-content: space-between;
     font-size: 0.78rem;
     margin-bottom: 0.4rem;
 }

 .metric-pct {
     color: var(--accent);
     font-weight: 700;
 }

 .bar-track {
     height: 4px;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 2px;
     overflow: hidden;
 }

 .bar-fill {
     height: 100%;
     background: var(--accent);
     border-radius: 2px;
     animation: fillBar 1.5s ease forwards;
 }

 @keyframes fillBar {
     from {
         width: 0;
     }
 }

 .big-metrics {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .big-metric {
     text-align: center;
     padding: 1rem;
     background: rgba(232, 64, 28, 0.08);
 }

 .big-metric-num {
     font-family: var(--font-display);
     font-size: 2rem;
     color: var(--accent);
 }

 .big-metric-label {
     font-size: 0.65rem;
     color: var(--light-grey);
     margin-top: 0.2rem;
 }

 /* ── APP DEV ── */
 #app-dev {
     background: var(--black);
 }

 .appdev-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
     margin-top: 3rem;
 }

 .appdev-card {
     background: var(--mid);
     border: 1px solid rgba(255, 255, 255, 0.06);
     overflow: hidden;
     border-radius: 2px;
 }

 .appdev-img {
     width: 100%;
     aspect-ratio: 16/9;
     object-fit: cover;
     filter: grayscale(30%);
     display: block;
 }

 .appdev-body {
     padding: 1.5rem;
 }

 .appdev-icon {
     font-size: 1.5rem;
     margin-bottom: 0.8rem;
 }

 .appdev-title {
     font-family: var(--font-display);
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .appdev-desc {
     font-size: 0.82rem;
     color: rgba(245, 240, 232, 0.6);
     line-height: 1.6;
 }

 .process-steps {
     display: flex;
     gap: 0;
     margin-top: 4rem;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
 }

 .process-step {
     flex: 1;
     min-width: 140px;
     padding: 2rem 1.5rem;
     border-right: 1px solid rgba(255, 255, 255, 0.08);
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .process-step:last-child {
     border-right: none;
 }

 .step-num {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     color: var(--accent);
     letter-spacing: 0.1em;
     margin-bottom: 0.8rem;
 }

 .step-icon {
     font-size: 1.5rem;
     margin-bottom: 0.8rem;
 }

 .step-title {
     font-weight: 700;
     font-size: 0.9rem;
     margin-bottom: 0.4rem;
 }

 .step-desc {
     font-size: 0.75rem;
     color: var(--light-grey);
 }

 /* ── PRODUCTS ── */
 #products {
     background: var(--mid);
 }

 .products-list {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
     margin-top: 3rem;
 }

 .product-card {
     position: relative;
     overflow: hidden;
     border-radius: 2px;
     cursor: pointer;
     border: 1px solid rgba(255, 255, 255, 0.08);
 }

 .product-img {
     width: 100%;
     /* aspect-ratio: 4/5;
     object-fit: cover;
     filter: grayscale(40%); */
     transition: filter 0.4s, transform 0.4s;
     display: block;
 }

 .product-card:hover .product-img {
     filter: grayscale(0%);
     transform: scale(1.04);
 }

 .product-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgb(0 0 0 / 69%) 40%, #00000000 100%);
     padding: 1.5rem;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
    color: #fff;
    text-decoration: none;
 }

 .product-badge {
     align-self: flex-start;
     background: var(--accent);
     padding: 0.25rem 0.7rem;
     border-radius: 100px;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     margin-bottom: 0.8rem;
 }

 .product-name {
     font-family: var(--font-display);
     font-size: 1.8rem;
 }

 .product-sub {
     font-size: 1rem;
     color: rgba(245, 240, 232, 0.6);
     margin-top: 0.3rem;
 }

 /* ── EDVERSE ── */
 #edverse {
     background: #080808;
     border-top: 1px solid rgba(255, 255, 255, 0.06);
 }

 .edverse-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 5rem;
     align-items: center;
 }

 .edverse-img-wrap {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
 }

 .edverse-img {
     width: 100%;
     display: block;
 }

 .edverse-live {
     position: absolute;
     top: 1rem;
     left: 1rem;
     background: var(--accent);
     padding: 0.35rem 0.8rem;
     border-radius: 100px;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }

 .live-dot {
     width: 6px;
     height: 6px;
     background: var(--white);
     border-radius: 50%;
     animation: pulse 1.5s ease infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1
     }

     50% {
         opacity: 0.3
     }
 }

 .edverse-features {
     list-style: none;
     margin: 2rem 0;
 }

 .edverse-features li {
     padding: 0.8rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .edverse-features li::before {
     content: '✓';
     color: var(--accent);
     font-weight: 700;
     font-size: 0.8rem;
     flex-shrink: 0;
 }

 .edverse-stats {
     display: flex;
     gap: 2rem;
     margin-top: 2rem;
     flex-wrap: wrap;
 }

 .edverse-stat {
     text-align: center;
 }

 .edverse-stat-num {
     font-family: var(--font-display);
     font-size: 2rem;
     color: var(--accent);
 }

 .edverse-stat-label {
     font-size: 0.7rem;
     color: var(--light-grey);
 }

 /* ── CLIENTS ── */
 #clients {
     background: var(--black);
 }

 .clients-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: rgba(255, 255, 255, 0.07);
     margin-top: 3rem;
 }

 .client-card {
     background: var(--black);
     padding: 2rem;
     text-align: center;
     transition: background 0.3s;
 }

 .client-card:hover {
     background: var(--mid);
 }

 .client-icon {
     font-size: 2rem;
     margin-bottom: 0.8rem;
 }

 .client-name {
     font-weight: 700;
     font-size: 0.9rem;
 }

 .client-type {
     font-size: 0.7rem;
     color: var(--light-grey);
     margin-top: 0.2rem;
 }

 .client-kpis {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
     margin-top: 4rem;
 }

 .kpi {
     text-align: center;
     padding: 2rem;
     background: var(--mid);
     border-radius: 2px;
 }

 .kpi-num {
     font-family: var(--font-display);
     font-size: 2.8rem;
     color: var(--accent);
 }

 .kpi-label {
     font-size: 0.75rem;
     color: var(--light-grey);
     margin-top: 0.3rem;
 }

 /* ── TESTIMONIALS ── */
 .testimonials {
     background: var(--mid);
     padding: 6rem 2rem;
 }

 .testimonials .section-title {
     margin-bottom: 3rem;
 }

 .testi-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

 .testi-card {
     background: var(--black);
     border: 1px solid rgba(255, 255, 255, 0.07);
     padding: 2rem;
     border-radius: 2px;
 }

 .testi-stars {
     color: var(--accent2);
     font-size: 0.9rem;
     margin-bottom: 1rem;
 }

 .testi-text {
     font-size: 0.88rem;
     color: rgba(245, 240, 232, 0.8);
     line-height: 1.7;
     margin-bottom: 1.5rem;
     font-style: italic;
 }

 .testi-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .testi-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: var(--accent);
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 0.8rem;
     flex-shrink: 0;
 }

 .testi-name {
     font-weight: 700;
     font-size: 0.85rem;
 }

 .testi-role {
     font-size: 0.72rem;
     color: var(--light-grey);
 }

 /* ── CTA ── */
 .cta-section {
     background: var(--accent);
     padding: 6rem 2rem;
     text-align: center;
 }

 .cta-section .cta-label {
     font-family: var(--font-mono);
     font-size: 1.7rem;
     letter-spacing: 0.2em;
     margin-bottom: 1rem;
     opacity: 0.8
 }

 .cta-title {
     font-family: var(--font-display);
     font-size: clamp(3rem, 10vw, 7rem);
     line-height: 0.9;
     letter-spacing: -0.01em;
     color: var(--white);
     margin-bottom: 2rem;
 }

 .cta-section .btn {
     background: var(--black);
     color: var(--white);
     font-size: 1rem;
     padding: 1.1rem 2.5rem;
 }

 /* ── FOOTER ── */
 footer {
     background: var(--black);
     border-top: 1px solid rgba(255, 255, 255, 0.07);
     padding: 4rem 2rem 2rem;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer-brand .nav-logo {
     font-size: 1.8rem;
     display: inline-block;
     margin-bottom: 1rem;
 }

 .footer-desc {
     font-size: 0.82rem;
     color: rgba(245, 240, 232, 0.5);
     line-height: 1.7;
 }

 .footer-social {
     display: flex;
     gap: 0.8rem;
     margin-top: 1.5rem;
 }

 .social-link {
     width: 36px;
     height: 36px;
     border: 1px solid rgba(255, 255, 255, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--light-grey);
     text-decoration: none;
     font-size: 0.75rem;
     border-radius: 2px;
     transition: all 0.2s;
 }

 .social-link:hover {
     border-color: var(--accent);
     color: var(--accent);
 }

 .footer-col h4 {
     font-size: 0.75rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--white);
     margin-bottom: 1.2rem;
     font-weight: 700;
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 0.6rem;
 }

 .footer-col ul li a {
     color: rgba(245, 240, 232, 0.5);
     text-decoration: none;
     font-size: 0.82rem;
     transition: color 0.2s;
 }

 .footer-col ul li a:hover {
     color: var(--white);
 }

 .footer-contact p {
     font-size: 0.82rem;
     color: rgba(245, 240, 232, 0.5);
     margin-bottom: 0.5rem;
 }

 .footer-contact a {
     color: rgba(245, 240, 232, 0.5);
     text-decoration: none;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.06);
     padding-top: 1.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .footer-bottom p {
     font-size: 0.72rem;
     color: rgba(245, 240, 232, 0.3);
 }

 .footer-legal {
     display: flex;
     gap: 1.5rem;
 }

 .footer-legal a {
     font-size: 0.72rem;
     color: rgba(245, 240, 232, 0.3);
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-legal a:hover {
     color: var(--white);
 }

 /* ── CONTACT MODAL ── */
 .modal-overlay {
     display: none;
     position: fixed;
     inset: 0;
     z-index: 2000;
     background: rgba(0, 0, 0, 0.85);
     backdrop-filter: blur(4px);
     align-items: center;
     justify-content: center;
     padding: 1rem;
 }

 .modal-overlay.open {
     display: flex;
 }

 .modal {
     background: var(--mid);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 4px;
     padding: 2.5rem;
     width: 100%;
     max-width: 560px;
     position: relative;
     max-height: 90vh;
     overflow-y: auto;
 }

 .modal-close {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: none;
     border: none;
     color: var(--light-grey);
     font-size: 1.5rem;
     cursor: pointer;
     line-height: 1;
 }

 .modal-title {
     font-family: var(--font-display);
     font-size: 2.5rem;
     margin-bottom: 0.5rem;
 }

 .modal-subtitle {
     color: var(--light-grey);
     font-size: 0.85rem;
     margin-bottom: 2rem;
 }

 .form-group {
     margin-bottom: 1.2rem;
 }

 .form-group label {
     display: block;
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     margin-bottom: 0.5rem;
     color: rgba(245, 240, 232, 0.7);
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     background: var(--black);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--white);
     padding: 0.75rem 1rem;
     border-radius: 2px;
     font-family: var(--font-body);
     font-size: 0.9rem;
     outline: none;
     transition: border-color 0.2s;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     border-color: var(--accent);
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical;
 }

 .form-group select {
     appearance: none;
     cursor: pointer;
 }

 .slider {
     position: relative;
     max-width: 800px;
     height: 400px;
     margin: 40px auto;
     overflow: hidden;
 }

 .hero-slider {
     position: absolute;
     inset: 0;
     z-index: 0;
 }

 .hero-slide {
     position: absolute;
     inset: 0;
     background-size: cover;
     background-position: center;
     opacity: 0;
     transition: opacity 1.2s ease-in-out;
 }

 .hero-slide::after {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.65);
 }

 .hero-slide.active {
     opacity: 1;
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 1024px) {
     .nav-links {
         display: none;
     }

     .nav-cta-desktop {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .about-grid,
     .marketing-grid,
     .edverse-inner {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }

     .appdev-grid {
         grid-template-columns: 1fr;
     }

     .services-grid {
         grid-template-columns: 1fr 1fr;
     }

     .products-list {
         grid-template-columns: 1fr 1fr;
     }

     .clients-grid {
         grid-template-columns: 1fr 1fr;
     }

     .client-kpis {
         grid-template-columns: 1fr 1fr;
     }

     .testi-grid {
         grid-template-columns: 1fr;
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 2rem;
     }
 }

 @media (max-width: 768px) {
     nav {
         padding: 1rem 1.2rem;
     }

     section {
         padding: 4rem 1.2rem;
     }

     .hero-title {
         font-size: clamp(3.5rem, 18vw, 6rem);
     }

     .hero-btns {
         flex-direction: column;
     }

     .btn {
         text-align: center;
     }

     .hero-stats {
         gap: 1.5rem;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .service-card {
         padding: 2rem 1.5rem;
     }

     .products-list {
         grid-template-columns: 1fr;
     }

     .product-img {
         aspect-ratio: 16/9;
     }

     .clients-grid {
         grid-template-columns: 1fr 1fr;
     }

     .client-kpis {
         grid-template-columns: 1fr 1fr;
     }

     .testi-grid {
         grid-template-columns: 1fr;
     }

     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .footer-legal {
         justify-content: center;
     }

     .cta-section {
         padding: 4rem 1.2rem;
     }

     .cta-title {
         font-size: clamp(2.5rem, 15vw, 5rem);
     }

     .testimonials {
         padding: 4rem 1.2rem;
     }

     .big-metrics {
         grid-template-columns: 1fr 1fr;
     }

     .process-steps {
         flex-direction: column;
         overflow: visible;
     }

     .process-step {
         border-right: none;
         min-width: unset;
     }

     .appdev-grid {
         grid-template-columns: 1fr;
     }

     .edverse-stats {
         gap: 1.5rem;
         justify-content: center;
     }
 }

 @media (max-width: 480px) {
     .hero-title {
         font-size: clamp(3rem, 20vw, 5rem);
     }

     .hero-stats {
         gap: 1rem;
     }

     .stat-num {
         font-size: 1.8rem;
     }

     .section-title {
         font-size: clamp(2rem, 10vw, 3.5rem);
     }

     .clients-grid {
         grid-template-columns: 1fr 1fr;
     }

     .client-kpis {
         grid-template-columns: 1fr 1fr;
     }

     .modal {
         padding: 1.5rem;
     }

     .modal-title {
         font-size: 2rem;
     }
 }