:root {
  --bg: #08131d;
  --bg-2: #0d1d2c;
  --panel: rgba(13, 29, 44, 0.72);
  --panel-strong: #102235;
  --text: #eef6fb;
  --muted: #adc2d3;
  --line: rgba(255,255,255,0.09);
  --primary: #2ea8e6;
  --primary-2: #66c4f0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}
/* LIGHT MODE */
body.light {
  --bg: #f3f6fb;
  --bg-2: #ffffff;
  --panel: rgba(255,255,255,0.8);
  --panel-strong: #ffffff;
  --text: #1b2430;
  --muted: #6b7280;
  --line: rgba(0,0,0,0.08);
  --primary: #2ea8e6;
  --primary-2: #66c4f0;
  --white: #0f172a;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(46,168,230,0.15), transparent 28%),
    radial-gradient(circle at bottom left, rgba(46,168,230,0.08), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

a { color: inherit; text-decoration: none; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(7, 16, 24, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(46,168,230,0.18), rgba(46,168,230,0.08));
  border: 1px solid rgba(46,168,230,0.4);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.brand svg { width: 24px; height: 24px; }
.brand-name { font-size: 1.02rem; }
.brand-name span { color: var(--primary); }

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.menu a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: var(--primary);
  color: #03111b;
  box-shadow: 0 14px 32px rgba(46,168,230,0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--primary-2);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--line);
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero {
  padding: 34px 0 28px;
}
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 700px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(4,12,18,0.55) 0%, rgba(4,12,18,0.40) 38%, rgba(4,12,18,0.14) 72%),
    url('https://plus.unsplash.com/premium_photo-1661434904969-d3ca36791fb4?w=900&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8Y2FyJTIwZGlhZ25vc3RpY3xlbnwwfHwwfHx8MA%3D%3D') center/cover no-repeat;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 700px;
}

.hero-left {
  padding: 84px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.11);
  margin-bottom: 22px;
  font-size: 0.92rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.accent { color: var(--primary); }

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-point {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.95rem;
}

.hero-right {
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 32px;
}

.floating-card {
  width: min(100%, 360px);
  background: rgba(7, 18, 29, 0.76);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.34);
}

.floating-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--white);
}

.quick-list {
  display: grid;
  gap: 10px;
}

.quick-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}

