/* ==========================================================================
   PRISTINE CORPORATE LIGHT THEME - GLOBAL CSS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette - Light Theme */
    --bg-pure: #ffffff;
    --bg-surface: #f8fafc;
    /* Slate 50 */
    --bg-elevated: #f1f5f9;
    /* Slate 100 */
    --bg-dark: #0f172a;
    /* Slate 900 - For Header/Footer */

    --primary-blue: #2563eb;
    /* Royal Blue */
    --primary-indigo: #4f46e5;
    /* Deep Indigo */

    --text-dark: #0f172a;
    /* Main Headings */
    --text-body: #475569;
    /* Paragraphs */
    --text-light: #f8fafc;
    /* For Dark sections */

    /* Borders & Shadows */
    --border-light: 1px solid #e2e8f0;
    --border-dark: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 30px 60px -15px rgba(37, 99, 235, 0.15);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --pad-section: 140px 5%;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Animation Easing */
    --ease-premium: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base Reset & Cursors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-pure);
    color: var(--text-body);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Custom Magnetic Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}

.cursor-dot.hover {
    width: 0;
    height: 0;
}

.cursor-ring.hover {
    width: 70px;
    height: 70px;
    border-color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(2px);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-body);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ease-premium);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

/* Gradients & Accents */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

/* Corporate Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--ease-premium);
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-indigo));
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-indigo), var(--primary-blue));
    z-index: -1;
    opacity: 0;
    transition: var(--ease-premium);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #cbd5e1;
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--text-dark);
    background: var(--text-dark);
    color: #ffffff;
}

/* Subtitles & Badges */
.sec-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-surface);
    border: var(--border-light);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.sec-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Ambient Light Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(#f1f5f9 1px, transparent 1px), linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ==========================================================================
   1. GLOBAL HEADER 
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    transition: var(--ease-premium);
    background: var(--bg-dark);
    border-bottom: var(--border-dark);
}

header.scrolled {
    height: 80px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5%;
    max-width: 1500px;
    margin: 0 auto;
}

.logo-box img {
    height: 65px;
    transition: var(--ease-premium);
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--ease-premium);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ==========================================================================
   2. HERO SECTION (CLEAN & 3D)
   ========================================================================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 0;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.05;
}

.hero-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3rem;
    color: var(--text-body);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* 3D Wireframe Globe */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.wireframe-globe {
    width: 350px;
    height: 350px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateGlobe 20s infinite linear;
}

.globe-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
}

.globe-ring:nth-child(1) {
    transform: rotateY(0deg);
}

.globe-ring:nth-child(2) {
    transform: rotateY(45deg);
}

.globe-ring:nth-child(3) {
    transform: rotateY(90deg);
}

.globe-ring:nth-child(4) {
    transform: rotateY(135deg);
}

.globe-ring:nth-child(5) {
    transform: rotateX(90deg);
    border-color: rgba(79, 70, 229, 0.3);
}

/* ==========================================================================
   3. CLIENT MARQUEE (TRUST METRICS)
   ========================================================================== */
.trust-bar {
    padding: 40px 0;
    border-top: var(--border-light);
    border-bottom: var(--border-light);
    background: var(--bg-pure);
    overflow: hidden;
    display: flex;
    position: relative;
    z-index: 2;
}

.trust-track {
    display: flex;
    width: max-content;
    gap: 6rem;
    animation: marqueeLeft 35s linear infinite;
}

.trust-item {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item span {
    color: var(--primary-blue);
    font-weight: 800;
}

/* ==========================================================================
   4. AGENCY PHILOSOPHY
   ========================================================================== */
#philosophy {
    padding: var(--pad-section);
    background: var(--bg-surface);
}

.phil-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: flex-start;
}

.phil-statement {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--text-dark);
}

/* ==========================================================================
   5. SERVICES (HOVER EXPAND CARDS)
   ========================================================================== */
#services {
    padding: var(--pad-section);
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.srv-card {
    background: var(--bg-pure);
    border: var(--border-light);
    border-radius: var(--radius-md);
    padding: 3.5rem;
    transition: var(--ease-premium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.srv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-hover);
}

.srv-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    transition: var(--ease-premium);
}

.srv-card:hover .srv-icon {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.1);
}

.srv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   6. INTERACTIVE ROI CALCULATOR
   ========================================================================== */
#calculator {
    padding: var(--pad-section);
    background: var(--bg-dark);
    color: var(--text-light);
}

