/* /* ════════════════════════════════════════
       CSS VARIABLES
    ════════════════════════════════════════ */
:root {
  --primary: #1351d8;
  --primary2: #4f8dff;
  --primary-light: #f3f6fd;
  --dark: #1c1c1c;
  --dark2: #454545;
  --light: #f9f9f9;
  --gray: #d9d9d9;
  --logo1: #1c2867;
  --logo2: #1799d8;
  --logo3: #095683;
  --logo4: #20aec1;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 50px;

  --shadow-sm: 0 2px 12px rgba(19, 81, 216, 0.07);
  --shadow-md: 0 8px 32px rgba(19, 81, 216, 0.12);
  --shadow-lg: 0 16px 48px rgba(19, 81, 216, 0.16);

  --transition: 0.28s ease;

  --section-pad: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
}

/* ====================== PRELOADER ====================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease-in-out;
}

/* Loader */
.loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #80a5f050;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #8096f0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow324 {

  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
}

/* ════════════════════════════════════════
         RESET & BASE
      ════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Active nav link */
.primary-nav a.active {
  color: var(--logo2);
}

.primary-nav a.active::after {
  width: 100%;
}

/* Mobile active */
.mobile-nav a.active {
  color: var(--logo2);
}

/* ════════════════════════════════════════
         SKIP LINK (Accessibility)
      ════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ════════════════════════════════════════
         SHARED UTILITIES
      ════════════════════════════════════════ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--logo1), var(--logo3));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--logo1);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-main:hover {
  background: var(--white);
  color: var(--logo1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-main:focus-visible {
  outline: 3px solid var(--primary2);
  outline-offset: 3px;
}

/* ════════════════════════════════════════
         HEADER / NAVIGATION
      ════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1.5px solid var(--gray);
  gap: 24px;
}

.site-logo {
  width: clamp(100px, 12vw, 160px);
  flex-shrink: 0;
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.primary-nav a {
  color: var(--logo1);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color var(--transition);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--logo2);
  transition: width var(--transition);
}

.primary-nav a:hover {
  color: var(--logo2);
}

.primary-nav a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--logo1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 32px clamp(40px, 5vw, 40px);
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--logo1);

}

@media (max-width: 768px) {

  .primary-nav,
  #site-header .btn-main {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-nav .btn-main {
    color: var(--white);
    font-size: 14px;
    padding: 12px 28px;
  }
}

/* Active nav link */
.primary-nav a.active {
  color: var(--logo2);
}

.primary-nav a.active::after {
  width: 100%;
}

/* Mobile active */
.mobile-nav a.active {
  color: var(--logo2);
}

/* ════════════════════════════════════════
         HEADER / NAVIGATION
      ════════════════════════════════════════ */

/* main content */
/* ── Section wrapper only ── */
#cfs-section {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--light);
  padding: var(--section-pad);
  box-sizing: border-box;
}

#cfs-section * {
  box-sizing: border-box;
}

/* ── Layout ── */
.cfs-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ── Form card ── */
.cfs-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.cfs-form-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px 0;
  letter-spacing: -0.3px;
}

/* ── Field groups ── */
.cfs-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.cfs-row--2col {
  grid-template-columns: 1fr 1fr;
}

.cfs-row--1col {
  grid-template-columns: 1fr;
}

.cfs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cfs-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark2);
  letter-spacing: 0.2px;
  display: none;
  /* placeholders visible */
}

.cfs-input,
.cfs-select,
.cfs-textarea {
  width: 100%;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.cfs-input::placeholder,
.cfs-textarea::placeholder {
  color: #b0b0b0;
}

.cfs-input:focus,
.cfs-select:focus,
.cfs-textarea:focus {
  border-color: var(--primary2);
  box-shadow: 0 0 0 3px rgba(79, 141, 255, 0.15);
}

.cfs-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23454545' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  color: #b0b0b0;
}

.cfs-select.cfs-has-val {
  color: var(--dark);
}

.cfs-textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── File upload ── */
.cfs-file-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.cfs-file-label-txt {
  font-size: 0.82rem;
  color: var(--dark2);
  font-weight: 500;
}

