@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
   --bg-color: #000000;
   --text-primary: #FFFFFF;
   --text-secondary: #888888;
   --grid-line: #222222;
   --accent-1: #FF007F;
   /* Fluorescent Pink */
   --accent-2: #E5FF00;
   /* Acid Yellow */
   --font-heading: 'Space Grotesk', sans-serif;
   --font-body: 'Inter', sans-serif;
   --header-height: 90px;
   --cursor-size: 16px;
   --section-pad: 140px 0;
}

/* ================= RESET & BASE ================= */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   font-size: 16px;
   scroll-behavior: auto;
   background: var(--bg-color);
}

body {
   font-family: var(--font-body);
   color: var(--text-primary);
   background-color: var(--bg-color);
   overflow-x: hidden;
   line-height: 1.5;
   cursor: none;
   -webkit-font-smoothing: antialiased;
}

a,
button,
input,
textarea {
   text-decoration: none;
   color: inherit;
   cursor: none;
   font-family: inherit;
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   font-weight: 700;
   text-transform: uppercase;
   line-height: 1.1;
}

.container {
   max-width: 1600px;
   margin: 0 auto;
   padding: 0 4vw;
}

/* Grid Overlay (Aesthetic) */
.grid-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   pointer-events: none;
   z-index: 0;
   display: flex;
   justify-content: space-between;
   padding: 0 4vw;
}

.grid-overlay-line {
   width: 1px;
   height: 100%;
   background: var(--grid-line);
   opacity: 0.5;
}

/* ================= CUSTOM CURSOR ================= */
.cursor {
   position: fixed;
   top: 0;
   left: 0;
   width: var(--cursor-size);
   height: var(--cursor-size);
   background: var(--text-primary);
   border-radius: 50%;
   pointer-events: none;
   z-index: 9999;
   transform: translate(-50%, -50%);
   mix-blend-mode: difference;
   transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s;
}

.cursor.hover {
   width: 80px;
   height: 80px;
   background: var(--accent-2);
   mix-blend-mode: exclusion;
}

/* ================= STRICT HEADER ================= */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--header-height);
   background: rgba(0, 0, 0, 0.85);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--grid-line);
   z-index: 2000;
   display: flex;
   align-items: center;
   transition: transform 0.4s ease;
}

.site-header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   height: 100%;
}

.header-logo {
   height: 100%;
   display: flex;
   align-items: center;
   border-right: 1px solid var(--grid-line);
   padding-right: 40px;
}

.header-logo img {
   height: 90px;
   filter: invert(1);
   object-fit: contain;
   position: relative;
   z-index: 2001;
}

.nav-links {
   display: flex;
   height: 100%;
}

.nav-links li {
   border-right: 1px solid var(--grid-line);
}

.nav-links a {
   font-size: 0.9rem;
   font-family: var(--font-heading);
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--text-primary);
   display: flex;
   align-items: center;
   height: 100%;
   padding: 0 30px;
   position: relative;
   overflow: hidden;
   transition: color 0.3s;
}

.nav-links a::before {
   content: '';
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--accent-1);
   transition: top 0.3s cubic-bezier(0.25, 1, 0.5, 1);
   z-index: -1;
}

.nav-links a:hover {
   color: var(--bg-color);
}

.nav-links a:hover::before {
   top: 0;
}

.header-cta {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100%;
   padding: 0 40px;
   background: var(--accent-2);
   color: var(--bg-color);
   font-family: var(--font-heading);
   font-weight: 600;
   text-transform: uppercase;
   transition: background 0.3s, color 0.3s;
   border-left: 1px solid var(--grid-line);
}

.header-cta:hover {
   background: var(--text-primary);
   color: var(--bg-color);
}

.desktop-cta {
   display: flex;
}

/* ================= HAMBURGER & MOBILE MENU ================= */
.hamburger {
   display: none;
   flex-direction: column;
   justify-content: center;
   gap: 8px;
   width: 60px;
   height: 100%;
   background: transparent;
   border: none;
   border-left: 1px solid var(--grid-line);
   z-index: 2001;
   position: relative;
   padding: 0 20px;
}

.hamburger span {
   display: block;
   width: 100%;
   height: 2px;
   background: var(--text-primary);
   transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s;
   transform-origin: center;
}