.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.calc-controls {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-dark);
    padding: 4rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.calc-controls label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.val-hl {
    color: #60a5fa;
    font-weight: 700;
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    margin-bottom: 3rem;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #60a5fa;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
    transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-output {
    text-align: center;
}

.calc-output h4 {
    color: #94a3b8;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.roi-number {
    font-size: 7rem;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
}

/* ==========================================================================
   7. INDUSTRIES (MASONRY-STYLE GRID)
   ========================================================================== */
#industries {
    padding: var(--pad-section);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.ind-item {
    background: var(--bg-surface);
    border: var(--border-light);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.ind-item::after {
    content: '→';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--ease-premium);
    opacity: 0;
}

.ind-item:hover {
    background: #fff;
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
    padding-bottom: 4rem;
    padding-top: 2rem;
}

.ind-item:hover::after {
    bottom: 20px;
    opacity: 1;
}

.ind-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* ==========================================================================
   8. CAMPAIGN REPORTS (SVG BAR CHART)
   ========================================================================== */
#reports {
    padding: var(--pad-section);
    background: var(--bg-surface);
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.chart-panel {
    background: var(--bg-pure);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: 4rem;
    height: 450px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 2px solid #e2e8f0;
}

.c-bar {
    width: 12%;
    background: linear-gradient(to top, var(--primary-blue), var(--primary-indigo));
    border-radius: 6px 6px 0 0;
    position: relative;
    height: 0;
    transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.c-bar span {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

.c-bar::after {
    content: attr(data-month);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 500;
}

/* ==========================================================================
   9. TESTIMONIALS (HORIZONTAL SCROLL)
   ========================================================================== */
#testimonials {
    padding: var(--pad-section);
    overflow: hidden;
}

.test-track {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 3rem;
    scrollbar-width: none;
}

.test-track::-webkit-scrollbar {
    display: none;
}

.t-card {
    min-width: 600px;
    background: var(--bg-surface);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: 4rem;
    scroll-snap-align: start;
    transition: var(--ease-premium);
}

.t-card:hover {
    background: var(--bg-pure);
    box-shadow: var(--shadow-hover);
}

.t-quote {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-blue);
    line-height: 0.5;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.t-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.t-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

/* ==========================================================================
   10. CONTACT CTA (SPLIT LAYOUT)
   ========================================================================== */
#contact {
    padding: var(--pad-section);
    background: var(--bg-surface);
}

.contact-wrapper {
    background: var(--bg-pure);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.c-info {
    padding: 6rem;
    background: var(--bg-dark);
    color: var(--text-light);
}

.c-info h2 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.c-info p {
    color: #94a3b8;
    margin-bottom: 3rem;
}

.c-detail {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.c-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.c-form {
    padding: 6rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    padding: 20px 0;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    transition: var(--ease-premium);
    outline: none;
    border-radius: 0;
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-input:focus {
    border-bottom-color: var(--primary-blue);
}

textarea.form-input {
    min-height: 120px;
    resize: none;
}

/* ==========================================================================
   11. LIVE CHAT WIDGET
   ========================================================================== */
.chat-dock {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 10000;
}

.chat-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: var(--ease-premium);
}

.chat-btn:hover {
    transform: scale(1.1);
    background: var(--primary-indigo);
}

.chat-panel {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 360px;
    background: var(--bg-pure);
    border: var(--border-light);
    border-radius: var(--radius-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.4s var(--ease-premium);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.chat-panel.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.chat-head {
    background: var(--bg-dark);
    padding: 20px;
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chat-body {
    height: 300px;
    padding: 20px;
    overflow-y: auto;
    color: var(--text-body);
    font-size: 0.95rem;
}

.chat-input {
    display: flex;
    border-top: var(--border-light);
}

.chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px;
    color: var(--text-dark);
    outline: none;
    font-family: var(--font-body);
}

.chat-input button {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    padding: 0 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
}

/* ==========================================================================
   12. GLOBAL FOOTER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
footer {
    background: var(--bg-dark);
    padding: 100px 5% 40px;
    border-top: var(--border-dark);
    position: relative;
    z-index: 10;
    color: var(--text-light);
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 5rem;
    max-width: 1500px;
    margin: 0 auto 5rem;
}

.foot-brand img {
    height: 70px;
    filter: brightness(0) invert(1);
    margin-bottom: 2rem;
}

.foot-brand p {
    max-width: 350px;
    font-size: 1.05rem;
    color: #94a3b8;
}

.f-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.f-links {
    list-style: none;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: #94a3b8;
    transition: var(--ease-premium);
    font-weight: 400;
}

.f-links a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.foot-bottom {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    border-top: var(--border-dark);
    padding-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-header {
    padding: 220px 5% 100px;
    text-align: center;
    background: var(--bg-surface);
    border-bottom: var(--border-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 5%;
    background: var(--bg-pure);
}

.legal-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 4rem 0 1.5rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--text-body);
    font-size: 1.15rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes rotateGlobe {
    0% {
        transform: rotateX(0) rotateY(0);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s var(--ease-premium);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {

    .hero-layout,
    .phil-grid,
    .calc-container,
    .report-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .srv-grid,
    .ind-grid,
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .c-info,
    .c-form {
        padding: 4rem;
    }

    .t-card {
        min-width: 450px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .srv-grid,
    .ind-grid,
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .c-info,
    .c-form {
        padding: 3rem 2rem;
    }

    .t-card {
        min-width: 320px;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    /* Disable custom cursor on mobile */
}