@charset "UTF-8";

/* ==========================================================================
   CSS RESET & THEME VARIABLES
   ========================================================================== */
:root {
   /* Neon Digital Marketing Theme */
   --bg-dark: #0a0a16;
   --bg-panel: rgba(20, 20, 35, 0.6);
   --bg-glass: rgba(255, 255, 255, 0.03);
   --primary-accent: #ff2a5f;
   --secondary-accent: #00f2fe;
   --text-main: #f0f0f5;
   --text-muted: #a0a0b8;

   --gradient-neon: linear-gradient(135deg, #ff2a5f 0%, #00f2fe 100%);
   --glow-shadow: 0 0 20px rgba(255, 42, 95, 0.4);

   --font-heading: 'Montserrat', system-ui, sans-serif;
   --font-body: 'Open Sans', system-ui, sans-serif;

   --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
   --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: var(--font-body);
   background-color: var(--bg-dark);
   background-image:
      radial-gradient(circle at 15% 50%, rgba(255, 42, 95, 0.08), transparent 25%),
      radial-gradient(circle at 85% 30%, rgba(0, 242, 254, 0.08), transparent 25%);
   color: var(--text-main);
   line-height: 1.7;
   overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   font-weight: 800;
   color: #ffffff;
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition-normal);
}

ul {
   list-style: none;
}

.container {
   width: 100%;
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 24px;
}

/* ==========================================================================
   STRICTLY IDENTICAL HEADER (Glassmorphism & High Contrast)
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   background: rgba(10, 10, 22, 0.85);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border-bottom: var(--glass-border);
   transition: background 0.3s ease, padding 0.3s ease;
}

.site-header__inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 90px;
   transition: height 0.3s ease;
}

.site-header.scrolled .site-header__inner {
   height: 70px;
}

.site-header__logo img {
   max-height: 45px;
   width: auto;
   display: block;
   filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
   filter: brightness(0) invert(1);
}

.site-header__nav ul {
   display: flex;
   gap: 40px;
}

.site-header__nav a {
   font-size: 0.95rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   position: relative;
   padding: 8px 0;
}

.site-header__nav a::before {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   width: 4px;
   height: 4px;
   background: var(--secondary-accent);
   border-radius: 50%;
   transform: translateX(-50%) scale(0);
   transition: var(--transition-normal);
}

.site-header__nav a:hover::before {
   transform: translateX(-50%) scale(1);
   box-shadow: 0 0 10px var(--secondary-accent);
}

.site-header__cta {
   background: transparent;
   color: var(--text-main);
   padding: 12px 30px;
   border-radius: 4px;
   border: 2px solid var(--primary-accent);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   position: relative;
   overflow: hidden;
   z-index: 1;
}

.site-header__cta::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--gradient-neon);
   z-index: -1;
   transform: scaleX(0);
   transform-origin: right;
   transition: transform 0.4s ease;
}

.site-header__cta:hover::after {
   transform: scaleX(1);
   transform-origin: left;
}

.site-header__cta:hover {
   border-color: transparent;
   box-shadow: var(--glow-shadow);
}

.menu-toggle {
   display: none;
   background: none;
   border: none;
   color: #fff;
   cursor: pointer;
}

.menu-toggle span {
   display: block;
   width: 30px;
   height: 2px;
   background: var(--text-main);
   margin: 6px 0;
   transition: 0.3s;
}

/* ==========================================================================
   STRICTLY IDENTICAL FOOTER
   ========================================================================== */
.site-footer {
   background: #05050a;
   border-top: var(--glass-border);
   padding: 80px 0 0;
   position: relative;
   overflow: hidden;
}

.site-footer::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 1px;
   background: var(--gradient-neon);
}

.site-footer__grid {
   display: grid;
   grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
   gap: 50px;
   margin-bottom: 60px;
   align-items: start;
}

.site-footer__brand img {
   max-height: 50px;
   margin-bottom: 24px;
   filter: brightness(0) invert(1);
}

.site-footer__brand p {
   color: var(--text-muted);
   font-size: 0.95rem;
   max-width: 300px;
}

/* Company data (address / email / phone with icons) */
.site-footer__contact {
   padding-top: 4px;
}