.hamburger.active span:nth-child(1) {
   transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
   opacity: 0;
}

.hamburger.active span:nth-child(3) {
   transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background: var(--bg-color);
   z-index: 2000;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-nav-links {
   display: flex;
   flex-direction: column;
   text-align: center;
   width: 100%;
}

.mobile-nav-links li {
   overflow: hidden;
   border-bottom: 1px solid var(--grid-line);
}

.mobile-nav-links li:first-child {
   border-top: 1px solid var(--grid-line);
}

.mobile-nav-links a {
   display: block;
   font-size: 3rem;
   font-family: var(--font-heading);
   color: var(--text-primary);
   padding: 20px 0;
   transform: translateY(100%);
   transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), color 0.3s;
}

.mobile-menu.active .mobile-nav-links a {
   transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) a {
   transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(2) a {
   transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(3) a {
   transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(4) a {
   transition-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(5) a {
   transition-delay: 0.5s;
}

.mobile-nav-links a:hover {
   color: var(--accent-1);
   background: rgba(255, 255, 255, 0.05);
}

.mobile-cta {
   font-size: 1.5rem;
   background: var(--accent-2);
   color: var(--bg-color);
   width: 100%;
   text-align: center;
   padding: 25px 0;
   font-family: var(--font-heading);
   text-transform: uppercase;
   opacity: 0;
   transition: opacity 0.5s 0.6s;
}

.mobile-menu.active .mobile-cta {
   opacity: 1;
}

@media (max-width: 1024px) {

   .nav-links,
   .desktop-cta {
      display: none;
   }

   .hamburger {
      display: flex;
   }

   .header-logo {
      border-right: none;
   }
}

/* ================= HERO SECTION ================= */
.hero {
   height: 100vh;
   padding-top: var(--header-height);
   position: relative;
   display: flex;
   align-items: flex-end;
   padding-bottom: 50px;
   border-bottom: 1px solid var(--grid-line);
}

.hero-content {
   width: 100%;
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 40px;
   align-items: flex-end;
}

.hero-title-wrapper {
   overflow: hidden;
}

.hero-title {
   font-size: clamp(4rem, 9vw, 9rem);
   line-height: 0.9;
   letter-spacing: -2px;
   transform: translateY(100%);
   animation: textReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.2s;
}

.hero-title span {
   color: transparent;
   -webkit-text-stroke: 1px var(--text-primary);
}

.hero-title i {
   font-style: normal;
   color: var(--accent-1);
}

.hero-side {
   display: flex;
   flex-direction: column;
   gap: 30px;
   opacity: 0;
   animation: fadeUp 1s ease forwards 0.8s;
}

.hero-desc {
   font-size: 1.2rem;
   color: var(--text-secondary);
}

.circle-btn {
   width: 150px;
   height: 150px;
   border-radius: 50%;
   border: 1px solid var(--grid-line);
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   font-family: var(--font-heading);
   font-size: 0.9rem;
   letter-spacing: 2px;
   position: relative;
   overflow: hidden;
   transition: color 0.4s;
}

.circle-btn::before {
   content: '';
   position: absolute;
   bottom: -100%;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--accent-2);
   border-radius: 50%;
   transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
   z-index: -1;
}

.circle-btn:hover {
   color: var(--bg-color);
   border-color: var(--accent-2);
}

.circle-btn:hover::before {
   bottom: 0;
   border-radius: 0;
}

@keyframes textReveal {
   to {
      transform: translateY(0);
   }
}

@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* ================= MARQUEE / TICKER ================= */
.marquee-section {
   padding: 40px 0;
   border-bottom: 1px solid var(--grid-line);
   overflow: hidden;
   display: flex;
}

.marquee-track {
   display: flex;
   white-space: nowrap;
   animation: scrollMarquee 20s linear infinite;
}

.marquee-text {
   font-family: var(--font-heading);
   font-size: 2.5rem;
   text-transform: uppercase;
   padding: 0 40px;
   display: flex;
   align-items: center;
   gap: 40px;
}

.marquee-text span {
   color: var(--accent-2);
}

@keyframes scrollMarquee {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

/* ================= SERVICES (Accordion Image Reveal) ================= */
.services {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--grid-line);
   position: relative;
}

.section-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   margin-bottom: 80px;
   padding-bottom: 20px;
   border-bottom: 1px solid var(--grid-line);
}

.section-title {
   font-size: clamp(3rem, 5vw, 5rem);
   letter-spacing: -1px;
}

.section-sub {
   font-family: var(--font-body);
   color: var(--text-secondary);
   max-width: 300px;
   text-align: right;
}

.service-list {
   display: flex;
   flex-direction: column;
   border-top: 1px solid var(--grid-line);
   position: relative;
}

.service-item {
   display: grid;
   grid-template-columns: 80px 1fr 1fr;
   padding: 50px 0;
   border-bottom: 1px solid var(--grid-line);
   position: relative;
   transition: padding 0.3s;
}

.service-item:hover {
   padding: 60px 0;
   background: rgba(255, 255, 255, 0.02);
}

.service-num {
   font-family: var(--font-heading);
   font-size: 1.5rem;
   color: var(--text-secondary);
}

.service-item h3 {
   font-size: 3rem;
   color: var(--text-primary);
   transition: color 0.3s, transform 0.3s;
}

.service-item:hover h3 {
   color: var(--accent-1);
   transform: translateX(20px);
}

.service-desc {
   color: var(--text-secondary);
   opacity: 0;
   transform: translateX(-20px);
   transition: all 0.3s;
   font-size: 1.1rem;
}

.service-item:hover .service-desc {
   opacity: 1;
   transform: translateX(0);
}

.service-img {
   position: absolute;
   top: 50%;
   right: 5%;
   transform: translateY(-50%) scale(0.8) rotate(-10deg);
   width: 350px;
   height: 250px;
   background-size: cover;
   background-position: center;
   opacity: 0;
   pointer-events: none;
   z-index: 10;
   transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
   filter: grayscale(100%);
   border: 1px solid var(--grid-line);
}

.service-item:hover .service-img {
   opacity: 1;
   transform: translateY(-50%) scale(1) rotate(0deg);
   filter: grayscale(0%);
}

/* ================= INDUSTRIES (Horizontal Layout) ================= */
.industries {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--grid-line);
   overflow: hidden;
   background: #050505;
}

.industry-wrapper {
   display: flex;
   gap: 40px;
   overflow-x: auto;
   padding-bottom: 60px;
   scrollbar-width: none;
   cursor: grab;
}

.industry-wrapper::-webkit-scrollbar {
   display: none;
}

.ind-card {
   min-width: 450px;
   border: 1px solid var(--grid-line);
   padding: 50px;
   background: var(--bg-color);
   position: relative;
   transition: border-color 0.3s;
}

.ind-card:hover {
   border-color: var(--accent-2);
}

.ind-card h3 {
   font-size: 3rem;
   color: transparent;
   -webkit-text-stroke: 1px var(--text-primary);
   margin-bottom: 20px;
   transition: color 0.3s;
}

.ind-card:hover h3 {
   color: var(--text-primary);
   -webkit-text-stroke: 0;
}

.ind-card p {
   color: var(--text-secondary);
   font-size: 1.1rem;
}

/* ================= CALCULATOR (Grid Sliders) ================= */
.calculator {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--grid-line);
}

