/* ==========================================================================
   CSS RESET & CUSTOM PROPERTIES
   ========================================================================== */
:root {
   /* Brand Colors (Dark Theme based on modern tech/marketing logos) */
   --clr-bg-main: #060b19;
   --clr-bg-alt: #0a1128;
   --clr-bg-card: #121c3a;
   --clr-primary: #38bdf8;
   --clr-primary-glow: rgba(56, 189, 248, 0.4);
   --clr-secondary: #818cf8;
   --clr-accent: #f472b6;
   --clr-text-main: #f8fafc;
   --clr-text-muted: #94a3b8;
   --clr-border: #1e293b;
   --clr-success: #34d399;

   /* Typography */
   --font-heading: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
   --font-body: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

   /* Spacing */
   --spacing-xs: 0.5rem;
   --spacing-sm: 1rem;
   --spacing-md: 2rem;
   --spacing-lg: 4rem;
   --spacing-xl: 8rem;

   /* Transitions & Shadows */
   --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
   --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
   --shadow-glow: 0 0 20px var(--clr-primary-glow);
   --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   font-family: var(--font-body);
   background-color: var(--clr-bg-main);
   color: var(--clr-text-main);
   line-height: 1.6;
   overflow-x: hidden;
}

a {
   text-decoration: none;
   color: inherit;
   transition: color var(--transition-fast);
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   display: block;
}

.container {
   width: 100%;
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 var(--spacing-sm);
}

.section-padding {
   padding: var(--spacing-xl) 0;
}

.text-center {
   text-align: center;
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: var(--spacing-sm);
}

.gradient-text {
   background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary), var(--clr-accent));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-size: 200% 200%;
   animation: gradientShift 5s ease infinite;
}

.section-title {
   font-size: 3rem;
   margin-bottom: var(--spacing-md);
   position: relative;
   display: inline-block;
}

.section-subtitle {
   color: var(--clr-primary);
   font-size: 1.1rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   font-weight: 600;
   display: block;
   margin-bottom: var(--spacing-xs);
}

.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 1rem 2rem;
   font-size: 1rem;
   font-weight: 600;
   border-radius: 50px;
   cursor: pointer;
   transition: all var(--transition-fast);
   border: none;
   position: relative;
   overflow: hidden;
   z-index: 1;
}

.btn-primary {
   background: linear-gradient(45deg, var(--clr-primary), var(--clr-secondary));
   color: #fff;
   box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-primary::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(45deg, var(--clr-secondary), var(--clr-accent));
   z-index: -1;
   transition: opacity var(--transition-fast);
   opacity: 0;
}

.btn-primary:hover::before {
   opacity: 1;
}

.btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}

/* ==========================================================================
   HEADER & NAVIGATION (IDENTICAL ON ALL PAGES)
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   padding: 1.5rem 0;
   transition: all var(--transition-fast);
   background: transparent;
}

.site-header.scrolled {
   background: rgba(6, 11, 25, 0.95);
   backdrop-filter: blur(10px);
   padding: 1rem 0;
   border-bottom: 1px solid var(--clr-border);
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-link {
   display: flex;
   align-items: center;
   z-index: 1001;
}

.site-logo {
   height: 50px;
}

.main-nav {
   display: flex;
   align-items: center;
   gap: 2.5rem;
}

.nav-list {
   display: flex;
   gap: 2rem;
}

.nav-link {
   font-size: 1rem;
   font-weight: 500;
   color: var(--clr-text-main);
   position: relative;
}

.nav-link::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--clr-primary);
   transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
   width: 100%;
}

.nav-link:hover {
   color: var(--clr-primary);
}

.mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   color: var(--clr-text-main);
   font-size: 1.5rem;
   cursor: pointer;
   z-index: 1001;
}

/* ==========================================================================
   HERO SECTION (3D & ANIMATIONS)
   ========================================================================== */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   padding-top: 80px;
   overflow: hidden;
   background: radial-gradient(circle at 80% 20%, var(--clr-bg-alt) 0%, var(--clr-bg-main) 100%);
}

.hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml;utf8,<svg opacity="0.05" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23ffffff" stroke-width="0.5" stroke-dasharray="2 2"/></svg>') repeat;
   z-index: 0;
}

.hero-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   position: relative;
   z-index: 1;
}

.hero-content h1 {
   font-size: 4.5rem;
   margin-bottom: 1.5rem;
}

.hero-content p {
   font-size: 1.25rem;
   color: var(--clr-text-muted);
   margin-bottom: 2.5rem;
   max-width: 90%;
}

.hero-buttons {
   display: flex;
   gap: 1.5rem;
}

.btn-outline {
   background: transparent;
   border: 2px solid var(--clr-primary);
   color: var(--clr-primary);
}

.btn-outline:hover {
   background: var(--clr-primary);
   color: #fff;
   box-shadow: var(--shadow-glow);
}

/* 3D Floating Elements */
.hero-visuals {
   position: relative;
   perspective: 1000px;
   height: 500px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.cube-wrapper {
   position: relative;
   width: 250px;
   height: 250px;
   transform-style: preserve-3d;
   animation: rotate3d 15s infinite linear;
}

.cube-face {
   position: absolute;
   width: 250px;
   height: 250px;
   background: rgba(18, 28, 58, 0.7);
   border: 2px solid var(--clr-primary);
   box-shadow: inset 0 0 30px rgba(56, 189, 248, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   font-weight: bold;
   color: var(--clr-primary);
   backdrop-filter: blur(5px);
}

.face-front {
   transform: translateZ(125px);
}

.face-back {
   transform: rotateY(180deg) translateZ(125px);
}

.face-right {
   transform: rotateY(90deg) translateZ(125px);
}

.face-left {
   transform: rotateY(-90deg) translateZ(125px);
}

.face-top {
   transform: rotateX(90deg) translateZ(125px);
}

.face-bottom {
   transform: rotateX(-90deg) translateZ(125px);
}

/* ==========================================================================
   ABOUT AGENCY SECTION
   ========================================================================== */
.about-section {
   background: var(--clr-bg-alt);
   position: relative;
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.about-image {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: var(--shadow-card);
}

.about-image::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(45deg, var(--clr-primary-glow), transparent);
   pointer-events: none;
}

.about-image img {
   width: 100%;
   height: auto;
   border-radius: 20px;
   transition: transform var(--transition-slow);
}

.about-image:hover img {
   transform: scale(1.05);
}

.about-text p {
   color: var(--clr-text-muted);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.about-features {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
   margin-top: 2rem;
}

.feature-item {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.feature-icon {
   width: 40px;
   height: 40px;
   background: rgba(56, 189, 248, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--clr-primary);
   font-size: 1.2rem;
}

/* ==========================================================================
   SERVICES SECTION (3D HOVER CARDS)
   ========================================================================== */
.services-section {
   position: relative;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.service-card {
   background: var(--clr-bg-card);
   padding: 3rem 2rem;
   border-radius: 20px;
   border: 1px solid var(--clr-border);
   transition: all var(--transition-slow);
   position: relative;
   overflow: hidden;
   transform-style: preserve-3d;
   cursor: pointer;
}

.service-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(56, 189, 248, 0.1), transparent 40%);
   z-index: 0;
   opacity: 0;
   transition: opacity var(--transition-fast);
}

.service-card:hover::before {
   opacity: 1;
}

.service-card:hover {
   transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--clr-primary-glow);
   border-color: var(--clr-primary);
}

.service-icon {
   font-size: 3rem;
   margin-bottom: 1.5rem;
   color: var(--clr-primary);
   position: relative;
   z-index: 1;
   transform: translateZ(30px);
}

.service-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
   position: relative;
   z-index: 1;
   transform: translateZ(20px);
}

.service-card p {
   color: var(--clr-text-muted);
   position: relative;
   z-index: 1;
   transform: translateZ(10px);
}

/* ==========================================================================
   INTERACTIVE CAMPAIGN REPORT SECTION
   ========================================================================== */
.report-section {
   background: var(--clr-bg-alt);
   border-top: 1px solid var(--clr-border);
   border-bottom: 1px solid var(--clr-border);
}

.dashboard-container {
   background: var(--clr-bg-main);
   border-radius: 20px;
   border: 1px solid var(--clr-border);
   padding: 2rem;
   box-shadow: var(--shadow-card);
   margin-top: 3rem;
}

.dashboard-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 2rem;
   padding-bottom: 1rem;
   border-bottom: 1px solid var(--clr-border);
}