.site-footer__contact-title {
   font-family: var(--font-heading);
   font-size: 1.15rem;
   font-weight: 700;
   color: #ffffff;
   margin-bottom: 22px;
   letter-spacing: 0.02em;
}

.site-footer__contact-list {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.site-footer__contact-row {
   display: flex;
   align-items: flex-start;
   gap: 14px;
   text-align: left;
}

.site-footer__contact-icon {
   flex-shrink: 0;
   width: 22px;
   height: 22px;
   margin-top: 2px;
   color: rgba(255, 255, 255, 0.75);
}

.site-footer__contact-icon svg {
   display: block;
   width: 100%;
   height: 100%;
}

.site-footer__contact-text {
   color: var(--text-muted);
   font-size: 0.95rem;
   line-height: 1.55;
}

.site-footer__contact-text a {
   color: var(--text-muted);
   transition: var(--transition-normal);
}

.site-footer__contact-text a:hover {
   color: var(--secondary-accent);
}

.site-footer__title {
   font-size: 1.1rem;
   margin-bottom: 24px;
   position: relative;
   display: inline-block;
}

.site-footer__title::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 20px;
   height: 2px;
   background: var(--primary-accent);
}

.site-footer__links li {
   margin-bottom: 12px;
}

.site-footer__links a {
   color: var(--text-muted);
   font-size: 0.95rem;
}

.site-footer__links a:hover {
   color: var(--secondary-accent);
   padding-left: 8px;
}

.site-footer__bottom {
   text-align: center;
   padding: 24px 0;
   border-top: 1px solid rgba(255, 255, 255, 0.05);
   color: var(--text-muted);
   font-size: 0.9rem;
}

/* ==========================================================================
   GLOBAL LAYOUT & TYPOGRAPHY
   ========================================================================== */
.main-wrapper {
   padding-top: 90px;
}

.section {
   padding: 120px 0;
   position: relative;
}

.heading-wrapper {
   text-align: center;
   margin-bottom: 70px;
}

.heading-primary {
   font-size: 3rem;
   margin-bottom: 16px;
   background: var(--gradient-neon);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.heading-subtitle {
   color: var(--text-muted);
   font-size: 1.15rem;
   max-width: 600px;
   margin: 0 auto;
}

/* ==========================================================================
   1. HERO SECTION WITH 3D DATA SPHERE
   ========================================================================== */
.hero-section {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
}

.hero-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   z-index: 2;
}

.hero-content h1 {
   font-size: 4.5rem;
   line-height: 1.1;
   margin-bottom: 24px;
   letter-spacing: -1px;
}

.hero-content h1 span {
   color: var(--secondary-accent);
   text-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.hero-content p {
   font-size: 1.25rem;
   color: var(--text-muted);
   margin-bottom: 40px;
   max-width: 500px;
}

.btn-glow {
   display: inline-block;
   background: var(--gradient-neon);
   color: #fff;
   padding: 16px 40px;
   border-radius: 50px;
   font-weight: bold;
   font-size: 1.1rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   border: none;
   cursor: pointer;
   box-shadow: var(--glow-shadow);
   transition: transform 0.3s, box-shadow 0.3s;
}

.btn-glow:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(255, 42, 95, 0.6);
}

/* 3D Sphere Animation */
.hero-visual {
   perspective: 1000px;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 500px;
}

.sphere-container {
   width: 300px;
   height: 300px;
   position: relative;
   transform-style: preserve-3d;
   animation: rotateSphere 20s infinite linear;
}