.section {
  padding: 42px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.kicker {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

.section-copy {
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(46,168,230,0.14);
  border: 1px solid rgba(46,168,230,0.3);
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.brands-wrap {
  margin-top: 14px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
}

.brands-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: slide 28s linear infinite;
  padding: 8px 0;
}

.brand-chip {
  min-width: 160px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #021018;
  background: var(--primary);
  margin-bottom: 16px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.stars {
  color: #ffd86e;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.quote {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 18px;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
}

.author strong { color: var(--white); }
.author span { color: var(--muted); }

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.contact-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-panel {
  margin-top: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(46,168,230,0.16), rgba(255,255,255,0.03));
  border: 1px solid rgba(46,168,230,0.24);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

footer {
  padding: 30px 0 50px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal {
  font-size: 0.94rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}

.muted-small {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-box,
  .services-grid,
  .steps,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-grid {
    min-height: auto;
  }

  .hero-left {
    padding: 54px 28px 28px;
  }

  .hero-right {
    justify-content: start;
    padding: 0 28px 28px;
  }

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

@media (max-width: 820px) {
  .menu { display: none; }
  .phone { display: none; }
  .nav { padding: 14px 0; }
  h1 { max-width: none; }
  .hero-card { border-radius: 26px; }
  .hero-left { padding: 42px 22px 22px; }
  .hero-right { padding: 0 22px 22px; }
  .floating-card { width: 100%; }
}
.faq {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: var(--muted);
  transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 16px;
}
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 2100;
  backdrop-filter: blur(12px);
  background: rgba(7, 16, 24, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,16,24,0.96);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 0.22s ease,
    opacity 0.16s ease,
    background 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0) rotate(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(0) rotate(0);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #071018;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 96px 20px 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 2000;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #fff;
  font-size: 1.05rem;
}

.mobile-menu-btn {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .menu,
  .phone,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 2200;
  }

  .nav {
    padding: 14px 0;
  }
}

.contact-form-wrap {
  margin-top: 22px;
}

.contact-form {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(46,168,230,0.8);
  background: rgba(255,255,255,0.06);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.error-message {
  min-height: 18px;
  margin-top: 6px;
  color: #ff8f8f;
  font-size: 0.88rem;
}

.form-field.error input,
.form-field.error textarea {
  border-color: rgba(255, 120, 120, 0.95);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.form-status {
  margin: 0;
  min-height: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status.success {
  color: #8fe3a6;
}

.form-status.error {
  color: #ff8f8f;
}

@media (max-width: 820px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }
}
.form-success-box {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(143, 227, 166, 0.35);
  background: rgba(143, 227, 166, 0.08);
  color: #dff7e5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow);
}

.form-success-box strong {
  color: #8fe3a6;
  font-size: 1rem;
}

.form-success-box span {
  color: var(--text);
  font-size: 0.96rem;
}
.form-success {
  display: none;
  margin-top: 20px;
}

.success-box {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f2f1f, #133b28);
  border: 1px solid rgba(0,255,150,0.2);
  color: #b6ffd9;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.success-box h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 2500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.brand-logo {
  display: block;
  height: 35px !important;
  width: auto !important;
  max-width: none;
  flex-shrink: 0;
}

/* 🔥 animacja tylko na desktop */
@media (min-width: 821px) {
  .brand-logo {
    animation: logoGlow 3.2s ease-in-out infinite;
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(46, 168, 230, 0));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(46, 168, 230, 0.45));
  }
}
/* =======================
   LIGHT MODE FIXES
======================= */

body.light .nav-wrap {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.light .menu a,
body.light .legal,
body.light .badge,
body.light .muted-small,
body.light .section-copy,
body.light .lead,
body.light .card p,
body.light .quote,
body.light .author span,
body.light .contact-list,
body.light .quick-item {
  color: #5f6b7a;
}

body.light .phone,
body.light .brand-name,
body.light .card h3,
body.light .contact-card h3,
body.light h1,
body.light h2,
body.light .author strong {
  color: #1b2430;
}

body.light .hero-card {
  border: 0px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.74) 38%, rgba(255,255,255,0.34) 72%),
    url('https://plus.unsplash.com/premium_photo-1661434904969-d3ca36791fb4?w=900&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8Y2FyJTIwZGlhZ25vc3RpY3xlbnwwfHwwfHx8MA%3D%3D') center/cover no-repeat;
}

body.light .eyebrow {
  color: #1b2430;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
}

body.light .hero-point {
  color: #1b2430;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
}

body.light .floating-card {
  background: rgba(37, 46, 58, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

body.light .floating-card h3 {
  color: #ffffff;
}

body.light .quick-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  color: #d3d9e0;
}

body.light .card,
body.light .contact-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

body.light .service-icon {
  background: rgba(46,168,230,0.10);
  border: 1px solid rgba(46,168,230,0.20);
}

body.light .btn-secondary {
  background: rgba(0,0,0,0.04);
  color: #1b2430;
  border: 1px solid rgba(0,0,0,0.08);
}

body.light .btn-secondary:hover {
  background: rgba(0,0,0,0.08);
}

body.light .step-number {
  color: #ffffff;
  background: #2ea8e6;
}

body.light .brand-chip {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #1b2430;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

body.light .cta-panel {
  background: linear-gradient(135deg, rgba(46,168,230,0.10), rgba(255,255,255,0.95));
  border: 1px solid rgba(46,168,230,0.18);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

body.light footer {
  color: #5f6b7a;
}
/* =======================
   LIGHT MODE — FAQ + FORM FIX
======================= */

body.light .faq-item,
body.light .faq-question,
body.light .faq-answer,
body.light .form-group input,
body.light .form-group textarea,
body.light .form-group select,
body.light .contact-form,
body.light form,
body.light .form-card {
  color: #1b2430;
}

body.light .faq-item,
body.light .faq-question {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

body.light .faq-question:hover {
  background: #f7f9fc;
}

body.light .faq-answer {
  color: #5f6b7a;
}

body.light .form-group input,
body.light .form-group textarea,
body.light .form-group select,
body.light input,
body.light textarea,
body.light select {
  background: #ffffff;
  color: #1b2430;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
}

body.light .form-group input::placeholder,
body.light .form-group textarea::placeholder,
body.light input::placeholder,
body.light textarea::placeholder {
  color: #8a94a3;
}

body.light .form-group label,
body.light label {
  color: #1b2430;
}

body.light .contact-form,
body.light form,
body.light .form-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

body.light .contact-form .btn-primary,
body.light form .btn-primary,
body.light .form-card .btn-primary {
  color: #ffffff;
}
@media (max-width: 820px) {
  .theme-toggle {
    margin-right: 60px;
  }
}