@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700,800,900&display=swap');

  :root {
    --bg: #000000;
    --bg-2: #0a0a0a;
    --bg-3: #111111;
    --bg-card: #161616;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.18);
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6e6e73;
    --accent: #2997ff;
    --accent-glow: rgba(41,151,255,0.15);
    /* --gradient: linear-gradient(135deg, #2997ff 0%, #30d158 100%); */
    --gradient: linear-gradient(135deg, #0057ff 0%, #40a0ff 100%);
  }
  body.light-mode {
  --bg: #ffffff;
  --bg-2: #f5f5f7;
  --bg-3: #eeeeee;
  --bg-card: #ffffff;
  

  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.15);

  --text-primary: #111111;
  --text-secondary: #444444;
  --text-tertiary: #777777;

  --accent-glow: rgba(41,151,255,0.12);
}

  * { margin: 0; padding: 0; box-sizing: border-box; 
      transition: background-color 0.4s ease,
              border-color 0.4s ease,
              color 0.3s ease;
    max-width: 100%;
    }

  html { scroll-behavior: smooth; }

 body {
  background: var(--bg);
  color: var(--text-primary);
  font-family:'Satoshi', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
  .theme-toggle {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.15);
}

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
  }

  body.light-mode nav {
  background: rgba(255,255,255,0.72);
}

  .nav-logo {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #ffffff;
    text-decoration: none;
  }
  body.light-mode .nav-logo {
  color: #111111;
}

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.1px;
  }

  .nav-links a:hover { color: var(--text-primary); }

  .nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 980px;
    font-size: 13px !important;
    font-weight: 500;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.85; color: #fff !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 150px 24px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41,151,255,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .hero-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    animation: fadeUp 0.8s ease both;
  }

  .hero-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.1);
  }

  .hero-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.1s both;
  }

  .hero-title {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.4s both;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary:hover {
    background: #0077ed;
    transform: scale(1.02);
  }

  .btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hover);
    transform: scale(1.02);
  }

 .scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s ease 0.8s both;
  
}

.scroll-hint span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-tertiary), transparent);
  animation: scrollPulse 2s ease infinite;
}

  /* SECTION COMMONS */
  section {
    padding: 80px 24px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
  }

  .section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 35px;
    text-align: center;
  }

 .section-label,