.ring {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 2px solid transparent;
   border-top: 2px solid var(--primary-accent);
   border-bottom: 2px solid var(--secondary-accent);
   border-radius: 50%;
   box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.ring:nth-child(1) {
   transform: rotateY(0deg);
}

.ring:nth-child(2) {
   transform: rotateY(45deg);
}

.ring:nth-child(3) {
   transform: rotateY(90deg);
}

.ring:nth-child(4) {
   transform: rotateY(135deg);
}

.ring:nth-child(5) {
   transform: rotateX(90deg);
}

.sphere-core {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 80px;
   height: 80px;
   background: var(--gradient-neon);
   border-radius: 50%;
   transform: translate(-50%, -50%);
   box-shadow: 0 0 50px var(--primary-accent);
   animation: pulseCore 2s infinite alternate ease-in-out;
}

@keyframes rotateSphere {
   0% {
      transform: rotateX(0deg) rotateY(0deg);
   }

   100% {
      transform: rotateX(360deg) rotateY(360deg);
   }
}

@keyframes pulseCore {
   0% {
      transform: translate(-50%, -50%) scale(0.9);
      box-shadow: 0 0 30px var(--primary-accent);
   }

   100% {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 0 80px var(--secondary-accent);
   }
}

/* ==========================================================================
   2. CLIENT MARQUEE (Social Proof)
   ========================================================================== */
.marquee-section {
   background: var(--bg-panel);
   padding: 30px 0;
   border-top: var(--glass-border);
   border-bottom: var(--glass-border);
   overflow: hidden;
   white-space: nowrap;
}

.marquee-content {
   display: inline-block;
   animation: scrollMarquee 30s linear infinite;
}

.marquee-content span {
   display: inline-block;
   font-size: 1.5rem;
   font-weight: 800;
   color: rgba(255, 255, 255, 0.2);
   margin: 0 40px;
   text-transform: uppercase;
}

@keyframes scrollMarquee {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

/* ==========================================================================
   3. ABOUT US
   ========================================================================== */
.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.about-text h2 {
   font-size: 2.5rem;
   margin-bottom: 24px;
}

.about-text p {
   color: var(--text-muted);
   margin-bottom: 20px;
   font-size: 1.1rem;
}

.about-stats {
   display: flex;
   gap: 40px;
   margin-top: 40px;
}

.stat-item h3 {
   font-size: 3rem;
   color: var(--secondary-accent);
   line-height: 1;
   margin-bottom: 8px;
}

.stat-item p {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.about-image {
   background: var(--bg-glass);
   border: var(--glass-border);
   border-radius: 20px;
   height: 400px;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
}

.about-image::after {
   content: 'DATA DRIVEN';
   font-size: 3rem;
   font-weight: 900;
   color: rgba(255, 255, 255, 0.05);
   transform: rotate(-90deg);
   position: absolute;
}

/* ==========================================================================
   4. CORE SERVICES (Glass Cards)
   ========================================================================== */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.srv-card {
   background: var(--bg-panel);
   border: var(--glass-border);
   border-radius: 16px;
   padding: 40px 30px;
   transition: var(--transition-normal);
   position: relative;
   overflow: hidden;
   z-index: 1;
}

.srv-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--gradient-neon);
   opacity: 0;
   z-index: -1;
   transition: var(--transition-normal);
}

.srv-card:hover {
   transform: translateY(-10px);
}

.srv-card:hover::before {
   opacity: 0.05;
}

.srv-icon {
   width: 70px;
   height: 70px;
   background: rgba(255, 42, 95, 0.1);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 24px;
   border: 1px solid rgba(255, 42, 95, 0.3);
}

.srv-card h3 {
   font-size: 1.4rem;
   margin-bottom: 16px;
}

.srv-card p {
   color: var(--text-muted);
   font-size: 0.95rem;
}

/* ==========================================================================
   5. CAMPAIGN REPORTS (Animated CSS Funnels)
   ========================================================================== */
.reports-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
}

.report-panel {
   background: var(--bg-panel);
   border: var(--glass-border);
   border-radius: 16px;
   padding: 40px;
}

.report-panel h3 {
   margin-bottom: 30px;
   font-size: 1.5rem;
}

.funnel-row {
   margin-bottom: 20px;
}

.funnel-label {
   display: flex;
   justify-content: space-between;
   margin-bottom: 8px;
   font-size: 0.9rem;
   font-weight: 600;
}

.funnel-bar-bg {
   width: 100%;
   height: 12px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 6px;
   overflow: hidden;
}