.calc-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   border: 1px solid var(--grid-line);
}

.calc-controls {
   padding: 80px;
   border-right: 1px solid var(--grid-line);
}

.calc-controls h2 {
   font-size: 3rem;
   margin-bottom: 50px;
}

.range-group {
   margin-bottom: 50px;
}

.range-header {
   display: flex;
   justify-content: space-between;
   margin-bottom: 20px;
   font-family: var(--font-heading);
   font-size: 1.2rem;
}

.range-header span:last-child {
   color: var(--accent-1);
}

input[type="range"] {
   -webkit-appearance: none;
   width: 100%;
   height: 2px;
   background: var(--grid-line);
   outline: none;
}

input[type="range"]::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 20px;
   height: 20px;
   background: var(--accent-1);
   border-radius: 0;
   cursor: none;
   transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
   transform: scale(1.5) rotate(45deg);
}

.calc-display {
   padding: 80px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   background: #050505;
}

.calc-display p {
   font-family: var(--font-heading);
   letter-spacing: 2px;
   color: var(--text-secondary);
   margin-bottom: 20px;
}

.calc-val {
   font-size: 6rem;
   font-family: var(--font-heading);
   font-weight: 700;
   color: var(--accent-2);
   line-height: 1;
}

/* ================= REPORTS (CSS Graph Visualization) ================= */
.reports {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--grid-line);
}