.cfs-file-hint {
  font-size: 0.78rem;
  color: #b0b0b0;
}

#cfs-file-input {
  display: none;
}

#cfs-file-btn {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 18px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

#cfs-file-btn:hover {
  background: var(--logo1);
  transform: translateY(-1px);
}

#cfs-file-name {
  font-size: 0.78rem;
  color: var(--dark2);
}

/* ── Checkbox ── */
.cfs-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

#cfs-consent {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.cfs-check-label {
  font-size: 0.8rem;
  color: var(--dark2);
  line-height: 1.5;
}

/* ── Submit button ── */
.cfs-submit-btn {
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 36px;
  border: none;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
  color: var(--white);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: box-shadow var(--transition), transform var(--transition), opacity var(--transition);
  box-shadow: var(--shadow-md);
}

.cfs-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cfs-submit-btn:active {
  transform: translateY(0);
}

.cfs-submit-btn.cfs-loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ── Toast ── */
#cfs-toast {
  display: none;
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--primary);
  font-weight: 500;
}

/* ── Office Info card ── */
.cfs-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cfs-info-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px 0;
}

.cfs-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.cfs-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cfs-info-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cfs-info-icon svg {
  width: 18px;
  height: 18px;
}

.cfs-info-text h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 3px 0;
}

.cfs-info-text p {
  font-size: 0.82rem;
  color: var(--dark2);
  margin: 0;
  line-height: 1.55;
}

/* ── Map embed ── */
.cfs-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 178px;
  background: var(--primary-light);
  position: relative;
}

.cfs-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .cfs-layout {
    grid-template-columns: 1fr;
  }

  .cfs-row--2col {
    grid-template-columns: 1fr;
  }
}














/* ════════════════════════════════════════
         FOOTER
      ════════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 300px;
  opacity: 0.1;
  pointer-events: none;
}

/* CTA Band */
.footer-cta {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.cta-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  justify-self: center;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: clamp(32px, 5vw, 64px);
}

.footer-logo-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo-wrap img {
  width: 130px;
  height: 40px;
  object-fit: contain;
}

.cta-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 300px;
}

.email-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.email-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  width: clamp(160px, 18vw, 210px);
  outline: none;
  transition: border-color var(--transition);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.email-input:focus {
  border-color: var(--primary2);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform 0.15s;
}

.btn-primary:hover {
  background: var(--primary2);
  transform: translateY(-1px);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.6;
  transition: opacity var(--transition);
  cursor: pointer;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo span {
  font-size: 13px;
  font-weight: 600;
}

.yt-text {
  color: var(--white);
}

.upwork-text {
  color: #6fda44;
}

.shopify-text {
  color: #96bf48;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: clamp(32px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 340px;
}

.cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 320px;
  margin-top: -10px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary2);
  color: var(--primary2);
  border-radius: 6px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.footer-stats {
  display: flex;
  gap: clamp(24px, 4vw, 44px);
}

.footer-stat-val {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.footer-stat-unit {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.5;
  margin-left: 2px;
}

.footer-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

/* Nav links */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 0.2fr 1.3fr;
  gap: 20px;
  padding: clamp(36px, 5vw, 52px) clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.nav-col-title {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-col a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color var(--transition);
}

.nav-col a:hover {
  color: var(--primary2);
}

.address-entry {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addr-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3px;
}

.addr-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 72px) 24px;
  position: relative;
  z-index: 1;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer-social-btn:hover {
  border-color: var(--primary2);
  background: rgba(79, 141, 255, 0.1);
  color: var(--primary2);
  transform: translateY(-2px);
}

.footer-social-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
  .footer-cta {
    padding: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
  }

  .nav-col.address-col {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 18px 40px 24px;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 36px;
  }

  .cta-divider {
    display: none;
  }

  .cta-left,
  .cta-right {
    padding: 0;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    padding: 16px 24px 20px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}

/* faq section */
#faqsec-section {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  padding: var(--section-pad);
  box-sizing: border-box;
}

#faqsec-section * {
  box-sizing: border-box;
}

.faqsec-header {
  text-align: center;
  margin-bottom: 40px;
}

.faqsec-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px 0;
  letter-spacing: -0.4px;
}