.funnel-bar-fill {
   height: 100%;
   background: var(--gradient-neon);
   width: 0;
   /* Animated via JS */
   border-radius: 6px;
   transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   6. INDUSTRY SOLUTIONS
   ========================================================================== */
.industry-wrapper {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
}

.ind-pill {
   padding: 15px 30px;
   background: var(--bg-glass);
   border: var(--glass-border);
   border-radius: 50px;
   font-weight: 700;
   letter-spacing: 1px;
   cursor: pointer;
   transition: var(--transition-normal);
}

.ind-pill:hover {
   background: rgba(0, 242, 254, 0.1);
   border-color: var(--secondary-accent);
   color: var(--secondary-accent);
}

/* ==========================================================================
   7. THE PROCESS (Timeline)
   ========================================================================== */
.timeline {
   position: relative;
   max-width: 800px;
   margin: 0 auto;
}

.timeline::before {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   width: 2px;
   height: 100%;
   background: rgba(255, 255, 255, 0.1);
   transform: translateX(-50%);
}

.timeline-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 50px;
   position: relative;
}

.timeline-item:nth-child(even) {
   flex-direction: row-reverse;
}

.timeline-dot {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   width: 20px;
   height: 20px;
   background: var(--primary-accent);
   border-radius: 50%;
   box-shadow: 0 0 15px var(--primary-accent);
}

.timeline-content {
   width: 45%;
   background: var(--bg-panel);
   padding: 30px;
   border-radius: 16px;
   border: var(--glass-border);
}

.timeline-content h3 {
   color: var(--secondary-accent);
   margin-bottom: 10px;
}

/* ==========================================================================
   8. ROI CALCULATOR
   ========================================================================== */
.calc-container {
   background: var(--bg-panel);
   border: var(--glass-border);
   border-radius: 20px;
   padding: 60px;
   max-width: 900px;
   margin: 0 auto;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.calc-grid {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 50px;
   align-items: center;
}

.calc-sliders .slider-group {
   margin-bottom: 30px;
}

.calc-sliders label {
   display: flex;
   justify-content: space-between;
   margin-bottom: 12px;
   font-weight: 600;
   color: var(--text-muted);
}

.calc-sliders input[type="range"] {
   width: 100%;
   -webkit-appearance: none;
   background: transparent;
}

.calc-sliders input[type="range"]::-webkit-slider-runnable-track {
   width: 100%;
   height: 6px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 3px;
}

.calc-sliders input[type="range"]::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 24px;
   height: 24px;
   background: var(--secondary-accent);
   border-radius: 50%;
   margin-top: -9px;
   cursor: pointer;
   box-shadow: 0 0 10px var(--secondary-accent);
}

.calc-output {
   text-align: center;
   padding: 40px;
   background: rgba(0, 0, 0, 0.3);
   border-radius: 16px;
   border: 1px solid rgba(0, 242, 254, 0.2);
}

.calc-output p {
   color: var(--text-muted);
   margin-bottom: 10px;
}

.calc-output h2 {
   font-size: 3rem;
   color: var(--secondary-accent);
   margin-bottom: 20px;
}

/* ==========================================================================
   9. TESTIMONIALS (Masonry/Grid)
   ========================================================================== */
.test-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

.test-card {
   background: var(--bg-glass);
   padding: 40px 30px;
   border-radius: 16px;
   border: var(--glass-border);
   position: relative;
}

.test-card::before {
   content: '"';
   font-family: serif;
   font-size: 5rem;
   color: rgba(255, 42, 95, 0.2);
   position: absolute;
   top: -10px;
   left: 20px;
}

.test-card p {
   font-style: italic;
   margin-bottom: 20px;
   position: relative;
   z-index: 2;
}

.test-author {
   font-weight: bold;
   color: var(--secondary-accent);
}

/* ==========================================================================
   10. CTA BANNER
   ========================================================================== */
.cta-banner {
   background: linear-gradient(rgba(10, 10, 22, 0.8), rgba(10, 10, 22, 0.8)), url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="%23ffffff" fill-opacity="0.1"/></svg>');
   padding: 100px 20px;
   text-align: center;
   border-radius: 20px;
   border: var(--glass-border);
   margin-bottom: 80px;
   position: relative;
}

/* ==========================================================================
   11. CONTACT / LEGAL PAGES
   ========================================================================== */
.contact-layout {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
}

.contact-form {
   background: var(--bg-panel);
   padding: 50px;
   border-radius: 16px;
   border: var(--glass-border);
}

.form-group {
   margin-bottom: 24px;
}

.form-group label {
   display: block;
   margin-bottom: 8px;
   color: var(--text-muted);
}

.form-control {
   width: 100%;
   padding: 16px;
   background: rgba(0, 0, 0, 0.2);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 8px;
   color: #fff;
   font-family: var(--font-body);
   transition: border 0.3s;
}