.section-title,
.section-sub {
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

  .section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 60px;
  }

  .container {
    max-width: 1080px;
    margin: 0 auto;
  }

  /* WORK / VIDEO GRID */
  .work-section { background: var(--bg); }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }

  .video-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }

  .video-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }

  .video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-3);
    position: relative;
    overflow: hidden;
  }

  .video-thumb iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
  }

  .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain ;
  }

  .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 41, 41, 0.3);
    transition: background 0.25s;
  }

  .video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .play-btn {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .video-card:hover .play-btn { transform: scale(1.1); }

  .play-btn svg { margin-left: 3px; }

  .video-info {
    padding: 16px 18px 18px;
  }

  .video-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
  }

  .video-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    line-height: 1.4;
  }

  .video-desc {
    font-size: 15px;
    color: var(--text-tertiary);
    margin-top: 4px;
    line-height: 1.5;
  }

  /* VIDEO MODAL */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .modal-content {
    width: 100%;
    max-width: 900px;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  }

  .modal-overlay.open .modal-content {
    transform: scale(1) translateY(0);
  }

  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }

  .modal-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
  }

  .modal-close {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background 0.2s;
  }

  .modal-close:hover { background: rgba(255,255,255,0.15); }

  .modal-video {
    aspect-ratio: 16/9;
    background: #000;
  }

  .modal-video iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* PROOF / STATS */
  .proof-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
  }

  .stat-item {
    background: var(--bg-2);
    padding: 36px 28px;
    text-align: center;
  }

  .stat-num {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 17px;
    color: var(--text-tertiary);
    letter-spacing: 0.2px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }

  .testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s;
  }

  .testimonial-card:hover { border-color: var(--border-hover); }

  .quote-mark {
    font-size: 48px;
    line-height: 1;
    color: var(--accent);
    font-family: Georgia, serif;
    margin-bottom: 12px;
    display: block;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 20px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .author-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }

  .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }

  .author-title {
    font-size: 12px;
    color: var(--text-tertiary);
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
  }

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

  .service-icon {
    width: 44px; height: 44px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
  }

  .service-name {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
  }

  .service-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* FAQ / OBJECTIONS */
  .faq-list { max-width: 680px; margin:0 auto; }

  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
  }

  .faq-question:hover { color: var(--accent); }

  .faq-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.2s;
    font-size: 14px;
    color: var(--text-secondary);
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-glow);
    color: var(--accent);
  }

  .faq-answer {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.2s;
  }

  .faq-item.open .faq-answer {
    max-height: 150px;
    padding-bottom: 22px;
  }

  /* CTA */
  .cta-section {
    background: var(--bg);
    text-align: center;
  }

  .cta-card {
    background: linear-gradient(135deg, rgba(41,151,255,0.08) 0%, rgba(48,209,88,0.06) 100%);
    border: 1px solid rgba(41,151,255,0.2);
    border-radius: 24px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }

  .cta-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(41,151,255,0.3), rgba(48,209,88,0.15), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
  }

  .cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
  }

  .cta-sub {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-tertiary);
    font-size: 13px;
  }

  footer a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s;
  }

  footer a:hover { color: var(--text-secondary); }

  /* ADD VIDEO PANEL */
  .add-video-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 60px 24px;
  }

  .add-video-form {
    max-width: 640px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
  }

  .form-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }

  .form-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }

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

  .form-input {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-input::placeholder { color: var(--text-tertiary); }

  .form-input:focus { border-color: var(--accent); }

  .form-input.full { grid-column: 1 / -1; }

  .form-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
    margin-top: 8px;
  }

  .form-btn:hover { opacity: 0.85; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
  }

  /* OBSERVE FADE */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── PREMIUM THEME SWITCH ───────────────────────── */
.theme-switch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

.theme-switch:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
}

/* Dark mode: white button, dark icon (moon) */
.icon-sun  { display: none;  color: #111; }
.icon-moon { display: block; color: #111; }

/* Light mode: black button, white icons */
body.light-mode .theme-switch {
  background: #111111;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
body.light-mode .theme-switch:hover {
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}
body.light-mode .icon-sun  { display: block; color: #fff; }
body.light-mode .icon-moon { display: none; }

.contact-section {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 32px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

.contact-section .container {
  padding: 0 20px;
}
/* THANK YOU PAGE */

  :root {
    --bg: #000000;
    --bg-2: #0a0a0a;
    --bg-3: #111111;
    --bg-card: #161616;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.18);
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6e6e73;
    --accent: #2997ff;
    --accent-glow: rgba(41,151,255,0.15);
    /* --gradient: linear-gradient(135deg, #2997ff 0%, #30d158 100%); */
    --gradient: linear-gradient(135deg, #0057ff 0%, #40a0ff 100%);
  }
  body.light-mode {
  --bg: #ffffff;
  --bg-2: #f5f5f7;
  --bg-3: #eeeeee;
  --bg-card: #ffffff;
  

  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.15);

  --text-primary: #111111;
  --text-secondary: #444444;
  --text-tertiary: #777777;

  --accent-glow: rgba(41,151,255,0.12);
}

  * { margin: 0; padding: 0; box-sizing: border-box; 
      transition: background-color 0.4s ease,
              border-color 0.4s ease,
              color 0.3s ease;
    }

  html { scroll-behavior: smooth; }

 body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Satoshi', sans-serif;
-webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
  .theme-toggle {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.15);
}

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
  }

  body.light-mode nav {
  background: rgba(255,255,255,0.72);
}

  .nav-logo {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #ffffff;
    text-decoration: none;
  }
  body.light-mode .nav-logo {
  color: #111111;
}

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.1px;
  }

  .nav-links a:hover { color: var(--text-primary); }

  .nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 980px;
    font-size: 13px !important;
    font-weight: 500;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.85; color: #fff !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 150px 24px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41,151,255,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .hero-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    animation: fadeUp 0.8s ease both;
  }

  .hero-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.1);
  }

  .hero-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.1s both;
  }

  .hero-title {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.4s both;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary:hover {
    background: #0077ed;
    transform: scale(1.02);
  }

  .btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hover);
    transform: scale(1.02);
  }

 .scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s ease 0.8s both;
  
}