.graph-container {
   height: 400px;
   border-left: 1px solid var(--grid-line);
   border-bottom: 1px solid var(--grid-line);
   display: flex;
   align-items: flex-end;
   padding: 0 20px;
   gap: 20px;
   margin-top: 60px;
}

.graph-bar {
   flex: 1;
   background: var(--grid-line);
   position: relative;
   transition: height 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.graph-bar::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: var(--accent-1);
}

.graph-bar::after {
   content: attr(data-label);
   position: absolute;
   bottom: -40px;
   left: 50%;
   transform: translateX(-50%);
   font-family: var(--font-heading);
   font-size: 1.1rem;
}

.graph-bar:nth-child(4) {
   background: rgba(255, 0, 127, 0.2);
}

.graph-bar:nth-child(4)::before {
   background: var(--accent-2);
}

/* ================= TESTIMONIALS (Massive Quotes) ================= */
.testimonials {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--grid-line);
   background: var(--accent-2);
   color: var(--bg-color);
}

.testi-header .section-title {
   color: var(--bg-color);
   border-bottom-color: var(--bg-color);
}

.testi-header .section-sub {
   color: #333;
}

.testi-slider {
   display: flex;
   overflow-x: auto;
   scrollbar-width: none;
   gap: 100px;
   padding: 40px 0;
}

.testi-slider::-webkit-scrollbar {
   display: none;
}

.testi-card {
   min-width: 800px;
}

.testi-card h4 {
   font-size: 4rem;
   text-transform: none;
   line-height: 1.2;
   margin-bottom: 40px;
   letter-spacing: -1px;
}

.testi-author {
   display: flex;
   align-items: center;
   gap: 20px;
   border-top: 1px solid #333;
   padding-top: 20px;
   font-family: var(--font-heading);
}

/* ================= LIVE CHAT ================= */
.chat-widget {
   position: fixed;
   bottom: 40px;
   right: 40px;
   z-index: 1000;
}

.chat-btn {
   width: 70px;
   height: 70px;
   background: var(--accent-1);
   border-radius: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   color: var(--bg-color);
   font-family: var(--font-heading);
   font-size: 1.2rem;
   cursor: none;
   border: none;
   transition: transform 0.3s;
}

.chat-btn:hover {
   transform: scale(1.1) rotate(5deg);
}