.faqsec-subtitle {
  font-size: 0.93rem;
  color: var(--dark2);
  margin: 0;
}

.faqsec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.faqsec-card {
  background: var(--white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faqsec-card:hover {
  border-color: var(--primary2);
  box-shadow: var(--shadow-sm);
}

.faqsec-card-q {
  font-family: 'Sora', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.faqsec-card-a {
  font-size: 0.875rem;
  color: var(--dark2);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 660px) {
  .faqsec-grid {
    grid-template-columns: 1fr;
  }
}

*/

/* ══════════════════════════════════════
       CSS VARIABLES
    ══════════════════════════════════════ */
:root {
  --primary: #1351d8;
  --primary2: #4f8dff;
  --primary-light: #f3f6fd;
  --dark: #1c1c1c;
  --dark2: #454545;
  --light: #f9f9f9;
  --gray: #d9d9d9;
  --logo1: #1c2867;
  --logo2: #1799d8;
  --logo3: #095683;
  --logo4: #20aec1;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 50px;

  --shadow-sm: 0 2px 12px rgba(19, 81, 216, 0.07);
  --shadow-md: 0 8px 32px rgba(19, 81, 216, 0.12);
  --shadow-lg: 0 16px 48px rgba(19, 81, 216, 0.16);

  --transition: 0.28s ease;
  --section-pad: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
}

/* ══════════════════════════════════════
       RESET & BASE
    ══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ══════════════════════════════════════
       ACCESSIBILITY
    ══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════
       SHARED UTILITIES
    ══════════════════════════════════════ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--logo1), var(--logo3));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--logo1);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-main:hover {
  background: var(--white);
  color: var(--logo1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-main:focus-visible {
  outline: 3px solid var(--primary2);
  outline-offset: 3px;
}

/* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1.5px solid var(--gray);
  gap: 24px;
}

.site-logo {
  width: clamp(100px, 12vw, 160px);
  flex-shrink: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.primary-nav a {
  color: var(--logo1);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color var(--transition);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--logo2);
  transition: width var(--transition);
}

.primary-nav a:hover {
  color: var(--logo2);
}

.primary-nav a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--logo1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 32px clamp(20px, 5vw, 40px);
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--logo1);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
}

@media (max-width: 768px) {

  .primary-nav,
  #site-header .btn-main {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ══════════════════════════════════════
       CONTACT SECTION
    ══════════════════════════════════════ */
#cfs-section {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  padding: var(--section-pad);
}

.cfs-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* Form card */
.cfs-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.cfs-form-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
  letter-spacing: -0.3px;
}

.cfs-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.cfs-row--2col {
  grid-template-columns: 1fr 1fr;
}

.cfs-row--1col {
  grid-template-columns: 1fr;
}

.cfs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cfs-label {
  display: none;
}

.cfs-input,
.cfs-select,
.cfs-textarea {
  width: 100%;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.cfs-input::placeholder,
.cfs-textarea::placeholder {
  color: #b0b0b0;
}

.cfs-input:focus,
.cfs-select:focus,
.cfs-textarea:focus {
  border-color: var(--primary2);
  box-shadow: 0 0 0 3px rgba(79, 141, 255, 0.15);
}

.cfs-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23454545' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  color: #b0b0b0;
  padding-right: 36px;
}

.cfs-select.cfs-has-val {
  color: var(--dark);
}

.cfs-textarea {
  resize: none;
  min-height: 110px;
}

/* File upload */
.cfs-file-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.cfs-file-label-txt {
  font-size: 0.82rem;
  color: var(--dark2);
  font-weight: 500;
}

.cfs-file-hint {
  font-size: 0.76rem;
  color: #b0b0b0;
  margin-bottom: 16px;
}

#cfs-file-input {
  display: none;
}

#cfs-file-btn {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

#cfs-file-btn:hover {
  background: var(--logo1);
  transform: translateY(-1px);
}

#cfs-file-name {
  font-size: 0.78rem;
  color: var(--dark2);
}

/* Checkbox */
.cfs-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

#cfs-consent {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.cfs-check-label {
  font-size: 0.8rem;
  color: var(--dark2);
  line-height: 1.5;
}