.dashboard-tabs {
   display: flex;
   gap: 1rem;
}

.tab-btn {
   background: transparent;
   border: 1px solid var(--clr-border);
   color: var(--clr-text-muted);
   padding: 0.5rem 1.5rem;
   border-radius: 50px;
   cursor: pointer;
   transition: all var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
   background: var(--clr-primary);
   color: #fff;
   border-color: var(--clr-primary);
   box-shadow: var(--shadow-glow);
}

.chart-wrapper {
   display: flex;
   align-items: flex-end;
   height: 300px;
   gap: 2%;
   padding-top: 2rem;
}

.chart-bar {
   flex: 1;
   background: linear-gradient(to top, var(--clr-secondary), var(--clr-primary));
   border-radius: 5px 5px 0 0;
   position: relative;
   transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
   height: 0;
   /* Animated via JS */
}

.chart-bar::after {
   content: attr(data-value);
   position: absolute;
   top: -25px;
   left: 50%;
   transform: translateX(-50%);
   font-size: 0.85rem;
   font-weight: bold;
   color: var(--clr-text-main);
   opacity: 0;
   transition: opacity 0.3s;
}

.chart-bar:hover::after {
   opacity: 1;
}

.chart-bar:hover {
   filter: brightness(1.2);
}

.chart-labels {
   display: flex;
   justify-content: space-between;
   margin-top: 1rem;
   color: var(--clr-text-muted);
   font-size: 0.9rem;
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
   margin-top: 3rem;
}

.industry-card {
   background: var(--clr-bg-card);
   padding: 2rem;
   border-radius: 15px;
   text-align: center;
   border: 1px solid var(--clr-border);
   transition: transform var(--transition-fast), background var(--transition-fast);
   position: relative;
   overflow: hidden;
}

.industry-card::before {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 3px;
   background: var(--clr-primary);
   transform: scaleX(0);
   transform-origin: right;
   transition: transform var(--transition-slow);
}

.industry-card:hover::before {
   transform: scaleX(1);
   transform-origin: left;
}

.industry-card:hover {
   transform: translateY(-5px);
   background: rgba(18, 28, 58, 0.8);
}

/* ==========================================================================
   STATS / COUNTER SECTION
   ========================================================================== */
.stats-section {
   background: linear-gradient(135deg, var(--clr-bg-alt), var(--clr-bg-main));
   border-top: 1px solid var(--clr-border);
   border-bottom: 1px solid var(--clr-border);
}

.stats-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
   text-align: center;
}

.stat-item {
   padding: 2rem;
}

.stat-number {
   font-size: 4rem;
   font-weight: 800;
   color: var(--clr-primary);
   margin-bottom: 0.5rem;
   line-height: 1;
   text-shadow: var(--shadow-glow);
}