.chat-box {
   position: absolute;
   bottom: 90px;
   right: 0;
   width: 350px;
   background: var(--bg-color);
   border: 1px solid var(--grid-line);
   clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
   transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.chat-box.active {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.chat-header {
   padding: 20px;
   border-bottom: 1px solid var(--grid-line);
   font-family: var(--font-heading);
   font-size: 1.2rem;
   background: var(--accent-1);
   color: var(--bg-color);
}

.chat-body {
   height: 250px;
   padding: 20px;
   overflow-y: auto;
   display: flex;
   flex-direction: column;
   gap: 15px;
   color: var(--text-secondary);
}

.chat-msg {
   background: #111;
   padding: 15px;
   border-left: 3px solid var(--accent-2);
}

.chat-input {
   display: flex;
   border-top: 1px solid var(--grid-line);
}

.chat-input input {
   flex: 1;
   background: transparent;
   border: none;
   padding: 20px;
   color: white;
   outline: none;
   font-family: var(--font-body);
   cursor: none;
}

.chat-input button {
   background: var(--accent-2);
   border: none;
   padding: 0 20px;
   font-family: var(--font-heading);
   color: var(--bg-color);
   cursor: none;
}

/* ================= STRICT FOOTER ================= */
.site-footer {
   background: var(--bg-color);
   padding: 100px 0 0;
   position: relative;
}

.footer-big {
   font-size: clamp(5rem, 15vw, 20rem);
   font-family: var(--font-heading);
   line-height: 0.8;
   text-align: center;
   color: transparent;
   -webkit-text-stroke: 1px var(--grid-line);
   margin-bottom: 50px;
   pointer-events: none;
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr;
   gap: 40px;
   padding-bottom: 80px;
   border-bottom: 1px solid var(--grid-line);
}

.footer-logo {
   max-width: 150px;
   margin-bottom: 20px;
   filter: invert(1);
}

.footer-col h3 {
   font-size: 1.2rem;
   color: var(--text-secondary);
   margin-bottom: 30px;
   letter-spacing: 1px;
}

.footer-links li {
   margin-bottom: 15px;
}

.footer-links a {
   font-size: 1.1rem;
   transition: color 0.3s;
   position: relative;
}

.footer-links a:hover {
   color: var(--accent-1);
}

.footer-bottom {
   padding: 40px 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: var(--text-secondary);
   font-size: 0.9rem;
   flex-wrap: wrap;
   gap: 20px;
}

.footer-legal-links {
   display: flex;
   gap: 30px;
}

/* ================= LEGAL / CONTACT PAGES ================= */
.page-hero {
   padding: 250px 0 100px;
   border-bottom: 1px solid var(--grid-line);
}

.page-title {
   font-size: clamp(4rem, 8vw, 7rem);
   letter-spacing: -2px;
}

.page-title span {
   color: var(--accent-1);
}

.legal-content {
   max-width: 900px;
   margin: 0 auto;
   padding: 100px 0;
}

.legal-content h2 {
   font-size: 2.5rem;
   margin: 60px 0 20px;
   color: var(--text-primary);
}

.legal-content p {
   font-size: 1.2rem;
   color: var(--text-secondary);
   margin-bottom: 25px;
   line-height: 1.8;
}

.contact-layout {
   padding: var(--section-pad);
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 60px;
}

.contact-info {
   border: 1px solid var(--grid-line);
   padding: 60px;
   background: #050505;
}

.contact-info h3 {
   font-size: 3rem;
   margin-bottom: 30px;
   color: var(--accent-2);
}

.contact-info p {
   font-size: 1.2rem;
   color: var(--text-secondary);
   margin-bottom: 40px;
}

.contact-form {
   padding: 60px;
   border: 1px solid var(--grid-line);
}

.form-group {
   margin-bottom: 40px;
}

.form-group input,
.form-group textarea {
   width: 100%;
   background: transparent;
   border: none;
   border-bottom: 1px solid var(--grid-line);
   padding: 20px 0;
   color: white;
   font-size: 1.2rem;
   outline: none;
   transition: border-color 0.3s;
   resize: none;
   cursor: none;
   font-family: var(--font-heading);
}

.form-group input:focus,
.form-group textarea:focus {
   border-bottom-color: var(--accent-1);
}

.submit-btn {
   width: 100%;
   padding: 25px;
   background: var(--text-primary);
   color: var(--bg-color);
   border: none;
   font-family: var(--font-heading);
   font-size: 1.5rem;
   text-transform: uppercase;
   cursor: none;
   transition: background 0.3s, color 0.3s;
}

.submit-btn:hover {
   background: var(--accent-1);
   color: white;
}

/* ================= ANIMATIONS & UTILS ================= */
.clip-reveal {
   clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   transform: translateY(30px);
   transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.clip-reveal.active {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   transform: translateY(0);
}

/* Mobile Adaptations */
@media (max-width: 1024px) {

   .hero-content,
   .calc-container,
   .contact-layout,
   .footer-grid {
      grid-template-columns: 1fr;
   }

   .hero-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
   }

   .service-item {
      grid-template-columns: 50px 1fr;
      gap: 20px;
   }

   .service-img {
      display: none;
   }

   .calc-controls,
   .calc-display,
   .contact-info,
   .contact-form {
      padding: 40px 20px;
   }

   .calc-controls {
      border-right: none;
      border-bottom: 1px solid var(--grid-line);
   }

   .testi-card {
      min-width: 90vw;
   }

   .testi-card h4 {
      font-size: 2.5rem;
   }

   .footer-big {
      display: none;
   }
}