/* ==========================================================================
   CSS Variables & Custom Properties (NEW THEME)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    /* Bold Creative Palette */
    --bg-dark: #0A0A0A;
    /* Deep Onyx Black */
    --bg-light: #F4F5F7;
    /* Off-white */
    --bg-card: #FFFFFF;
    /* Pure White */

    --color-primary: #FF4500;
    /* Neon Orange (Action/Accent) */
    --color-primary-hover: #E03E00;
    --color-secondary: #4361EE;
    /* Electric Blue (Trust/Tech) */
    --color-dark: #111111;
    /* Header/Footer Background */

    --text-main: #333333;
    --text-muted: #777777;
    --text-light: #F8F9FA;

    /* Typography */
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing & Layout */
    --max-width: 1300px;
    --section-pad: 120px 20px;
    --header-height: 100px;

    /* Effects */
    --radius-lg: 20px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(67, 97, 238, 0.15);
    --shadow-glow: 0 0 20px rgba(255, 69, 0, 0.4);

    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    /* Custom Cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--text-light);
}

/* Section Titles */
.section-title {
    margin-bottom: 70px;
    text-align: center;
}

.section-title.left {
    text-align: left;
}

.section-title h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    width: calc(100% + 20px);
    height: 15px;
    background: var(--color-primary);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-15deg);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.section-title.left p {
    margin: 20px 0 0 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background-color: var(--color-dark);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
    height: 80px;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 40px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 40px;
    margin-right: 40px;
}