/* Submit button */
#cfs-submit-btn {
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
  color: var(--white);
  letter-spacing: 0.3px;
  transition: box-shadow var(--transition), transform var(--transition), opacity var(--transition);
  box-shadow: var(--shadow-md);
}

#cfs-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#cfs-submit-btn:active {
  transform: translateY(0);
}

#cfs-submit-btn.cfs-loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Toast */
#cfs-toast {
  display: none;
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--primary);
  font-weight: 500;
}

/* Office info card */
.cfs-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.cfs-info-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
}

.cfs-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.cfs-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cfs-info-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cfs-info-icon svg {
  width: 18px;
  height: 18px;
}

.cfs-info-text h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 3px;
}

.cfs-info-text p {
  font-size: 0.82rem;
  color: var(--dark2);
  margin: 0;
  line-height: 1.55;
}

/* Map */
.cfs-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 178px;
  background: var(--primary-light);
}

.cfs-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive contact */
@media (max-width: 900px) {
  .cfs-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cfs-row--2col {
    grid-template-columns: 1fr;
  }

  .cfs-form-card {
    padding: 24px 18px;
  }

  .cfs-info-card {
    padding: 24px 18px;
  }
}

/* ══════════════════════════════════════
       FAQ SECTION
    ══════════════════════════════════════ */
#faqsec-section {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  padding: var(--section-pad);
}

.faqsec-header {
  text-align: center;
  margin-bottom: 40px;
}

.faqsec-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}

.faqsec-subtitle {
  font-size: 0.93rem;
  color: var(--dark2);
  margin: 0;
}

.faqsec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.faqsec-card {
  background: var(--white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faqsec-card:hover {
  border-color: var(--primary2);
  box-shadow: var(--shadow-sm);
}

.faqsec-card-q {
  font-family: 'Sora', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.4;
}

.faqsec-card-a {
  font-size: 0.875rem;
  color: var(--dark2);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 660px) {
  .faqsec-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 300px;
  opacity: 0.1;
  pointer-events: none;
}

/* CTA Band */
.footer-cta {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.cta-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  justify-self: center;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: clamp(32px, 5vw, 64px);
}

.footer-logo-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo-wrap img {
  width: 130px;
  height: 40px;
  object-fit: contain;
}

.cta-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 300px;
}

.email-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.email-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  width: clamp(160px, 18vw, 210px);
  outline: none;
  transition: border-color var(--transition);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.email-input:focus {
  border-color: var(--primary2);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform 0.15s;
}

.btn-primary:hover {
  background: var(--primary2);
  transform: translateY(-1px);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.6;
  transition: opacity var(--transition);
  cursor: pointer;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo span {
  font-size: 13px;
  font-weight: 600;
}

.yt-text {
  color: var(--white);
}

.upwork-text {
  color: #6fda44;
}

.shopify-text {
  color: #96bf48;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: clamp(32px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 340px;
}

.cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 320px;
  margin-top: -10px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary2);
  color: var(--primary2);
  border-radius: 6px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.footer-stats {
  display: flex;
  gap: clamp(24px, 4vw, 44px);
}

.footer-stat-val {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.footer-stat-unit {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.5;
  margin-left: 2px;
}

.footer-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

/* Footer nav */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 0.2fr 1.3fr;
  gap: 20px;
  padding: clamp(36px, 5vw, 52px) clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.nav-col-title {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-col a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color var(--transition);
}

.nav-col a:hover {
  color: var(--primary2);
}

.address-entry {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addr-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3px;
}

.addr-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.info-link {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color var(--transition);
}

.info-link:hover {
  color: var(--primary2);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 72px) 24px;
  position: relative;
  z-index: 1;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer-social-btn:hover {
  border-color: var(--primary2);
  background: rgba(79, 141, 255, 0.1);
  color: var(--primary2);
  transform: translateY(-2px);
}

.footer-social-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-cta {
    padding: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
  }

  .footer-bottom {
    padding: 18px 40px 24px;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 36px;
  }

  .cta-divider {
    display: none;
  }

  .cta-left,
  .cta-right {
    padding: 0;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    padding: 16px 24px 20px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}