.scroll-hint span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-tertiary), transparent);
  animation: scrollPulse 2s ease infinite;
}

  /* SECTION COMMONS */
  section {
    padding: 80px 24px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
  }

  .section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 35px;
    text-align: center;
  }

 .section-label,
.section-title,
.section-sub {
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

  .section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 60px;
  }

  .container {
    max-width: 1080px;
    margin: 0 auto;
  }

  /* WORK / VIDEO GRID */
  .work-section { background: var(--bg); }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }

  .video-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }

  .video-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }

  .video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-3);
    position: relative;
    overflow: hidden;
  }

  .video-thumb iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
  }

  .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain ;
  }

  .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 41, 41, 0.3);
    transition: background 0.25s;
  }

  .video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .play-btn {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .video-card:hover .play-btn { transform: scale(1.1); }

  .play-btn svg { margin-left: 3px; }

  .video-info {
    padding: 16px 18px 18px;
  }

  .video-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
  }

  .video-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    line-height: 1.4;
  }

  .video-desc {
    font-size: 15px;
    color: var(--text-tertiary);
    margin-top: 4px;
    line-height: 1.5;
  }

  /* VIDEO MODAL */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .modal-content {
    width: 100%;
    max-width: 900px;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  }

  .modal-overlay.open .modal-content {
    transform: scale(1) translateY(0);
  }

  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }

  .modal-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
  }

  .modal-close {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background 0.2s;
  }

  .modal-close:hover { background: rgba(255,255,255,0.15); }

  .modal-video {
    aspect-ratio: 16/9;
    background: #000;
  }

  .modal-video iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* PROOF / STATS */
  .proof-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
  }

  .stat-item {
    background: var(--bg-2);
    padding: 36px 28px;
    text-align: center;
  }

  .stat-num {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 17px;
    color: var(--text-tertiary);
    letter-spacing: 0.2px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }

  .testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s;
  }

  .testimonial-card:hover { border-color: var(--border-hover); }

  .quote-mark {
    font-size: 48px;
    line-height: 1;
    color: var(--accent);
    font-family: Georgia, serif;
    margin-bottom: 12px;
    display: block;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 20px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .author-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }

  .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }

  .author-title {
    font-size: 12px;
    color: var(--text-tertiary);
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
  }

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

  .service-icon {
    width: 44px; height: 44px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
  }

  .service-name {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
  }

  .service-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* FAQ / OBJECTIONS */
  .faq-list { max-width: 680px; margin:0 auto; }

  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
  }

  .faq-question:hover { color: var(--accent); }

  .faq-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.2s;
    font-size: 14px;
    color: var(--text-secondary);
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-glow);
    color: var(--accent);
  }

  .faq-answer {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.2s;
  }

  .faq-item.open .faq-answer {
    max-height: 150px;
    padding-bottom: 22px;
  }

  /* CTA */
  .cta-section {
    background: var(--bg);
    text-align: center;
  }

  .cta-card {
    background: linear-gradient(135deg, rgba(41,151,255,0.08) 0%, rgba(48,209,88,0.06) 100%);
    border: 1px solid rgba(41,151,255,0.2);
    border-radius: 24px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }

  .cta-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(41,151,255,0.3), rgba(48,209,88,0.15), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
  }

  .cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
  }

  .cta-sub {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-tertiary);
    font-size: 13px;
  }

  footer a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s;
  }

  footer a:hover { color: var(--text-secondary); }

  /* ADD VIDEO PANEL */
  .add-video-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 60px 24px;
  }

  .add-video-form {
    max-width: 640px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
  }

  .form-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }

  .form-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }

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

  .form-input {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-input::placeholder { color: var(--text-tertiary); }

  .form-input:focus { border-color: var(--accent); }

  .form-input.full { grid-column: 1 / -1; }

  .form-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
    margin-top: 8px;
  }

  .form-btn:hover { opacity: 0.85; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
  }

  /* OBSERVE FADE */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── HAMBURGER MENU ───────────────────────── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 200;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── RESPONSIVE ───────────────────────── */
  @media (max-width: 640px) {

    nav { padding: 0 20px; }
    /* .nav-links { display: none; } */
    .form-row { grid-template-columns: 1fr; }
    .form-input.full { grid-column: 1; }
    .cta-card { padding: 52px 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form { padding: 24px 16px; width: 100%; box-sizing: border-box; }
    .form-group input,
    .form-group textarea { width: 100%; box-sizing: border-box; }
    .hero-bg-glow { width: 300px; height: 300px; }
    .hamburger { display: flex; }
    .scroll-hint { display: none; }

    .nav-links {
      display: none;
      position: fixed;
      top: 52px;
      left: 0; right: 0;
      background: rgba(0,0,0,0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      gap: 0;
      padding: 16px 0 24px;
      border-bottom: 1px solid var(--border);
      z-index: 150;
    }

    .nav-links.open { display: flex; } 

    body.light-mode .nav-links {
      background: rgba(255,255,255,0.96);
    }

    .nav-links li { width: 100%; }

    .nav-links a {
      display: block;
      padding: 14px 24px;
      font-size: 16px;
    }

    .nav-links .theme-switch {
      margin: 12px 24px 0;
    }

    .nav-cta {
      margin: 8px 24px 0;
      display: inline-block;
      border-radius: 980px;
    }

    .hero {
       min-height: unset;
    padding: 80px 20px 40px;
    }

    .hero-title {
      font-size: clamp(36px, 11vw, 56px);
    }

    .hero-sub {
      font-size: 16px;
    }

    .hero-actions {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
      width: 100%;
      justify-content: center;
    }

    .services-grid { grid-template-columns: 1fr; }

    .video-grid {
      grid-template-columns: 1fr;
    }

    .form-row { grid-template-columns: 1fr; }
    .form-input.full { grid-column: 1; }
    .cta-card { padding: 52px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-form { padding: 24px; }

    .section-title { letter-spacing: -1px; }

    .faq-question { font-size: 16px; }
  }

  /* ── PREMIUM THEME SWITCH ───────────────────────── */
.theme-switch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

.theme-switch:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
}

/* Dark mode: white button, dark icon (moon) */
.icon-sun  { display: none;  color: #111; }
.icon-moon { display: block; color: #111; }

/* Light mode: black button, white icons */
body.light-mode .theme-switch {
  background: #111111;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
body.light-mode .theme-switch:hover {
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}
body.light-mode .icon-sun  { display: block; color: #fff; }
body.light-mode .icon-moon { display: none; }

.contact-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 32px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* THANK YOU PAGE */

.thank-you-section{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
background:var(--bg);
padding:40px;
}

.thank-you-box{
text-align:center;
max-width:520px;
padding:48px;
border-radius:16px;
background:var(--card-bg);
border:1px solid var(--border);
}

.thank-you-box h1{
font-size:40px;
margin-bottom:12px;
}

.thank-you-box p{
color:var(--text-secondary);
margin-bottom:28px;
font-size:18px;
}ion{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
background:var(--bg);
padding:40px;
}

.thank-you-box{
text-align:center;
max-width:520px;
padding:48px;
border-radius:16px;
background:var(--card-bg);
border:1px solid var(--border);
}

.thank-you-box h1{
font-size:40px;
margin-bottom:12px;
}

.thank-you-box p{
color:var(--text-secondary);
margin-bottom:28px;
font-size:18px;
}
