:root {
  --bg: #0a0a0a;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --cream: #f7f2e8;
  --muted: #a8a299;
  --text: #f8f6ef;
  --accent: #dfff3f;
  --accent-2: #f5ff9e;
  --border: rgba(255,255,255,.12);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}


.cursor {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}

/* Gmail Left Side */

.floating-mail{
  position:fixed;
  left:30px;
  bottom:40px;
  width:65px;
  height:65px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#111;
  color:#D9FF3F;
  font-size:24px;
  z-index:9999;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(20px);
  box-shadow:0 10px 40px rgba(217,255,63,.2);
  transition:.4s;
}


.floating-mail:hover{
  transform:translateY(-8px) scale(1.08);
  background:#D9FF3F;
  color:#000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  gap: 10px;
  align-items: center;
}
.logo img{
  width: 200px;
}
.logo span {
  color: #0a0a0a;
  background: var(--accent);
  padding: 2px 9px;
  border-radius: 12px;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.header-btn, .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #0a0a0a;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.12);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 28px;
}


.hero {
  min-height: 100vh;
  padding: 150px 6vw 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at top, #000, transparent 70%);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: -.05em;
}

h1 {
  font-size: clamp(54px, 6vw, 112px);
  line-height: .9;
  max-width: 930px;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
  max-width: 610px;
  margin: 28px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.circle-link {
  border: 1px solid var(--border);
  padding: 15px 24px;
  border-radius: 999px;
  color: var(--cream);
}


.hero-visual {
  height: 620px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-device {
  width: min(440px, 88vw);
  height: 560px;
  border-radius: 42px;
  padding: 34px;
  background: linear-gradient(145deg, #202020, #0d0d0d);
  border: 1px solid var(--border);
  box-shadow: 0 40px 130px rgba(223,255,63,.12);
  transform: rotate(5deg);
}

.device-top {
  width: 90px;
  height: 90px;
  border-radius: 26px;
  background: var(--accent);
  margin-bottom: 55px;
}

.device-line {
  height: 18px;
  border-radius: 99px;
  background: var(--cream);
  margin: 18px 0;
  opacity: .95;
}

.w80 {
  width: 80%;
}
 .w55 {
  width: 55%;
}

.device-block {
  height: 170px;
  border-radius: 30px;
  margin: 42px 0;
  background: radial-gradient(circle at 30% 20%, var(--accent), #232700 55%, #111);
  border: 1px solid var(--border);
}

.device-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.device-row span {
  height: 70px;
  border-radius: 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.hero-card {
  position: absolute;
  right: 4%;
  bottom: 90px;
  width: 220px;
  padding: 24px;
  border-radius: 28px;
  z-index: 2;
}

.glass {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.hero-card strong {
  display: block;
  font-size: 44px;
  font-family: var(--font-heading);
  color: var(--accent);
}

.hero-card p, .mini-label {
  color: var(--muted);
  font-size: 13px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: float 6s ease-in-out infinite;
}

.orb-one {
  width: 140px;
  height: 140px;
  background: var(--accent);
  left: 7%;
  top: 18%;
}

.orb-two {
  width: 70px;
  height: 70px;
  border: 1px solid var(--accent);
  right: 8%;
  top: 10%;
  animation-delay: -2s;
}


.service-pills {
  padding: 20px 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--cream);
  color: #0a0a0a;
}

.pill-track, .marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.pill-track span {
  padding: 12px 24px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  font-weight: 900;
}


.section {
  padding: 120px 6vw;
}

.section-head {
  display: grid;
  grid-template-columns: .8fr 1.2fr .8fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 50px;
}

.section-head h2, .work-copy h2, .cta-section h2 {
  font-size: clamp(40px, 5vw, 78px);
  line-height: .95;
}

.section-head p:not(.eyebrow), .work-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 310px;
  padding: 30px;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: .35s;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(223,255,63,.7);
}

.service-card span {
  color: var(--accent);
  font-size: 48px;
  font-family: var(--font-heading);
  opacity: .7;
}

.service-card h3 {
  font-size: 25px;
  margin: 60px 0 16px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}


.marquee-wrap {
  overflow: hidden;
  padding: 42px 0;
  background: var(--accent);
  color: #0a0a0a;
  transform: rotate(-1.5deg) scale(1.04);
}

.marquee span {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  white-space: nowrap;
}


.work {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.project {
  min-height: 310px;
  border-radius: 34px;
  padding: 28px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f7f2e8, #1b1b1b);
  color: #fff;
  transition: .4s;
  position: relative;
}

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, var(--accent), #1c1a1a 35%);
  opacity: .7;
  transition: .4s;
}

.project:hover::before {
  transform: scale(1.25);
}

.project-large {
  grid-row: span 2;
  min-height: 650px;
  background: linear-gradient(135deg, #efe5d4, #141414);
}

.project div {
  position: relative;
  z-index: 1;
}

.project span {
  font-size: 13px;
  font-weight: 900;
}

.project h3 {
  font-size: 38px;
  max-width: 260px;
}


.results {
  padding: 90px 6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-block: 1px solid var(--border);
}

.result-item strong {
  font-family: var(--font-heading);
  font-size: clamp(70px, 8vw, 132px);
  line-height: .85;
  color: var(--accent);
}

.result-item span {
  display: block;
  color: var(--muted);
  margin-top: 14px;
  font-weight: 700;
}


.cta-section {
  margin: 120px 6vw;
  padding: 70px;
  border-radius: 42px;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-section .eyebrow {
  color: #0a0a0a;
}

.dark {
  background: #0a0a0a;
  color: var(--cream);
}


.footer {
  position: relative;
  padding: 90px 6vw 34px;
  background: #050505;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .18;
}

.footer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(120px);
  opacity: .13;
  right: -120px;
  top: -140px;
}

.footer > *:not(.footer-glow) {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 60px;
}

.footer-top h2 {
  font-size: clamp(60px, 12vw, 150px);
  line-height: .8;
  color: var(--accent);
}

.footer-top p {
  color: var(--muted);
  max-width: 440px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  padding: 58px 0;
  border-bottom: 1px solid var(--border);
}

.footer-links h4 {
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: var(--muted);
  margin: 12px 0;
  transition: .25s;
}

.footer-links a:hover {
  color: var(--cream);
  transform: translateX(8px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  padding-top: 30px;
}


.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .18s;
}


@keyframes marquee {
  from {
  transform: translateX(0);
}
 to {
  transform: translateX(-50%);
}

}

@keyframes float {
  0%,100% {
  transform: translateY(0);
}
 50% {
  transform: translateY(-28px);
}

}


@media (max-width: 980px) {
  .nav, .header-btn {
  display: none;
}

  .menu-btn {
  display: block;
}

  .nav.open {
  display: flex;
  position: absolute;
  top: 82px;
  left: 6vw;
  right: 6vw;
  flex-direction: column;
  padding: 24px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 24px;
}

  .hero, .work {
  grid-template-columns: 1fr;
}

  .hero-visual {
  height: 500px;
}

  .section-head, .service-grid, .results, .footer-links {
  grid-template-columns: 1fr 1fr;
}

  .cta-section, .footer-top {
  flex-direction: column;
  align-items: flex-start;
}

}

@media (max-width: 620px) {
  .site-header {
  padding: 18px 5vw;
}

  .hero {
  padding: 130px 5vw 60px;
}

  h1 {
  font-size: 56px;
}

  .section {
  padding: 80px 5vw;
}

  .service-grid, .section-head, .showcase, .results, .footer-links {
  grid-template-columns: 1fr;
}

  .project-large {
  min-height: 360px;
}

  .cta-section {
  margin: 80px 5vw;
  padding: 36px;
}

  .cursor {
  display: none;
}

}


:root {
  --bg: #0a0a0a;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --text: #f8f6ef;
  --muted: #a8a299;
  --accent: #dfff3f;
  --border: rgba(255, 255, 255, 0.12);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

.about-page {
  width: 100%;
  padding: 70px 6vw;
  overflow: hidden;
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(36px, 4vw, 66px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  margin-top: 32px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 800;
}

.image-box {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.image-box img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.section {
  padding: 90px 0;
  border-top: 1px solid var(--border);
}

.section > p {
  max-width: 760px;
}

.story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;

}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--surface);
}

.timeline span {
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
  font-family: var(--font-heading);
}

.timeline h3 {
  margin: 14px 0;
  font-size: 22px;
}

.cards {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  min-height: 260px;
  padding: 32px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.card h3 {
  font-size: 25px;
  margin-bottom: 18px;
}

.stats {
  margin: 70px 0;
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--surface-2);
}

.stats strong {
  display: block;
  color: var(--accent);
  font-size: clamp(46px, 5vw, 76px);
  font-family: var(--font-heading);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.cta {
  margin-top: 90px;
  padding: 70px;
  border-radius: 40px;
  background: var(--accent);
  color: #0a0a0a;
}

.cta .tag,
.cta p {
  color: #0a0a0a;
}

.cta h2 {
  max-width: 900px;
}

.cta .btn {
  background: #0a0a0a;
  color: var(--text);
}

@media (max-width: 980px) {
  .hero,
  .story {
    grid-template-columns: 1fr;
  }

  .cards,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .image-box img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .about-page {
    padding: 50px 5vw;
  }

  h1 {
    font-size: 46px;
  }

  .cards,
  .stats,
  .timeline {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 40px;
  }
}

:root {
  --bg: #0a0a0a;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --text: #f8f6ef;
  --muted: #a8a299;
  --accent: #dfff3f;
  --border: rgba(255, 255, 255, 0.12);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

.privacy-page {
  width: 100%;
  padding: 80px 6vw;
  margin-top: 60px;
  position: relative;
}

.privacy-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 70px;
}

.tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

h1,
h2 {
  font-family: var(--font-heading);
}

h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.privacy-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.privacy-hero span {
  margin-top: 30px;
  color: var(--accent);
  font-weight: 700;
}

.privacy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.policy-card {
  padding: 36px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: 0.35s ease;
}

.policy-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.policy-card h2 {
  font-size: 28px;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.policy-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .privacy-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .privacy-page {
    padding: 55px 5vw;
  }

  h1 {
    font-size: 46px;
  }

  .policy-card {
    padding: 28px;
  }
}

.terms-page {
  width: 100%;
  padding: 80px 6vw;
  margin-top: 60px;
  position: relative;
}

.terms-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 70px;
}

.tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

h1,
h2 {
  font-family: var(--font-heading);
}

h1 {
  max-width: 950px;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.terms-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.terms-hero span {
  margin-top: 30px;
  color: var(--accent);
  font-weight: 700;
}

.terms-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.terms-card {
  padding: 36px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: 0.35s ease;
}

.terms-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.terms-card h2 {
  font-size: 27px;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.terms-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.terms-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .terms-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .terms-page {
    padding: 55px 5vw;
  }

  h1 {
    font-size: 46px;
  }

  .terms-card {
    padding: 28px;
  }
}
.contact-page {
  width: 100%;
  min-height: 100vh;
  padding: 80px 6vw;
}

.contact-hero {
  max-width: 950px;
  margin-bottom: 70px;
  margin-top: 60PX;
  position: relative;
}

.tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.contact-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.info-card {
  padding: 34px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-card span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.info-card a,
.info-card p {
  color: var(--text);
  font-size: 20px;
  line-height: 1.6;
  text-decoration: none;
}

.contact-form {
  padding: 40px;
  border-radius: 34px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #0f0f0f;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
}

textarea {
  min-height: 180px;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

button {
  width: 100%;
  padding: 18px 26px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .contact-wrapper,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 55px 5vw;
  }

  h1 {
    font-size: 46px;
  }

  .contact-form,
  .info-card {
    padding: 28px;
  }
}