.form-control:focus {
   outline: none;
   border-color: var(--primary-accent);
}

textarea.form-control {
   height: 150px;
   resize: none;
}

.legal-box {
   background: var(--bg-panel);
   padding: 60px;
   border-radius: 16px;
   border: var(--glass-border);
}

.legal-box h1 {
   color: var(--secondary-accent);
   margin-bottom: 20px;
}

.legal-box h2 {
   margin-top: 40px;
   margin-bottom: 15px;
   font-size: 1.4rem;
   color: var(--primary-accent);
}

.legal-box p {
   margin-bottom: 16px;
   color: var(--text-muted);
   text-align: justify;
}

/* ==========================================================================
   12. LIVE CHAT PANEL
   ========================================================================== */
.chat-container {
   position: fixed;
   bottom: 30px;
   right: 30px;
   z-index: 9999;
}

.chat-toggle {
   width: 65px;
   height: 65px;
   background: var(--gradient-neon);
   border-radius: 50%;
   border: none;
   cursor: pointer;
   box-shadow: var(--glow-shadow);
   display: flex;
   justify-content: center;
   align-items: center;
}

.chat-toggle svg {
   width: 30px;
   height: 30px;
   fill: #fff;
}

.chat-panel {
   position: absolute;
   bottom: 85px;
   right: 0;
   width: 320px;
   background: #10101c;
   border: var(--glass-border);
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px) scale(0.95);
   transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
   transform-origin: bottom right;
}

.chat-panel.open {
   opacity: 1;
   visibility: visible;
   transform: translateY(0) scale(1);
}

.chat-header {
   background: var(--gradient-neon);
   padding: 20px;
   font-weight: bold;
}

.chat-messages {
   height: 280px;
   padding: 20px;
   overflow-y: auto;
   background: rgba(0, 0, 0, 0.3);
}

.chat-msg {
   background: var(--bg-panel);
   padding: 12px;
   border-radius: 12px 12px 12px 0;
   margin-bottom: 15px;
   font-size: 0.9rem;
   width: 85%;
}

.chat-input-area {
   display: flex;
   padding: 15px;
   border-top: var(--glass-border);
}

.chat-input-area input {
   flex: 1;
   padding: 10px;
   background: transparent;
   border: none;
   color: #fff;
   outline: none;
}

.chat-input-area button {
   background: none;
   border: none;
   color: var(--secondary-accent);
   font-weight: bold;
   cursor: pointer;
}

/* ==========================================================================
   SCROLL ANIMATION UTILITIES
   ========================================================================== */
.reveal-up {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
   opacity: 1;
   transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {

   .hero-grid,
   .about-grid,
   .reports-grid,
   .calc-grid,
   .contact-layout {
      grid-template-columns: 1fr;
   }

   .test-grid {
      grid-template-columns: 1fr 1fr;
   }

   .timeline::before {
      left: 30px;
   }

   .timeline-dot {
      left: 30px;
   }

   .timeline-content {
      width: calc(100% - 80px);
      margin-left: auto;
   }

   .timeline-item:nth-child(even) {
      flex-direction: row;
   }
}

@media (max-width: 768px) {
   .site-header__nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #0a0a16;
      flex-direction: column;
      padding: 20px 0;
      border-bottom: var(--glass-border);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
      transition: clip-path 0.4s ease;
   }

   .site-header__nav.menu-open {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }

   .site-header__nav ul {
      flex-direction: column;
      align-items: center;
      gap: 20px;
   }

   .menu-toggle {
      display: block;
   }

   .site-header__cta {
      display: none;
   }

   .hero-content h1 {
      font-size: 3rem;
   }

   .site-footer__grid {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .site-footer__brand p {
      max-width: none;
      margin-left: auto;
      margin-right: auto;
   }

   .site-footer__contact {
      max-width: 320px;
      margin-left: auto;
      margin-right: auto;
   }

   .site-footer__contact-title {
      text-align: center;
   }

   .site-footer__contact-row {
      justify-content: flex-start;
   }

   .test-grid {
      grid-template-columns: 1fr;
   }

   .site-footer__title::after {
      left: 50%;
      transform: translateX(-50%);
   }
}