.stat-label {
   color: var(--clr-text-muted);
   font-size: 1.1rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-slider {
   display: flex;
   gap: 2rem;
   overflow-x: auto;
   padding: 2rem 0;
   scroll-snap-type: x mandatory;
   scrollbar-width: none;
   /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
   display: none;
   /* Chrome */
}

.testimonial-card {
   min-width: 400px;
   background: var(--clr-bg-card);
   padding: 3rem 2rem;
   border-radius: 20px;
   border: 1px solid var(--clr-border);
   scroll-snap-align: center;
   position: relative;
}

.quote-icon {
   position: absolute;
   top: 2rem;
   right: 2rem;
   font-size: 4rem;
   color: rgba(56, 189, 248, 0.1);
   line-height: 1;
}

.testimonial-text {
   font-size: 1.1rem;
   font-style: italic;
   margin-bottom: 2rem;
   color: var(--clr-text-main);
   position: relative;
   z-index: 1;
}

.client-info {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.client-avatar {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: var(--clr-primary-glow);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   color: #fff;
   border: 2px solid var(--clr-primary);
}

.client-details h4 {
   margin-bottom: 0.2rem;
}

.client-details span {
   color: var(--clr-text-muted);
   font-size: 0.9rem;
}

/* ==========================================================================
   CONTACT CTA & FORM SECTION
   ========================================================================== */
.contact-section {
   background: url('data:image/svg+xml;utf8,<svg opacity="0.03" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2338bdf8" stroke-width="2"/></svg>') no-repeat center center;
   background-size: cover;
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   background: var(--clr-bg-card);
   padding: 4rem;
   border-radius: 30px;
   border: 1px solid var(--clr-border);
   box-shadow: var(--shadow-card);
}

.contact-info-wrap p {
   color: var(--clr-text-muted);
   margin-bottom: 2rem;
}

.contact-details-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.contact-detail {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.contact-detail .icon {
   width: 50px;
   height: 50px;
   background: rgba(56, 189, 248, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--clr-primary);
   font-size: 1.2rem;
}

.contact-form {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.form-group {
   position: relative;
}

.form-control {
   width: 100%;
   padding: 1rem 1.5rem;
   background: rgba(6, 11, 25, 0.5);
   border: 1px solid var(--clr-border);
   border-radius: 10px;
   color: var(--clr-text-main);
   font-family: inherit;
   font-size: 1rem;
   transition: all var(--transition-fast);
}

.form-control:focus {
   outline: none;
   border-color: var(--clr-primary);
   box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
   background: rgba(6, 11, 25, 0.8);
}

textarea.form-control {
   resize: vertical;
   min-height: 150px;
}

/* ==========================================================================
   FOOTER (IDENTICAL ON ALL PAGES)
   ========================================================================== */
.site-footer {
   background: #030610;
   padding: 5rem 0 2rem;
   border-top: 1px solid var(--clr-border);
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 3rem;
   margin-bottom: 4rem;
}

.footer-about .site-logo {
   margin-bottom: 1.5rem;
}

.footer-about p {
   color: var(--clr-text-muted);
   margin-bottom: 1.5rem;
}

.social-links {
   display: flex;
   gap: 1rem;
}

.social-link {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: var(--clr-bg-card);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--clr-text-main);
   border: 1px solid var(--clr-border);
   transition: all var(--transition-fast);
}

.social-link:hover {
   background: var(--clr-primary);
   color: #fff;
   transform: translateY(-3px);
   box-shadow: var(--shadow-glow);
}

.footer-widget h4 {
   font-size: 1.2rem;
   margin-bottom: 1.5rem;
   color: #fff;
   position: relative;
   padding-bottom: 0.5rem;
}

.footer-widget h4::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 40px;
   height: 2px;
   background: var(--clr-primary);
}

.footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}

.footer-links a {
   color: var(--clr-text-muted);
   transition: all var(--transition-fast);
   display: inline-block;
}

.footer-links a:hover {
   color: var(--clr-primary);
   transform: translateX(5px);
}

.footer-bottom {
   text-align: center;
   padding-top: 2rem;
   border-top: 1px solid var(--clr-border);
   color: var(--clr-text-muted);
   font-size: 0.9rem;
}

/* ==========================================================================
   LEGAL PAGES STYLING
   ========================================================================== */
.page-header {
   padding: 150px 0 80px;
   background: linear-gradient(180deg, var(--clr-bg-alt), var(--clr-bg-main));
   text-align: center;
   border-bottom: 1px solid var(--clr-border);
}

.legal-content-section {
   padding: 6rem 0;
}

.legal-content {
   max-width: 900px;
   margin: 0 auto;
   background: var(--clr-bg-card);
   padding: 4rem;
   border-radius: 20px;
   border: 1px solid var(--clr-border);
   box-shadow: var(--shadow-card);
}

.legal-content h2 {
   color: var(--clr-primary);
   margin-top: 2.5rem;
   margin-bottom: 1rem;
   font-size: 1.8rem;
}

.legal-content h2:first-child {
   margin-top: 0;
}

.legal-content p {
   color: var(--clr-text-muted);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
   line-height: 1.8;
}

.legal-content ul {
   margin-bottom: 1.5rem;
   padding-left: 1.5rem;
}

.legal-content li {
   color: var(--clr-text-muted);
   margin-bottom: 0.5rem;
   list-style-type: disc;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes gradientShift {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

@keyframes rotate3d {
   0% {
      transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
   }

   100% {
      transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
   }
}

.fade-in {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
   opacity: 1;
   transform: translateY(0);
}

.delay-1 {
   transition-delay: 0.1s;
}

.delay-2 {
   transition-delay: 0.2s;
}

.delay-3 {
   transition-delay: 0.3s;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
   .hero-content h1 {
      font-size: 3.5rem;
   }

   .cube-wrapper {
      width: 200px;
      height: 200px;
   }

   .cube-face {
      width: 200px;
      height: 200px;
      transform: translateZ(100px);
   }

   .face-front {
      transform: translateZ(100px);
   }

   .face-back {
      transform: rotateY(180deg) translateZ(100px);
   }

   .face-right {
      transform: rotateY(90deg) translateZ(100px);
   }

   .face-left {
      transform: rotateY(-90deg) translateZ(100px);
   }

   .face-top {
      transform: rotateX(90deg) translateZ(100px);
   }

   .face-bottom {
      transform: rotateX(-90deg) translateZ(100px);
   }

   .stats-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
   }
}

@media (max-width: 768px) {
   .mobile-menu-btn {
      display: block;
   }

   .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: var(--clr-bg-alt);
      flex-direction: column;
      justify-content: center;
      transition: right var(--transition-slow);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
   }

   .main-nav.active {
      right: 0;
   }

   .nav-list {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
   }

   .hero-container,
   .about-grid,
   .contact-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
   }

   .hero {
      text-align: center;
      padding-top: 120px;
   }

   .hero-buttons {
      justify-content: center;
   }

   .hero-visuals {
      height: 350px;
   }

   .about-features {
      grid-template-columns: 1fr;
   }

   .legal-content {
      padding: 2rem;
   }

   .chart-wrapper {
      height: 200px;
   }

   .testimonial-card {
      min-width: 300px;
   }
}

@media (max-width: 480px) {
   .hero-content h1 {
      font-size: 2.5rem;
   }

   .section-title {
      font-size: 2rem;
   }

   .stats-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr;
   }

   .cube-wrapper {
      width: 150px;
      height: 150px;
   }

   .cube-face {
      width: 150px;
      height: 150px;
      font-size: 1rem;
   }

   .face-front {
      transform: translateZ(75px);
   }

   .face-back {
      transform: rotateY(180deg) translateZ(75px);
   }

   .face-right {
      transform: rotateY(90deg) translateZ(75px);
   }

   .face-left {
      transform: rotateY(-90deg) translateZ(75px);
   }

   .face-top {
      transform: rotateX(90deg) translateZ(75px);
   }

   .face-bottom {
      transform: rotateX(-90deg) translateZ(75px);
   }
}