.nav-list li a {
    color: var(--text-light);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-list li a:hover {
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: none;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 2px;
    background: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--text-light);
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ==========================================================================
   1. Hero Section (Geometric & 3D)
   ========================================================================== */
.hero {
    padding-top: var(--header-height);
    min-height: 100vh;
    background: var(--bg-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--bg-dark) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 30px;
    animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero-text h1 span {
    color: var(--color-primary);
    display: block;
}

.hero-text p {
    color: #AAAAAA;
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.glass-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-15deg);
    width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    animation: floatPanel 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.glass-panel h3 {
    color: var(--text-light);
    font-size: 2rem;
    transform: translateZ(50px);
}

.glass-panel .chart-bar {
    height: 10px;
    background: var(--color-primary);
    margin-bottom: 15px;
    border-radius: 5px;
    transform: translateZ(30px);
}

/* ==========================================================================
   2. Client Marquee (Infinite Scroll)
   ========================================================================== */
.marquee-section {
    background: var(--color-primary);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
    align-items: center;
}

.marquee-text {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2rem;
    color: var(--color-dark);
    text-transform: uppercase;
}

.marquee-text span {
    color: var(--text-light);
}

/* ==========================================================================
   3. About Section
   ========================================================================== */
.about {
    padding: var(--section-pad);
    background: var(--bg-card);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img-main rect {
    fill: var(--bg-dark);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-secondary);
    color: var(--text-light);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    text-align: center;
    border: 10px solid var(--bg-card);
    animation: spinSlow 15s linear infinite;
}

.about-badge h3 {
    color: var(--text-light);
    font-size: 3rem;
    margin: 0;
    line-height: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
}

.stat-num {
    font-size: 3rem;
    font-family: var(--font-head);
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1;
}

.stat-text {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   4. Services Section
   ========================================================================== */
.services {
    padding: var(--section-pad);
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::after {
    height: 100%;
    background: var(--color-dark);
    z-index: -1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--text-light);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--text-light);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    transition: var(--transition);
}

/* ==========================================================================
   5. Our Process (Timeline)
   ========================================================================== */
.process {
    padding: var(--section-pad);
    background: var(--bg-dark);
    color: var(--text-light);
}

.process .section-title h2,
.process .section-title p {
    color: var(--text-light);
}

.process-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-dark);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.process-step:hover .step-num {
    background: var(--color-primary);
    color: var(--text-light);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.process-step h4 {
    color: var(--text-light);
    font-size: 1.2rem;
}

.process-step p {
    color: #888;
    font-size: 0.9rem;
}

/* ==========================================================================
   6. Industries Section (Diagonal Cut)
   ========================================================================== */
.industries {
    padding: 150px 20px;
    background: var(--bg-card);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: -50px 0;
    position: relative;
    z-index: 10;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ind-box {
    background: var(--bg-light);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.ind-box:hover {
    background: var(--color-secondary);
    color: var(--text-light);
    transform: translateY(-5px);
}

.ind-box:hover h3 {
    color: var(--text-light);
}

.ind-box svg {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    stroke: var(--color-primary);
}

.ind-box:hover svg {
    stroke: var(--text-light);
}

/* ==========================================================================
   7. Case Studies (3D Vanilla JS Tilt Cards)
   ========================================================================== */
.cases {
    padding: var(--section-pad);
    background: var(--bg-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    perspective: 1000px;
}

.tilt-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transform-style: preserve-3d;
    position: relative;
    border-top: 5px solid var(--color-primary);
}

.tilt-content {
    transform: translateZ(30px);
}

.tilt-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.case-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 69, 0, 0.1);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid #EEE;
    padding-top: 20px;
}

.metric {
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-family: var(--font-head);
    font-weight: 900;
}

.metric span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ==========================================================================
   8. Why Choose Us (Feature List)
   ========================================================================== */
.why {
    padding: var(--section-pad);
    background: var(--bg-card);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feat-item {
    display: flex;
    gap: 20px;
}

.feat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.feat-text h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.why-visual svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   9. Testimonials (Masonry style grid)
   ========================================================================== */
.testimonials {
    padding: var(--section-pad);
    background: var(--bg-dark);
    color: var(--text-light);
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--text-light);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-card:nth-child(2) {
    transform: translateY(30px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 20px;
    font-family: serif;
}

.test-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #CCC;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-ava {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.client-info h4 {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.client-info span {
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* ==========================================================================
   10. Contact / CTA
   ========================================================================== */
.contact-sec {
    padding: var(--section-pad);
    background: var(--bg-light);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.contact-info-panel {
    background: var(--color-secondary);
    color: var(--text-light);
    padding: 60px;
}

.contact-info-panel h2 {
    color: var(--text-light);
}

.info-block {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.info-block svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.form-panel {
    background: var(--bg-card);
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
}

.input-group.full {
    grid-column: 1 / -1;
}

.form-ctrl {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-light);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-ctrl:focus {
    border-color: var(--color-secondary);
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
}

textarea.form-ctrl {
    height: 150px;
    resize: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--color-dark);
    color: #888;
    padding-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.foot-logo {
    height: 45px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.foot-col h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.foot-links li {
    margin-bottom: 15px;
}

.foot-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.social-icons a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links a {
    margin-left: 20px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--text-light);
}

/* ==========================================================================
   Legal Pages Formatting
   ========================================================================== */
.legal-header {
    padding: 180px 20px 80px;
    background: var(--bg-dark);
    text-align: center;
}

.legal-header h1 {
    color: var(--text-light);
    font-size: 3.5rem;
}

.legal-body {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    transform: translateY(-40px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 60px;
}

.legal-body h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.legal-body p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatPanel {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateY(-15deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotateY(-15deg) translateY(-20px);
    }
}

@keyframes spinSlow {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsiveness
   ========================================================================== */
@media (max-width: 1024px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .process-wrapper::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .test-card:nth-child(2) {
        transform: none;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .hero-content,
    .about-grid,
    .why-layout,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .glass-panel {
        width: 90%;
        padding: 20px;
    }

    .nav-list {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        flex-direction: column;
        background: var(--color-dark);
        width: 100%;
        height: 100vh;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
    }

    .nav-list.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hamburger.active {
        background: transparent;
    }

    .hamburger.active::before {
        transform: rotate(45deg);
        top: 0;
    }

    .hamburger.active::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .foot-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}