*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #e8f0ff;
  --surface: #ffffff;
  --surface-soft: #f7fafb;
  --text: #0f2230;
  --muted: #333;
  --line: #dfe8eb;
  --primary: #0404fe;
  --primary-dark: #0404fe;
  --dark: #0b1f3b;
  --dark-2: #1e293b;
  --shadow-sm: 0 12px 30px rgba(15, 34, 48, 0.06);
  --shadow-md: 0 20px 50px rgba(15, 34, 48, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1120px;
}

/* ===== New header & products mega menu (tp-*) ===== */

:root {
  --tp-bg-header: #f4f6ff;
  --tp-blue: #2563eb;
  --tp-blue-soft: #eff4ff;
  --tp-text-main: #1e293b;
  --tp-text-muted: #6b7280;
  --tp-border-soft: #e5ecff;
  --tp-radius-lg: 12px;
  --tp-radius-sm: 6px;
  --tp-shadow-mega: 0 14px 32px rgba(15, 23, 42, 0.12);
  --tp-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter",
    "Segoe UI", sans-serif;
}

.tp-header {
  /* position: sticky; */
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: #e3ecff;
  border-bottom: 1px solid rgba(209, 213, 219, 0.7);
  width:100%;
  position:relative;
  transition:0.3s;
  z-index:999;
}

.tp-header.fixed{
  position:fixed;
  top:0;
  left:0;

  }


.tp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 5px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--tp-font-sans);
}

.tp-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--tp-text-main);
  text-decoration: none;
  letter-spacing: -0.04em;
}

.tp-logo img{
height: 80px;
}
.tp-nav {
  display: flex;
  text-align: center;
  margin: 0 auto;
  align-items: center;
}

.tp-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-nav-item {
  position: relative;
}

.tp-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  font-size: 0.94rem;
  font-weight: 500;
  color: #4b5563;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.tp-nav-link:hover {
  color: var(--tp-blue);
}

.tp-nav-link--accent {
  color: #2563eb;
  font-weight: 700;
}

.tp-nav-link--accent:hover {
  color: #1d4ed8;
}

.tp-nav-chevron {
  font-size: 0.7rem;
  transform: translateY(1px);
}

.tp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: var(--tp-blue);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.tp-cta:hover {
  background: #e0e7ff;
}

.tp-nav-actions--auth .tp-cta--header {
  white-space: nowrap;
}

.tp-nav-actions .login-btn,
.tp-nav-actions .tp-cta,
.tp-nav-actions--auth .login-btn,
.tp-nav-actions--auth .tp-cta,
.tp-nav-actions--auth .tp-cta--header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  line-height: 1;
  text-align: center;
}

.tp-has-mega:hover .tp-mega,
.tp-has-mega:focus-within .tp-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.tp-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 100%;
  transform: translate(-50%, 8px);
  width:65vw;
  max-width: calc(100vw - 40px);
  padding: 18px 30px;
  background: #ffffff;
  border-radius: var(--tp-radius-lg);
  border: 1px solid var(--tp-border-soft);
  box-shadow: var(--tp-shadow-mega);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  column-gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease,
    transform 0.18s ease;
  overflow: hidden;
}

.tp-mega::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 34%;
  background: #f7f8ff;
  border-right: 1px solid #e5e7eb;
  pointer-events: none;
}

.tp-mega-col {
  position: relative;
  padding: 4px 0;
}

.tp-mega-col--primary {
  padding-left: 4px;
}

.tp-mega-title {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  font-weight: 700;
}

.tp-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.tp-mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 4px;
  border-radius: var(--tp-radius-sm);
  cursor: pointer;
  transition: background 0.16s ease;
}

.tp-mega-item:hover {
  background: #f1f4ff;
}

.tp-mega-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #c7d2fe;
  background: #f9fbff;
  color: var(--tp-blue);
}

.tp-icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #bfdbfe;
  font-size: 0.63rem;
  font-weight: 600;
}

.tp-mega-icon--circle {
  border-radius: 999px;
}

.tp-icon-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid var(--tp-blue);
}

.tp-icon-lines {
  width: 14px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid var(--tp-blue);
  border-left-color: transparent;
}

.tp-icon-user,
.tp-icon-cloud,
.tp-icon-badge {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid var(--tp-blue);
}

.tp-mega-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tp-text-main);
}

/* Mobile overlay - dark backdrop (direct child of body) */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile sidebar - body child, full viewport height */
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  background: #fff;
  box-shadow: 4px 0 24px rgba(15, 23, 42, 0.15);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-sidebar.is-open {
  transform: translateX(0);
}

.mobile-nav-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 12px 12px 0 auto;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-close:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1e40af;
}

.mobile-sidebar-nav {
  flex: 1;
  padding: 16px 0 24px;
  overflow-y: auto;
}

.mobile-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0 16px;
}

.mobile-sidebar-item {
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.mobile-sidebar-item:last-child {
  border-bottom: none;
}

.mobile-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.mobile-sidebar-link .chevron {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.mobile-sidebar-item.is-expanded .chevron {
  transform: rotate(180deg);
}

.mobile-sidebar-dropdown {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 8px;
  transition: max-height 0.35s ease;
}

.mobile-sidebar-item.is-expanded .mobile-sidebar-dropdown {
  max-height: 700px;
  padding: 0 0 16px 8px;
}

/* Level 2: nested item with subdropdown */
.mobile-sidebar-dropdown .mobile-sidebar-item.has-subdropdown {
  border-bottom: none;
  padding: 0;
}

.mobile-sidebar-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.mobile-sidebar-sublink .chevron {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.mobile-sidebar-item.has-subdropdown.is-expanded .chevron {
  transform: rotate(180deg);
}

.mobile-sidebar-subdropdown {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease;
}

.mobile-sidebar-item.has-subdropdown.is-expanded .mobile-sidebar-subdropdown {
  max-height: 200px;
}

.mobile-sidebar-subdropdown a {
  display: block;
  padding: 10px 0 10px 28px;
  font-size: 0.9rem;
  color: #6b7280;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-sidebar-subdropdown a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1e40af;
}

.mobile-sidebar-dropdown a {
  display: block;
  padding: 12px 0 12px 16px;
  font-size: 0.95rem;
  color: #4b5563;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-sidebar-dropdown > a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1e40af;
}

.mobile-sidebar-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 16px 24px;
  border-top: 1px solid rgba(37, 99, 235, 0.15);
}

.mobile-sidebar-actions .login-btn,
.mobile-sidebar-actions .tp-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
}

.mobile-sidebar-actions .login-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
}

.mobile-sidebar-actions .tp-cta {
  background: #fff;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.4);
}

/* Mobile: header + show sidebar */
@media (max-width: 992px) {
  .mobile-nav-overlay {
    display: block;
  }

  .mobile-sidebar {
    display: flex;
  }

  .tp-header-inner {
    padding: 12px 16px;
    gap: 16px;
    flex-wrap: nowrap;
    position: relative;
    justify-content: space-between;
  }

  .tp-logo img {
    max-height: 42px;
    height: auto;
    width: auto;
  }

  .menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: auto;
    position: relative;
    z-index: 1002;
    order: 99;
  }

  /* Hide desktop nav on mobile */
  .tp-nav-panel {
    display: none !important;
  }

  .tp-mega {
    display: none;
  }
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #dfe5e7;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-shell {
  /* width: min(1220px, calc(100% - 16px)); */
  width: 100%;
  margin: 0px auto;
  background:
    linear-gradient(180deg, #eaf1ff 0%, #dde8ff 100%);
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

@media (min-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }
}

.narrow {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 40px 0;
}

.center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  width: 100%;
}

.eyebrow.light {
  color: #93c5fd;
}

.section-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.section-subtitle {
  margin: 14px auto 0;
  color: var(--muted);
}

/* browser bar */
.browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #e5edff;
  border-bottom: 1px solid #d4e0ff;
}

.browser-left,
.browser-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.red { background: #ef7465; }
.yellow { background: #efc450; }
.green { background: #62c06c; }

.browser-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.address-pill {
  min-width: 120px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #d4e0ff;
  background: #f3f6ff;
  color: #4b5563;
  font-size: 0.8rem;
  text-align: center;
}

.browser-icon {
  width: 13px;
  height: 13px;
  border: 1.5px solid #8c98a2;
  border-radius: 50%;
}

/* buttons */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.login-btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  cursor: pointer;
}

.btn-light {
  background: #ffffff;
  color: var(--text);
  border-color: #dfe8eb;
}

.btn-light:hover {
  box-shadow: var(--shadow-sm);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.btn-outline-dark.on-dark:hover {
  background: rgba(255,255,255,0.06);
}

/* logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.footer-brand p{
  color: rgb(146, 159, 176);
  font-size: 14px;
  font-weight: 400;
}

.logo-mark {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px 0 4px 0;
  background: linear-gradient(135deg, #0f3446 20%, #59bdca 100%);
}

.logo-text {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: #f2f4ffcc;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.desktop-nav,
.desktop-actions {
  display: none;
}

/* mega menu */
.nav-item-has-mega {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link span.chevron {
  font-size: 0.7rem;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  width: 1040px;
  max-width: calc(100vw - 80px);
  padding: 20px 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
  border: 1px solid #e5ecff;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  column-gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  overflow: hidden;
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 34%;
  background: #f9fafc;
  border-right: 1px solid #e5e7eb;
  pointer-events: none;
}

.nav-item-has-mega:hover .mega-menu,
.nav-item-has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-column-title {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  font-weight: 700;
}

.mega-list {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.mega-item:hover {
  background: #f1f5ff;
}

.mega-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #f9fafb;
  border: 1px solid #c7d2fe;
  color: #2563eb;
  font-size: 0.8rem;
}

.mega-text-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.mega-text-sub {
  font-size: 0.8rem;
  color: #6b7280;
}

.mega-column {
  position: relative;
  padding: 4px 0;
}

.mega-text-title {
  font-size: 0.92rem;
  font-weight: 600;
}

.mega-text-sub {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Menu toggle - hamburger (visible on mobile only) */
.menu-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, transform 0.2s;
}

.menu-toggle:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle-bar {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  display: block;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Nav panel wrapper - desktop: inline, mobile: sidebar */
@media (min-width: 993px) {
  .tp-nav-panel {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
  }
}

.tp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-sub-link {
  display: block;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #111827;
}

.sidebar-sub-link:hover {
  background: #f2f8f9;
  color: var(--primary);
}

.sidebar-actions {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.sidebar-actions .btn {
  width: 100%;
}

.refund-banner{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#e5edff;
    padding:7px 36px;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
    margin-bottom: 10px;
  }
  
  .amount{
    color:#2563eb;
    font-weight:700;
  }
  
  .text{
    color:#1f2933;
  }

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #e3ecff;
  padding: 32px 0 40px;
}

@media (min-width: 768px) {
  .hero {
    padding: 48px 0 56px;
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -80px;
  width: 320px;
  height: 440px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.08) 25%, transparent 25%) 0 0 / 120px 120px,
    linear-gradient(315deg, rgba(37, 99, 235, 0.06) 25%, transparent 25%) 0 0 / 120px 120px;
  transform: rotate(8deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
  }
}

.hero-content h1 {
  margin: 0;
  max-width: 560px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero-copy {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
  max-width: 460px;
  width: 100%;
}

.hero-form .btn {
  white-space: nowrap;
}

.hero-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #e2eaec;
  background: #fff;
  outline: none;
}

.hero-form input:focus {
  border-color: #98d3db;
  box-shadow: 0 0 0 4px rgba(68, 182, 196, 0.1);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #17384a;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
}

@media (min-width: 640px) {
  .brand-row {
    gap: 22px;
    margin-top: 28px;
  }
}

.hero-visual {
  position: relative;
  min-height: 300px;
  padding: 0 10px;
}

@media (min-width: 640px) {
  .hero-visual {
    min-height: 340px;
  }
}

@media (min-width: 1024px) {
  .hero-visual {
    min-height: 370px;
    padding: 0;
  }
}

.dashboard-card {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  margin: 20px auto 0;
  padding: 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .dashboard-card {
    margin: 30px auto 0;
    padding: 20px;
    border-radius: 22px;
  }
}

@media (min-width: 1024px) {
  .dashboard-card {
    margin: 40px auto 0;
    padding: 22px;
    border-radius: 24px;
  }
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
}

.profile-row strong {
  display: block;
  font-size: 0.95rem;
}

.profile-row p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.invoice-box {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.invoice-box span,
.chart-header span {
  color: var(--muted);
  font-size: 0.8rem;
}

.invoice-box strong,
.chart-header strong {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--text);
}

.invoice-box small {
  color: #8b98a4;
}

.account-list {
  display: grid;
  gap: 10px;
}

.account-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #e5edef;
  background: #fff;
  font-size: 0.92rem;
}

.pay-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.credit-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(75%, 290px);
  padding: 14px 16px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

@media (max-width: 480px) {
  .credit-card {
    width: min(70%, 200px);
    padding: 12px 14px 14px;
    top: -5px;
  }

  .credit-card .card-number {
    font-size: 1.4rem;
  }

  .credit-card .card-number span {
    font-size: 0.85rem;
  }
}

@media (min-width: 640px) {
  .credit-card {
    width: min(80%, 260px);
    padding: 16px 18px 18px;
    border-radius: 18px;
  }
}

@media (min-width: 1024px) {
  .credit-card {
    width: min(84%, 290px);
    padding: 18px 20px 20px;
    border-radius: 20px;
  }
}

.mini-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  opacity: 0.86;
}

.card-number {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.card-number span {
  font-size: 1rem;
  opacity: 0.85;
  letter-spacing: 0.12em;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 54px;
}

/* panel */
.panel {
  padding: 24px 16px;
}

@media (min-width: 640px) {
  .panel {
    padding: 28px 20px;
  }
}

.panel-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.panel-heading h2 {
  margin: 0;
  max-width: 600px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.panel-copy {
  max-width: 360px;
  color: var(--muted);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  border-radius: 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  padding: 20px;
  box-shadow: 0 8px 13px rgba(70,74,85,.08);
  transition: 0.25s ease;
}

.feature-item:hover {
transform: translateY(-3px);
box-shadow: 0 16px 26px rgba(15, 34, 48, 0.05);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: #2563eb;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

.feature-item p {
  margin: 0;
  color: #fff;
  font-size: 0.93rem;
}

/* why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "stat withdraw"
      "vol chart";
  }

  .stat-card { grid-area: stat; }
  .withdraw-card { grid-area: withdraw; }
  .volatility-card { grid-area: vol; }
  .chart-card { grid-area: chart; }
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(229, 237, 240, 0.85);
  transition: 0.25s ease;
}

@media (min-width: 640px) {
  .card {
    padding: 22px;
    border-radius: 20px;
  }
}

@media (min-width: 768px) {
  .card {
    padding: 24px;
    border-radius: 22px;
  }
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgba(15, 34, 48, 0.05);
}

.stat-card h3 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.05em;
}

.stat-card p,
.volatility-card p {
  margin: 0;
  max-width: 100%;
  font-size: clamp(0.9rem, 2vw, 1.04rem);
}

@media (min-width: 640px) {
  .stat-card p,
  .volatility-card p {
    max-width: 220px;
  }
}

.withdraw-card h3,
.volatility-card h3 {
  margin: 0 0 24px;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

.withdraw-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 108px;
}

.chip {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.chip-left {
  border-radius: 16px;
  background: #2563eb;
  color: #fff;
}

.chip-right {
  border-radius: 50%;
  background: #111827;
  color: #fff;
}

.arrow-line {
  color: #a0aab2;
  font-size: 1.5rem;
}

.chart-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.chart-header small {
  color: #7d8a95;
}

.chart-area {
  position: relative;
  min-height: 180px;
  border-radius: 18px;
  background:
    linear-gradient(to top, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0)),
    linear-gradient(#e0ebff 1px, transparent 1px);
  background-size: 100% 100%, 100% 44px;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  height: 3px;
  background: #2563eb;
  border-radius: 999px;
}

.chart-line.one {
  width: 120px;
  left: 8%;
  bottom: 54px;
  transform: rotate(-22deg);
}

.chart-line.two {
  width: 220px;
  left: 28%;
  bottom: 88px;
  transform: rotate(-10deg);
}

.chart-labels {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  color: #7f8e99;
  font-size: 0.82rem;
}

/* dark step section */
.section-dark {
  background: linear-gradient(180deg, #0b1f3b 0%, #111827 100%);
  color: #fff;
}

.section-title.light {
  color: #fff;
  max-width: 760px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card {
  min-height: 160px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.25s ease;
}

@media (min-width: 640px) {
  .step-card {
    min-height: 180px;
    padding: 22px;
  }
}

@media (min-width: 768px) {
  .step-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 18px;
  }
}

.step-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
}

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,0.62);
}

.step-card h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
}

.step-card p {
  margin: 0;
  color: rgba(230, 239, 244, 0.74);
  font-size: 0.92rem;
  max-width: 240px;
}

/* mission */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 34px;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.stat-box strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.stat-box span {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
}

.choose-plan {
  margin-top: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 480px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.price-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-bottom strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.price-bottom span {
  font-size: 1.5rem;
}

.price-card-light {
  background: #fff;
  color: #111827;
}

.price-card-premium {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0)),
    linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
}

.price-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 25%, transparent 25%) 0 0 / 120px 120px,
    linear-gradient(315deg, rgba(255,255,255,0.06) 25%, transparent 25%) 0 0 / 120px 120px;
  pointer-events: none;
}

/* cta */
.cta-box {
  background: linear-gradient(180deg, #1d4ed8 0%, #1e293b 100%);
  color: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 480px) {
  .cta-box {
    padding: 26px 22px;
    border-radius: 22px;
  }
}

.cta-content h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.cta-content p:last-child {
  margin: 12px 0 0;
  max-width: 520px;
  color: rgba(231, 240, 244, 0.76);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 480px) {
  .cta-actions {
    flex-direction: row;
    align-items: center;
  }
}

/* footer */
.site-footer {
  position: relative;
  padding: 64px 0 28px;
  background: linear-gradient(165deg, #071426 0%, #0b1f3b 42%, #0d2847 100%);
  z-index: 1;
  overflow: hidden;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.footer-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.footer-shape img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
  width: min(120%, 1400px);
  max-width: none;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(1.1);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px 28px;
  padding-top: 8px;
}

.footer-brand .logo-text {
  color: #fff;
  display: inline-block;
}

.footer-brand .logo-text img {
  height: 60px;
  width: auto;
  background-color: #fff;
  display: block;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 22rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.88);
}

.footer-contact {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  max-width: 22rem;
  display: grid;
  gap: 12px;
}

.footer-contact__item {
  display: grid;
  gap: 3px;
}

.footer-contact__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.footer-contact__item a {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.92);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}

.footer-contact__item a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  position: relative;
  z-index: 1;
}

.footer-links h3 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f1f5f9;
}

.footer-links ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 0px;
  list-style: none;
  color: #fff;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-links--social .footer-social-tagline {
  margin: 0 0 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.9);
  max-width: 16rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons a,
.social-icons__link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-icons a:hover,
.social-icons__link:hover {
  background: rgba(37, 99, 235, 0.35);
  border-color: rgba(96, 165, 250, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

.social-icons__link svg {
  display: block;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.75);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
  }
}

.footer-copyright {
  margin: 0;
}

.footer-company-note {
  display: block;
  /* width: 100%; */
  margin: 0px auto 0;
  text-align: center;
  font-size: 0.7125rem;
  line-height: 1.5;
  color: rgba(203, 213, 225, 0.6);
}
.footer-bottom-inner p {
  font-size: 11px;
}

.auth-modern-card form {
  text-align: start !important;
}

.footer-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}

.footer-bottom-nav a {
  color: rgba(203, 213, 225, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-bottom-nav a:hover {
  color: #fff;
}

/* ========== Footer Creative ========== */
.footer-creative {
  padding: 0;
  background: transparent;
}

.footer-creative-cta {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  padding: 32px 0;
}

@media (min-width: 640px) {
  .footer-creative-cta {
    padding: 40px 0;
  }
}

@media (min-width: 768px) {
  .footer-creative-cta {
    padding: 48px 0;
  }
}

.footer-creative-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}

@media (min-width: 992px) {
  .footer-creative-cta-inner {
    flex-direction: row;
    gap: 32px;
    text-align: left;
  }
}

.footer-creative-cta h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-creative-cta p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-creative-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.footer-creative-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  outline: none;
}

.footer-creative-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-creative-form input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.footer-creative-form .btn-primary {
  padding: 14px 28px;
  background: #fff;
  color: #6366f1;
  border: none;
}

.footer-creative-form .btn-primary:hover {
  background: #f1f5f9;
}

.footer-creative-main {
  position: relative;
  padding: 64px 0 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.footer-creative:not(:has(.footer-creative-cta)) {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  /* padding: 64px 0 0; */
}

.footer-creative-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.footer-creative .footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-top: 0;
}

.footer-creative .footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 100%;
}

@media (min-width: 640px) {
  .footer-creative .footer-brand p {
    font-size: 0.95rem;
    max-width: 280px;
  }
}

.footer-creative .footer-links h3 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.footer-creative .footer-links ul {
  padding-bottom: 0;
}

.footer-creative .footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-creative .footer-links a:hover {
  color: #a78bfa;
}

.footer-creative .social-icons a {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s;
}

.footer-creative .social-icons a:hover {
  background: #6366f1;
  color: #fff;
  border-color: #6366f1;
  transform: translateY(-2px);
}

.footer-creative .footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-creative .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-creative-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-creative-form {
    min-width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .footer-creative .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-creative-cta {
    padding: 36px 0;
  }

  .footer-creative-form {
    flex-direction: column;
  }
}


@media (max-width: 768px) {
  .refund-banner {
    font-size: 12px !important;
    padding: 7px 20px !important;
    flex-wrap: wrap;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .refund-banner {
    font-size: 11px !important;
    padding: 6px 14px !important;
  }

  .refund-banner .amount {
    font-size: 0.95em;
  }
}

/* responsive */
@media (min-width: 640px) {
  .hero-form {
    flex-direction: row;
  }

  .hero-form input {
    flex: 1;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .cta-box {
    grid-template-columns: 1.3fr auto;
    align-items: center;
  }

  .panel {
    padding: 38px 0px;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer .footer-links--social {
    grid-column: 1 / -1;
  }
}

@media (min-width: 993px) {
  .menu-toggle {
    display: none !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
    align-items: start;
  }

  .panel-heading {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 28px 0;
  }

  .hero-visual {
    min-height: 450px;
  }

  .dashboard-card {
    margin-top: 64px;
  }

  .credit-card {
    top: 14px;
    right: 12px;
  }
}



/* company dropdown */

.tp-has-dropdown{
  position:relative;
  }
  
  .tp-dropdown{
  
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%) translateY(10px);
  
  background:#fff;
  border-radius:6px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  
  padding:10px 5px;
  min-width:250px;
  
  opacity:0;
  visibility:hidden;
  transition:0.25s;
  
  }
  
  .tp-dropdown a {
  text-align: start;
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #1e293b;
  text-decoration: none;
}

.tp-dropdown a:hover {
  background: #f3f6ff;
  color: #2563eb;
}

.tp-dropdown-group {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.tp-dropdown-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tp-dropdown-title {
  display: block;
  padding: 10px 18px 6px;
  font-size: 14px;
  font-weight: 400;
  /* text-transform: uppercase; */
  /* letter-spacing: 0.08em; */
  color: #1e293b;
}

.tp-dropdown-group a {
  padding-left: 28px;
  font-size: 13px;
}

/* Multi-level: sub-dropdown flies out to the right */
.tp-dropdown-item.tp-has-subdropdown {
  position: relative;
  padding: 0;
}

.tp-dropdown-item.tp-has-subdropdown .tp-dropdown-title {
  padding: 10px 18px;
  margin: 0;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-dropdown-sub {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 2px;
  min-width: 250px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.tp-dropdown-item.tp-has-subdropdown:hover .tp-dropdown-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.tp-dropdown-sub a {
  padding: 10px 18px;
  font-size: 13px;
}

.tp-dropdown-placeholder {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #94a3b8;
}

.mobile-sidebar-placeholder {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #94a3b8;
}
  
.tp-has-dropdown:hover .tp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Disable hover dropdown on mobile - use accordion instead */
@media (max-width: 900px) {
  .tp-has-dropdown:hover .tp-dropdown {
    max-height: 0;
  }
}

.features.section {
  background: #fff;
}

.mission.section {
  background: linear-gradient(135.63deg, #fff7dd -0.03%, #1d4ed812 34.41%);
}

.testimonials.section {
  background: #EAF8FF;
  position: relative;
}

.testimonials.section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url('../image/02.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .1;
  pointer-events: none;
}

.testimonials.section .container {
  position: relative;
  z-index: 1;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .testimonial-header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
  }
}
  
.testimonial-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .testimonial-nav {
    justify-content: flex-end;
  }
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.testimonial-nav button:hover:not(:disabled) {
  background: #f1f5f9;
}

.testimonial-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

@media (min-width: 480px) {
  .testimonial-nav button {
    width: 45px;
    height: 45px;
  }
}
  
.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  padding: 4px 0;
  will-change: transform;
}

@media (min-width: 768px) {
  .testimonial-track {
    gap: 30px;
  }
}

.testimonial-card {
  flex: 0 0 auto;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 24px;
    border-radius: 18px;
  }
}

.testimonial-card h3 {
  font-size: 1.1rem;
  margin: 0 0 12px;
}

.testimonial-card p {
  color: #555;
  font-size: 0.95rem;
  margin: 0 0 20px;
  line-height: 1.5;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user span {
  display: block;
  font-size: 0.85rem;
  color: #777;
}

@media (min-width: 640px) {
  .testimonial-card h3 {
    font-size: 1.15rem;
  }

  .testimonial-card p {
    font-size: 1rem;
  }
}

@media (min-width: 900px) {
  .testimonial-card {
    padding: 26px;
  }

  .testimonial-card h3 {
    font-size: 1.25rem;
  }

  .testimonial-user img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    gap: 16px;
  }
}

/* ========== ITR Dashboard (about-page) ========== */

.itr-dashboard {
  padding: 24px 0 36px;
  background: #f8f9fa;
}

.itr-dashboard-title {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  font-weight: 700;
  color: #1e293b;
}

@media (min-width: 768px) {
  .itr-dashboard {
    padding: 36px 0 48px;
  }

  .itr-dashboard-title {
    margin: 0 0 24px;
  }
}

.itr-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 900px) {
  .itr-dashboard-grid {
    grid-template-columns: 1fr 320px;
    gap: 24px;
    margin-bottom: 28px;
  }
}

.itr-main-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dbeafe;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.itr-main-card-inner {
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  gap: 24px;
}

@media (min-width: 640px) {
  .itr-main-card-inner {
    padding: 24px 24px;
    gap: 28px;
  }
}

@media (min-width: 900px) {
  .itr-main-card-inner {
    flex-direction: row;
    padding: 28px 32px;
    gap: 32px;
  }
}

.itr-main-content {
  flex: 1;
  min-width: 0;
}

.itr-filing-status {
  margin: 0 0 8px;
  font-size: 0.8rem;
  color: #64748b;
}

.itr-greeting {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: #64748b;
}

.itr-main-heading {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .itr-main-heading {
    margin: 0 0 20px;
  }
}

.itr-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.itr-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.itr-step.itr-step-active {
  color: #0f172a;
}

.itr-step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 2px solid #e2e8f0;
}

.itr-step-active .itr-step-dot {
  background: #f59e0b;
  border-color: #f59e0b;
  box-shadow: inset 0 0 0 4px #fff;
}

.itr-step-line {
  width: 24px;
  height: 0;
  border-top: 2px dashed #cbd5e1;
}

.itr-steps-link {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
}

.itr-steps-link:hover {
  text-decoration: underline;
}

.itr-continue-btn {
  padding: 12px 28px;
  font-size: 1rem;
}

.itr-main-illustration {
  position: relative;
  width: 100%;
  min-width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .itr-main-illustration {
    height: 140px;
  }
}

@media (min-width: 900px) {
  .itr-main-illustration {
    width: 180px;
    min-width: 180px;
    height: auto;
  }
}

.itr-illus-monitor,
.itr-illus-doc,
.itr-illus-calc {
  position: absolute;
  width: 44px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.itr-illus-monitor::before {
  content: "▢";
  font-size: 1.4rem;
}

.itr-illus-doc::before {
  content: "▤";
  font-size: 1.2rem;
}

.itr-illus-calc::before {
  content: "≡";
  font-size: 1.1rem;
}

.itr-illus-monitor { top: 20%; left: 15%; }
.itr-illus-doc { top: 45%; right: 20%; }
.itr-illus-calc { bottom: 25%; left: 25%; }

.itr-illus-percent {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.25);
}

.itr-main-footer {
  padding: 12px 16px;
  background: #eff6ff;
  font-size: 0.85rem;
  color: #475569;
}

@media (min-width: 640px) {
  .itr-main-footer {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}

@media (min-width: 900px) {
  .itr-main-footer {
    padding: 14px 24px;
  }
}

.itr-main-footer a {
  color: #2563eb;
  text-decoration: none;
}

.itr-main-footer a:hover {
  text-decoration: underline;
}

.itr-sidebar-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.itr-sidebar-card {
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dbeafe;
  transition: box-shadow 0.2s ease;
}

@media (min-width: 640px) {
  .itr-sidebar-card {
    padding: 20px;
  }
}

.itr-sidebar-card:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.itr-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.itr-icon-chat {
  background: #dbeafe;
  color: #2563eb;
}

.itr-icon-chat::before {
  content: "💬";
  font-size: 1.3rem;
}

.itr-icon-shield {
  background: #d1fae5;
  color: #059669;
}

.itr-icon-shield::before {
  content: "🛡";
  font-size: 1.2rem;
}

.itr-card-guide .itr-card-icon {
  background: #dbeafe;
  color: #2563eb;
  border-radius: 50%;
}

.itr-icon-play::before {
  content: "▶";
  font-size: 0.9rem;
  color: #2563eb;
}

.itr-sidebar-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.itr-sidebar-card p {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}

.itr-sidebar-card a {
  font-size: 0.88rem;
  color: #2563eb;
  text-decoration: none;
}

.itr-sidebar-card a:hover {
  text-decoration: underline;
}

.itr-card-security {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.itr-card-guide {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.itr-trust-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px solid #e2e8f0;
}

.itr-badges-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .itr-badges-row {
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .itr-trust-badges {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    margin-bottom: 24px;
  }
}

.itr-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.itr-badge-handshake,
.itr-badge-shield {
  font-size: 1.2rem;
}

.itr-trust-text {
  margin: 0;
  font-size: clamp(0.8rem, 1.5vw, 0.88rem);
  color: #64748b;
  max-width: 100%;
}

@media (min-width: 768px) {
  .itr-trust-text {
    max-width: 420px;
  }
}

.itr-nav-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .itr-nav-cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.itr-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 640px) {
  .itr-nav-card {
    gap: 20px;
    padding: 22px 20px;
  }
}

@media (min-width: 768px) {
  .itr-nav-card {
    padding: 24px;
  }
}

.itr-nav-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: #c7d2fe;
}

.itr-nav-returns {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.itr-nav-profile {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.itr-nav-pricing {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

@media (min-width: 640px) {
  .itr-nav-pricing {
    grid-column: 1 / -1;
  }
}

.itr-nav-icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2563eb;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .itr-nav-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

.itr-nav-icon-rupee {
  font-size: 1.5rem;
}

.itr-nav-content {
  flex: 1;
  min-width: 0;
}

.itr-nav-content h3 {
  margin: 0 0 4px;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: #1e293b;
}

.itr-nav-content p {
  margin: 0;
  font-size: clamp(0.8rem, 1.5vw, 0.88rem);
  color: #64748b;
  line-height: 1.45;
}

.itr-nav-chevron {
  font-size: 1.2rem;
  color: #94a3b8;
}

.itr-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2563eb !important;
}

@media (max-width: 600px) {
  .itr-stepper {
    flex-direction: column;
    align-items: flex-start;
  }

  .itr-step-line {
    width: 0;
    height: 16px;
    border-left: 2px dashed #cbd5e1;
    border-top: none;
    margin-left: 9px;
  }
}

/* ========== About page ========== */

.about-page {
  padding-bottom: 0;
}

.about-hero {
  position: relative;
  padding: 36px 0 40px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e0ebff 0%, #dbeafe 35%, #eff6ff 70%, #e0e7ff 100%);
  opacity: 0.95;
}

.about-hero-bg::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.about-eyebrow {
  margin-bottom: 16px;
}

.about-hero-title {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.about-hero-copy {
  margin: 0;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--muted);
}

.about-section {
  padding: 64px 0;
}

.about-mission {
  padding-top: 48px;
  background-color: #fff;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.about-card {
  padding: 32px 28px;
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.about-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.about-card-gradient {
  background: linear-gradient(145deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.25);
}

.about-card-gradient .about-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.about-card-gradient h2,
.about-card-light h2 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-card-gradient p,
.about-card-light p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.95;
}

.about-card-light {
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.about-card-light .about-card-icon {
  background: #e0ebff;
  color: var(--primary);
}

.about-card-light h2 {
  color: var(--text);
}

.about-card-light p {
  color: var(--muted);
}

.about-values .section-title {
  margin-bottom: 36px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-value-card {
  padding: 28px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
  border-color: #c7d2fe;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.about-value-card h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.about-value-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.about-stats {
  position: relative;
  padding: 56px 0;
}

.about-stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.about-stats .container {
  position: relative;
  z-index: 1;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-stat {
  padding: 28px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}

.about-stat-number {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
}

.about-stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-story {
  padding: 64px 0;
  background: #f8fafc;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-story-content .eyebrow {
  margin-bottom: 12px;
}

.about-story-content .section-title {
  margin-bottom: 20px;
  text-align: left;
}

.about-story-content p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

.about-story-card {
  padding: 32px 28px;
  background: linear-gradient(145deg, #fff 0%, #f1f5f9 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.1);
}

.about-story-card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-story-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.about-cta {
  padding: 72px 0 80px;
}

.about-cta-box {
  padding: 48px 40px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.3);
  transition: box-shadow 0.25s ease;
}

.about-cta-box:hover {
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.35);
}

.about-cta-box h2 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.about-cta-box p {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.about-cta-actions .btn-primary {
  background: #fff;
  color: var(--primary);
}

.about-cta-actions .btn-primary:hover {
  background: #f1f5f9;
}

.about-cta-actions .btn-light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.about-cta-actions .btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 48px 0 56px;
  }

  .about-section {
    padding: 48px 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-box {
    padding: 36px 24px;
  }

  .about-cta-actions {
    flex-direction: column;
  }

  .about-cta-actions .btn {
    width: 100%;
  }
}

/* ========== Careers page ========== */

.careers-page {
  padding-bottom: 0;
}

.careers-hero {
  position: relative;
  padding: 36px 0 40px;
  overflow: hidden;
}

.careers-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 40%, #ede9fe 70%, #e0ebff 100%);
  opacity: 0.98;
}

.careers-hero-bg::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.careers-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.careers-eyebrow {
  margin-bottom: 16px;
}

.careers-hero-title {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.careers-hero-copy {
  margin: 0;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--muted);
}

.careers-section {
  padding: 64px 0;
}

.careers-why .section-title {
  margin-bottom: 40px;
}

.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.careers-benefit-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.careers-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.1);
  border-color: #c7d2fe;
}

.careers-benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.careers-benefit-card h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.careers-benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.careers-roles .section-title {
  margin-bottom: 32px;
}

.careers-roles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.careers-role-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.careers-role-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.12);
  border-color: #bfdbfe;
  background: #fafbff;
}

.careers-role-main h3 {
  margin: 0 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.careers-role-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.careers-role-arrow {
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.careers-role-card:hover .careers-role-arrow {
  transform: translateX(4px);
}

.careers-life {
  position: relative;
  padding: 64px 0;
}

.careers-life-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.careers-life .container {
  position: relative;
  z-index: 1;
}

.careers-life-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.careers-life-content .eyebrow {
  margin-bottom: 12px;
}

.careers-life-title {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.careers-life-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.careers-life-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.careers-life-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.careers-life-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.careers-life-card-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #93c5fd;
  margin-bottom: 10px;
}

.careers-life-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.careers-cta {
  padding: 72px 0 80px;
}

.careers-cta-box {
  padding: 48px 40px;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  text-align: center;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
}

.careers-cta-box:hover {
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.08);
  border-color: #c7d2fe;
}

.careers-cta-box h2 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.careers-cta-box p {
  margin: 0 0 28px;
  font-size: 1.02rem;
  color: var(--muted);
}

.careers-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 900px) {
  .careers-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-life-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .careers-life-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .careers-hero {
    padding: 48px 0 56px;
  }

  .careers-section {
    padding: 48px 0;
  }

  .careers-why-grid {
    grid-template-columns: 1fr;
  }

  .careers-role-card {
    padding: 18px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .careers-role-arrow {
    width: 100%;
    text-align: right;
  }

  .careers-cta-box {
    padding: 36px 24px;
  }

  .careers-cta-actions {
    flex-direction: column;
  }

  .careers-cta-actions .btn {
    width: 100%;
  }
}

/* ========== Our Team page ========== */

.team-page {
  padding-bottom: 0;
}

.team-hero {
  position: relative;
  padding: 36px 0 40px;
  overflow: hidden;
}

.team-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e0ebff 0%, #dbeafe 35%, #ede9fe 60%, #e0e7ff 100%);
  opacity: 0.96;
}

.team-hero-bg::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -8%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.team-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.team-eyebrow {
  margin-bottom: 16px;
}

.team-hero-title {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.team-hero-copy {
  margin: 0;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--muted);
}

.team-section {
  padding: 64px 0;
}

.team-leadership .section-title {
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.team-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.12);
  border-color: #c7d2fe;
}

.team-card-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #e0ebff 0%, #dbeafe 100%);
}

.team-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin: 0 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.team-card-role {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.team-card-bio {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.team-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.team-card-link:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.team-teams .section-title {
  margin-bottom: 28px;
}

.team-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.team-pill {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.team-pill:hover {
  background: #f8fafc;
  border-color: #c7d2fe;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.team-teams-copy {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
}

.team-cta {
  padding: 72px 0 80px;
}

.team-cta-box {
  padding: 48px 40px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.28);
  transition: box-shadow 0.25s ease;
}

.team-cta-box:hover {
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.35);
}

.team-cta-box h2 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.team-cta-box p {
  margin: 0 0 24px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
}

.team-cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
}

.team-cta-box .btn-primary:hover {
  background: #f1f5f9;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-hero {
    padding: 48px 0 56px;
  }

  .team-section {
    padding: 48px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-cta-box {
    padding: 36px 24px;
  }

  .team-cta-box .btn {
    width: 100%;
  }
}

/* ========== Press page ========== */

.press-page {
  padding-bottom: 0;
}

.press-hero {
  position: relative;
  padding: 36px 0 40px;
  overflow: hidden;
}

.press-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 40%, #f5f3ff 70%, #eff6ff 100%);
  opacity: 0.98;
}

.press-hero-bg::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 45%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.press-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.press-eyebrow {
  margin-bottom: 16px;
}

.press-hero-title {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.press-hero-copy {
  margin: 0;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--muted);
}

.press-section {
  padding: 64px 0;
}

.press-coverage .section-title {
  margin-bottom: 36px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.press-card {
  display: block;
  padding: 28px 26px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12);
  border-color: #c7d2fe;
}

.press-card:hover .press-card-link {
  color: var(--primary);
}

.press-card-source {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 6px;
}

.press-card-date {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.press-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.press-card p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.press-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.press-featured {
  padding: 56px 0;
  background: #f8fafc;
}

.press-featured-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
  max-width: 800px;
  margin: 0 auto;
}

.press-featured-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.press-featured-name:hover {
  color: var(--primary);
  opacity: 1;
}

.press-kit {
  padding: 64px 0;
}

.press-kit-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 36px;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
}

.press-kit-inner:hover {
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.08);
  border-color: #c7d2fe;
}

.press-kit-content h2 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.press-kit-content p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.press-kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.press-kit-card {
  padding: 24px 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-kit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.press-kit-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
}

.press-kit-card p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

.press-kit-card p:last-child {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.press-cta {
  padding: 72px 0 80px;
}

.press-cta-box {
  padding: 48px 40px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.28);
  transition: box-shadow 0.25s ease;
}

.press-cta-box:hover {
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.35);
}

.press-cta-box h2 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.press-cta-box p {
  margin: 0 0 24px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
}

.press-cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
}

.press-cta-box .btn-primary:hover {
  background: #f1f5f9;
}

@media (max-width: 900px) {
  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-kit-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .press-hero {
    padding: 48px 0 56px;
  }

  .press-section {
    padding: 48px 0;
  }

  .press-featured-logos {
    gap: 24px 32px;
  }

  .press-kit-actions {
    flex-direction: column;
  }

  .press-kit-actions .btn {
    width: 100%;
  }

  .press-cta-box {
    padding: 36px 24px;
  }

  .press-cta-box .btn {
    width: 100%;
  }
}

/* ========== Contact page ========== */

.contact-page {
  padding-bottom: 0;
}

.contact-hero {
  position: relative;
  padding: 36px 0 40px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e0ebff 0%, #dbeafe 35%, #e0e7ff 65%, #eff6ff 100%);
  opacity: 0.98;
}

.contact-hero-bg::after {
  content: "";
  position: absolute;
  top: 15%;
  left: -5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-eyebrow {
  margin-bottom: 16px;
}

.contact-hero-title {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.contact-hero-copy {
  margin: 0;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-section {
  padding: 64px 0;
}

.contact-channels .section-title {
  margin-bottom: 36px;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-channel-card {
  display: block;
  padding: 28px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12);
  border-color: #c7d2fe;
}

.contact-channel-card:hover .contact-channel-email {
  color: var(--primary);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.contact-channel-card h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.contact-channel-card p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.contact-channel-email {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-form-section {
  background: #f8fafc;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 40px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
}

.contact-form-wrap:hover {
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.08);
  border-color: #c7d2fe;
}

.contact-form-intro .eyebrow {
  margin-bottom: 12px;
}

.contact-form-intro h2 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.contact-form-intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.contact-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.98rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-input::placeholder {
  color: #9ca3af;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit {
  margin-top: 8px;
  align-self: flex-start;
}

.contact-offices {
  position: relative;
  padding: 64px 0;
}

.contact-offices-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.contact-offices .container {
  position: relative;
  z-index: 1;
}

.contact-offices-title {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
}

.contact-offices-copy {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-office-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-office-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.contact-office-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
  margin-bottom: 10px;
}

.contact-office-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.contact-cta {
  padding:36px 0 40px;
}

.contact-cta-box {
  padding: 48px 40px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.28);
  transition: box-shadow 0.25s ease;
}

.contact-cta-box:hover {
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.35);
}

.contact-cta-box h2 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.contact-cta-box p {
  margin: 0 0 24px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
  max-width: 200px;
  margin: 0 auto;
}

.contact-cta-box .btn-primary:hover {
  background: #f1f5f9;
}

@media (max-width: 900px) {
  .contact-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrap {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 48px 0 56px;
  }

  .contact-section {
    padding: 48px 0;
  }

  .contact-channels-grid {
    grid-template-columns: 1fr;
  }

  .contact-offices-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-cta-box {
    padding: 36px 24px;
  }

  .contact-cta-box .btn {
    width: 100%;
  }
}

  .pricing-hero{
  padding:100px 0;
  text-align:center;
  background:#f5f7fb;
  }
  
  .pricing-hero h1{
  font-size:40px;
  margin-bottom:10px;
  }
  
  .pricing-section{
  padding:0px 0 40px;
  }
  
  .pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  }
  
  .pricing-card{
  background:#fff;
  padding:40px 30px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  position:relative;
  transition:0.3s;
  }
  
  .pricing-card:hover{
  transform:translateY(-8px);
  }
  
  .price{
  font-size:34px;
  margin:20px 0;
  }
  
  .price span{
  font-size:14px;
  color:#777;
  }
  
  .pricing-card ul{
  list-style:none;
  padding:0;
  margin:20px 0;
  }
  
  .pricing-card ul li{
  margin:10px 0;
  }
  
  .pricing-btn{
  display:inline-block;
  padding:12px 28px;
  background:#2563eb;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  }
  
  .popular{
  border:2px solid #2563eb;
  }
  
  .badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:#2563eb;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  }
  
  .pricing-features{
  padding:80px 0;
  background:#f7f9fc;
  }
  
  .pricing-features table{
  width:100%;
  border-collapse:collapse;
  margin-top:30px;
  }
  
  .pricing-features th,
  .pricing-features td{
  padding:15px;
  border:1px solid #eee;
  text-align:center;
  }
  
  .pricing-faq{
  padding:80px 0;
  }
  
  .faq-item{
  margin-bottom:20px;
  }
  
  .pricing-cta{
  padding:80px 0;
  text-align:center;
  background:#2563eb;
  color:#fff;
  }
  
  .cta-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 30px;
  background:#fff;
  color:#2563eb;
  border-radius:30px;
  text-decoration:none;
  }


  /* GRID */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:50px;
}

@media(max-width:992px){
  .pricing-grid{
    grid-template-columns:1fr;
  }
}

/* CARD */
.pricing-card{
  background:#fff;
  padding:35px 25px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.4s;
  text-align:center;
  position:relative;
}

.pricing-card:hover{
  transform:translateY(-10px) scale(1.02);
}

/* CENTER CARD */
.pricing-card.popular{
  border:2px solid #4f46e5;
  transform:scale(1.05);
}

/* BADGE */
.badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:#4f46e5;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
}

/* TEXT */
.pricing-card h3{
  font-weight:700;
  margin-bottom:10px;
}

.sub{
  color:#6b7280;
  font-size:14px;
}

/* PRICE */
.price{
  font-size:36px;
  font-weight:800;
  color:#4f46e5;
  margin:15px 0;
}

/* LIST */
.pricing-card ul{
  list-style:none;
  padding:0;
  margin:20px 0;
}

.pricing-card ul li{
  margin:10px 0;
  color:#444;
}

/* BUTTON */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  border-radius:10px;
  font-weight:600;
  line-height:1;
  text-align:center;
  text-decoration:none;
  width: max-content;
  margin: 0 auto;
  border: 0;
}

.btn-primary{
  background:#4f46e5;
  color:#fff;
}

.btn-light{
  background:#eef2ff;
  color:#4f46e5;
}


/* TABS */
.pricing-tabs{
  display:flex;
  justify-content:center;
  gap:15px;
  margin:40px 0;
}

.tab-btn{
  padding:10px 20px;
  border:none;
  background:#e5e7eb;
  border-radius:30px;
  cursor:pointer;
  font-weight:600;
}

.tab-btn.active{
  background:#4f46e5;
  color:#fff;
}

/* CONTENT */
.tab-content{
  display:none;
}
.tab-content.active{
  display:block;
}
/* GRID */
.tax-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:40px;
}

@media(max-width:992px){
  .tax-card-grid{
    grid-template-columns:1fr;
  }
}

/* CARD */
.tax-card{
  background:#f5f5f5;
  padding:30px;
  border-radius:15px;
  border:1px solid #ddd;
  transition:0.3s;
}

.tax-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* TITLE */
.tax-card h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}

/* STARTING TEXT */
.starting{
  color:#f59e0b;
  font-weight:600;
  font-size:14px;
}

/* PRICE */
.price{
  color:#0ea5b7;
  font-size:34px;
  font-weight:800;
  margin:5px 0;
}

/* NOTE */
.note{
  font-size:14px;
  color:#444;
}

/* DIVIDER */
.divider{
  height:1px;
  background:#ccc;
  margin:20px 0;
}

/* SUBTITLE */
.tax-card h4{
  color:#22c55e;
  font-size:14px;
  margin-bottom:15px;
  font-weight:700;
}

/* LIST */
.tax-card ul{
  list-style:none;
  padding:0;
}

.tax-card ul li{
  margin-bottom:12px;
  padding-left:28px;
  position:relative;
  font-size:15px;
}

/* CHECK ICON */
.tax-card ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#0ea5b7;
  font-weight:bold;
}

.buy-btn{
  display:block;
  text-align:center;
  background:#4f46e5;
  color:#fff;
  padding:12px;
  border-radius:10px;
  margin-top:15px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.buy-btn:hover{
  background:#3730a3;
}

/* ========== Personal Info Section (Continue Filing) ========== */

.personal-info-section {
  padding: 20px 0 40px;
  background: #f1f5f9;
  min-height: 100vh;
}

.personal-info-section[hidden] {
  display: none !important;
}

.personal-info-container {
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .personal-info-section {
    padding: 32px 0 60px;
  }
}

.personal-info-back {
  background: none;
  border: 0;
  font-size: 0.9rem;
  color: #2563eb;
  cursor: pointer;
  padding: 12px 0;
  margin-bottom: 16px;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
}

.personal-info-back:hover {
  text-decoration: underline;
}

.personal-info-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.personal-info-tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .personal-info-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.personal-info-tab {
  padding: 10px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  background: #fff;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .personal-info-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.personal-info-tab:hover {
  color: #1e293b;
  border-color: #cbd5e1;
}

.personal-info-tab.active {
  color: #fff;
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.personal-info-tab.active:hover {
  color: #fff;
  background: #1e40af;
  border-color: #1e40af;
}

.filing-tab-line {
  height: 2px;
  background: #2563eb;
  margin-bottom: 24px;
}

.filing-tab-panel {
  display: none;
}

.filing-tab-panel.active {
  display: block;
}

.filing-panel-placeholder {
  padding: 40px;
  text-align: center;
  color: #64748b;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.personal-info-banner {
  background: #dbeafe;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #1e293b;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .personal-info-banner {
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
  }
}

.personal-info-banner a {
  color: #2563eb;
  font-weight: 600;
}

.personal-info-banner a:hover {
  text-decoration: underline;
}

.personal-info-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .personal-info-layout {
    grid-template-columns: 1fr 280px;
    gap: 28px;
  }
}

.personal-info-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.personal-info-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .personal-info-card {
    padding: 22px 24px;
  }
}

@media (min-width: 900px) {
  .personal-info-card {
    padding: 24px 28px;
  }
}

.personal-info-card-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.personal-info-icon {
  font-size: 1.2rem;
}

.personal-info-card-desc {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.personal-info-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.personal-info-fields .field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.personal-info-fields label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}

.personal-info-fields .required {
  color: #dc2626;
}

.personal-info-fields input {
  padding: 12px 14px;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
  color: #1e293b;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

@media (min-width: 640px) {
  .personal-info-fields input {
    padding: 10px 14px;
    min-height: auto;
    font-size: 0.95rem;
  }
}

.personal-info-fields input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.personal-info-fields input::placeholder {
  color: #94a3b8;
}

.personal-info-fields input.with-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 42px;
}

.name-row,
.address-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .name-row,
  .address-row {
    flex-direction: row;
  }
}

.name-row input,
.address-row input {
  flex: 1;
}

.address-row input:first-child {
  flex: 0.8;
}

.personal-info-fields small {
  font-size: 0.8rem;
  color: #64748b;
}

.personal-info-fields small a {
  color: #2563eb;
}

.personal-info-fields small a:hover {
  text-decoration: underline;
}

.optional-link {
  font-size: 0.9rem;
  color: #2563eb;
  margin-top: 4px;
}

.optional-link:hover {
  text-decoration: underline;
}

.personal-info-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.personal-info-next {
  padding: 12px 28px;
  font-size: 1rem;
}

.personal-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

@media (min-width: 900px) {
  .personal-info-sidebar {
    align-self: flex-start;
  }
}

.personal-sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.personal-sidebar-card h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.personal-sidebar-card a {
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 500;
}

.personal-sidebar-card a:hover {
  text-decoration: underline;
}

.personal-sidebar-expert {
  text-align: center;
}

.personal-sidebar-expert .expert-visual {
  width: 80px;
  height: 60px;
  margin: 12px auto;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-radius: 10px;
}

.personal-sidebar-expert .btn-small {
  padding: 10px 20px;
  font-size: 0.88rem;
  width: 100%;
}

@media (min-width: 640px) and (max-width: 900px) {
  .personal-info-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .personal-sidebar-card {
    flex: 1;
    min-width: min(200px, 100%);
  }
}

/* ========== Income Sources Panel ========== */

.income-sources-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .income-sources-layout {
    grid-template-columns: 1fr 280px;
    gap: 28px;
  }
}

.income-sources-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.income-source-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

@media (min-width: 640px) {
  .income-source-card {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 22px;
  }
}

@media (min-width: 900px) {
  .income-source-card {
    flex-wrap: nowrap;
    padding: 22px 24px;
  }
}

.income-source-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.income-icon-salary { background: #ede9fe; color: #7c3aed; }
.income-icon-interest { background: #dbeafe; color: #2563eb; font-weight: 700; font-size: 1.2rem; }
.income-icon-gains { background: #d1fae5; color: #059669; }
.income-icon-house { background: #fee2e2; color: #dc2626; }
.income-icon-dividend { background: #ffedd5; color: #ea580c; }
.income-icon-professional { background: #ede9fe; color: #7c3aed; }

.income-source-content {
  flex: 1;
  min-width: 0;
}

.income-source-content h3 {
  margin: 0 0 6px;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: #1e293b;
}

.income-source-content p {
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  color: #64748b;
  line-height: 1.5;
}

.income-source-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  width: 100%;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .income-source-actions {
    width: auto;
    margin-left: 68px;
  }
}

@media (min-width: 900px) {
  .income-source-actions {
    margin-left: 0;
    width: auto;
  }
}

.income-link {
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 500;
}

.income-link:hover {
  text-decoration: underline;
}

.btn-outline-income {
  padding: 10px 20px;
  border: 1px solid #2563eb;
  background: #fff;
  color: #2563eb;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-income:hover {
  background: #eff6ff;
}

.btn-full { width: 100%; }

.income-sources-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.income-sidebar-support {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.income-sidebar-support .sidebar-support-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.income-sidebar-support p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.expert-desc {
  margin: 0 0 12px !important;
  font-size: 0.88rem;
  color: #64748b;
}


/* ========== Tax Saving Panel ========== */

.tax-saving-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .tax-saving-layout {
    grid-template-columns: 1fr 280px;
    gap: 28px;
  }
}

.tax-saving-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tax-saving-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

@media (min-width: 640px) {
  .tax-saving-card {
    flex-direction: row;
    gap: 18px;
    padding: 20px 22px;
  }
}

@media (min-width: 900px) {
  .tax-saving-card {
    padding: 22px 24px;
  }
}

.tax-saving-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tax-icon-deductions {
  background: #ede9fe;
  color: #7c3aed;
}
.tax-icon-paid {
  background: #dbeafe;
  color: #2563eb;
}
.tax-icon-forward {
  background: #ecfccb;
  color: #65a30d;
}
.tax-icon-unlisted {
  background: #fef3c7;
  color: #a16207;
}

.tax-saving-content {
  flex: 1;
  min-width: 0;
}

.tax-saving-content h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.tax-saving-content p {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.tax-saving-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 0;
  width: 100%;
  justify-content: flex-end;
}

@media (min-width: 640px) {
  .tax-saving-actions {
    width: auto;
    padding-top: 4px;
  }
}

.tax-saving-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

.tax-saving-auto-progress {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 6px;
}


/* ========== Tax Summary Panel ========== */

.tax-summary-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .tax-summary-layout {
    grid-template-columns: 1fr 280px;
    gap: 28px;
  }
}

.tax-summary-main {
  min-width: 0;
}

.tax-summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .tax-summary-card {
    padding: 28px 28px;
  }
}

@media (min-width: 900px) {
  .tax-summary-card {
    padding: 32px 36px;
  }
}

.tax-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #e9d5ff 0%, #dbeafe 100%);
}

.tax-summary-heading {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 640px) {
  .tax-summary-heading {
    margin: 0 0 20px;
  }
}

.tax-summary-subheader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .tax-summary-subheader {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 28px;
  }
}

.tax-summary-subheader a {
  font-size: 0.95rem;
  color: #2563eb;
  font-weight: 500;
}

.tax-summary-subheader a:hover {
  text-decoration: underline;
}

.tax-summary-divider {
  color: #cbd5e1;
  font-size: 0.9rem;
  display: none;
}

@media (min-width: 640px) {
  .tax-summary-divider {
    display: inline;
  }
}

.tax-summary-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.tax-summary-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.tax-summary-item .tax-summary-label {
  grid-column: 1;
}

.tax-summary-item .tax-summary-value {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
}

.tax-summary-item .tax-summary-bar {
  grid-column: 1 / -1;
  grid-row: 2;
}

@media (min-width: 640px) {
  .tax-summary-item {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    gap: 16px;
    padding: 14px 0;
  }

  .tax-summary-item .tax-summary-label {
    grid-column: 1;
  }

  .tax-summary-item .tax-summary-value {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
  }

  .tax-summary-item .tax-summary-bar {
    grid-column: 3;
    grid-row: 1;
  }
}

.tax-summary-item:last-child {
  border-bottom: none;
}

.tax-summary-label {
  font-size: 0.95rem;
  color: #475569;
}

.tax-summary-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
}

.tax-summary-value-green {
  color: #059669;
}

.tax-summary-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  min-width: 80px;
}

.tax-summary-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .tax-summary-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.tax-summary-doubt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #64748b;
}

.tax-summary-doubt-icon {
  font-size: 1.1rem;
}

.tax-summary-ask {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
}

.tax-summary-ask:hover {
  text-decoration: underline;
}

.tax-summary-expert-card {
  background: linear-gradient(180deg, #f5f3ff 0%, #fff 40%);
  border-color: #ddd6fe;
}

.tax-summary-expert-visual {
  min-height: 80px;
  background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 100%);
  margin-bottom: 14px;
}

.tax-summary-promo-box {
  padding: 10px 14px;
  border: 2px dashed #f59e0b;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #92400e;
  text-align: center;
  margin-bottom: 14px;
  background: #fffbeb;
}

.tax-summary-timer {
  margin-top: 14px;
  padding: 10px 12px;
  background: #fff7ed;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #9a3412;
}

.tax-summary-timer-icon {
  margin-right: 4px;
}


/* ========== User Dashboard Panel ========== */

.dashboard-page {
  min-height: calc(100vh - 200px);
  background: #f8fafc;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 28px 0 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(20px, calc((100% - 1200px) / 2 + 20px));
  padding-right: max(20px, calc((100% - 1200px) / 2 + 20px));
}

.dashboard-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 20px 0;
  height: fit-content;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  position: sticky;
  top: 100px;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 15px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

.dashboard-nav-item:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.dashboard-nav-item.active {
  background: #eff6ff;
  color: #2563eb;
  border-right: 3px solid #2563eb;
  margin-right: -1px;
}

.dashboard-nav-item--logout {
  color: #b91c1c !important;
  margin-top: 6px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.dashboard-nav-item--logout:hover {
  background: #fef2f2 !important;
  color: #991b1b !important;
}

.dashboard-nav-icon {
  font-size: 1.2rem;
}

.dashboard-sidebar-footer {
  padding: 20px 20px 0;
  margin-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.dashboard-support-card {
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
}

.dashboard-support-card p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #64748b;
}

.dashboard-support-card a {
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 500;
}

.dashboard-support-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.dashboard-content {
  min-width: 0;
}

.dashboard-welcome {
  margin-bottom: 28px;
}

.dashboard-welcome h1 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
}

.dashboard-welcome p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.dashboard-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.dashboard-stat-icon {
  font-size: 2rem;
}

.dashboard-stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
}

.dashboard-stat-label {
  font-size: 0.85rem;
  color: #64748b;
}

.dashboard-actions h2,
.dashboard-section h2 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
}

.dashboard-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dashboard-action-card {
  display: block;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.dashboard-action-card:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: #bfdbfe;
  transform: translateY(-2px);
}

.dashboard-action-primary {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #93c5fd;
}

.dashboard-action-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.dashboard-action-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
}

.dashboard-action-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
}

.dashboard-section {
  margin-bottom: 32px;
}

.dashboard-activity-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.dashboard-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #f1f5f9;
}

.dashboard-activity-item:last-child {
  border-bottom: none;
}

.dashboard-activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  margin-top: 6px;
}

.dashboard-activity-dot-success {
  background: #22c55e;
}

.dashboard-activity-content {
  flex: 1;
  min-width: 0;
}

.dashboard-activity-content strong {
  display: block;
  font-size: 0.95rem;
  color: #1e293b;
  margin-bottom: 2px;
}

.dashboard-activity-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.dashboard-activity-date {
  font-size: 0.82rem;
  color: #94a3b8;
  flex-shrink: 0;
}

.dashboard-section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dashboard-info-card {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  margin: 20px 0px;
}

.dashboard-info-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
}

.dashboard-info-card p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #64748b;
}

.dashboard-info-status {
  color: #2563eb !important;
  font-weight: 500;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.tp-header-user {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.tp-header-user .tp-nav-link {
  font-weight: 600;
  color: #2563eb;
}

.user-avatar-dropdown {
  position: relative;
}

.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.user-name {
  display: none;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  /*min-width: 180px;*/
  /* background: #fff; */
  border-radius: 12px;
  /* box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0; */
  padding: 8px 0;
  z-index: 100;
}

.user-dropdown a {
  display: block;
  padding: 5px 10px;
  font-size: 0.9rem;
  color: #475569;
  text-decoration: none;
}

.user-dropdown a:hover {
  background: #f8fafc;
  color: #2563eb;
}

@media (min-width: 768px) {
  .user-name {
    display: inline;
  }
}

@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
    gap: 8px;
  }

  .dashboard-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dashboard-nav-item {
    padding: 10px 16px;
    border-right: none;
    margin-right: 0;
    border-radius: 10px;
  }

  .dashboard-nav-item.active {
    border-right: none;
    border-radius: 10px;
  }

  .dashboard-sidebar-footer {
    display: none;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-actions-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-section-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .tp-header-user .tp-nav-link {
    display: none;
  }

  .dashboard-welcome h1 {
    font-size: 1.5rem;
  }
}

/* ========== My Tax Returns ========== */

.dashboard-returns-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.returns-item {
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.returns-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.returns-badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.returns-badge-progress {
  background: #dbeafe;
  color: #1d4ed8;
}

.returns-badge-success {
  background: #d1fae5;
  color: #059669;
}

.returns-ay {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.returns-item p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #64748b;
}

.returns-status {
  margin-bottom: 12px !important;
}

.returns-status-refund {
  color: #059669 !important;
  font-weight: 600;
}

.returns-empty-state {
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.returns-empty-state h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.returns-empty-state p {
  margin: 0 0 14px;
  color: #64748b;
}

/* ========== My Profile ========== */

.profile-card {
  padding: 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
}

.profile-card h3 {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
}

.profile-avatar-section {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.profile-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.profile-edit-link {
  font-size: 0.9rem;
  color: #2563eb;
}

.profile-form {
  max-width: 400px;
}

.profile-form-row {
  margin-bottom: 18px;
}

.profile-form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}

.profile-form-row input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
}

.profile-form-row input:focus {
  outline: none;
  border-color: #2563eb;
}

.profile-form-row input[readonly] {
  background: #f8fafc;
  color: #64748b;
}

.profile-form-actions {
  margin-top: 24px;
}

/* Global frontend flash messages */
.app-flash {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
}

.app-flash-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.app-flash-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

/* ========== Linked PANs ========== */

.linked-pans-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.linked-pan-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.linked-pan-primary {
  border-color: #93c5fd;
  background: #eff6ff;
}

.linked-pan-badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #2563eb;
  color: #fff;
}

.linked-pan-info {
  flex: 1;
  min-width: 0;
}

.linked-pan-number {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.05em;
}

.linked-pan-info p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #64748b;
}

.linked-pan-status {
  font-size: 0.85rem;
  color: #059669;
  font-weight: 500;
}

/* ========== Settings ========== */

.settings-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.settings-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #f1f5f9;
}

.settings-toggle-item:last-child {
  border-bottom: none;
}

.settings-toggle-item strong {
  display: block;
  font-size: 0.95rem;
  color: #1e293b;
}

.settings-toggle-item p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.settings-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.settings-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.settings-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cbd5e1;
  border-radius: 26px;
  transition: 0.3s;
}

.settings-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.settings-switch input:checked + .settings-slider {
  background: #2563eb;
}

.settings-switch input:checked + .settings-slider::before {
  transform: translateX(22px);
}

.settings-options {
  display: flex;
  flex-direction: column;
}

.settings-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
}

.settings-option-item:last-child {
  border-bottom: none;
}

.settings-option-item:hover {
  color: #2563eb;
}

.settings-arrow {
  color: #94a3b8;
}

.btn-danger {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

.btn-danger:hover {
  background: #b91c1c;
}

.profile-card-danger p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #64748b;
}

/* ========== ITR Price Page (Creative) ========== */

.itr-price-page {
  font-family: "Outfit", "Inter", sans-serif;
}

.itr-price-hero {
  position: relative;
  padding: 50px 0 70px;
  overflow: hidden;
}

.itr-price-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
}

.itr-price-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.itr-price-hero-shape-1 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  top: -100px;
  right: -100px;
}

.itr-price-hero-shape-2 {
  width: 300px;
  height: 300px;
  background: #8b5cf6;
  bottom: -80px;
  left: -80px;
}

.itr-price-hero-shape-3 {
  width: 200px;
  height: 200px;
  background: #06b6d4;
  top: 50%;
  left: 30%;
  opacity: 0.25;
}

.itr-price-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.itr-price-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.itr-price-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.itr-price-hero-inner h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.itr-price-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.itr-price-hero-inner p {
  margin: 0 0 32px;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
}

.itr-price-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.itr-price-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.itr-price-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.itr-price-stat span:last-child {
  font-size: 0.85rem;
  color: #ccc;
}

.itr-price-section {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.itr-price-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.itr-price-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.itr-price-tab:hover {
  border-color: #93c5fd;
  color: #2563eb;
}

.itr-price-tab.active {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.itr-price-tab-icon {
  font-size: 1.25rem;
}

.itr-price-tab-content {
  display: none;
}

.itr-price-tab-content.active {
  display: block;
  animation: itr-price-fade 0.4s ease;
}

@keyframes itr-price-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.itr-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.itr-price-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.itr-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s;
}

.itr-price-card:hover {
  transform: translateY(-8px);
  border-color: #c7d2fe;
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.15);
}

.itr-price-card:hover::before {
  opacity: 1;
}

.itr-price-card-popular {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
  transform: scale(1.03);
}

.itr-price-card-popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.itr-price-popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
}

.itr-price-card-header {
  margin-bottom: 24px;
}

.itr-price-card-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.itr-price-card h3 {
  margin: 0 0 4px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.itr-price-suited {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

.itr-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.itr-price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.itr-price-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.itr-price-note {
  margin: 0 0 24px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.itr-price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.itr-price-features li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.itr-price-features li:last-child {
  border-bottom: none;
}

.itr-price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.itr-price-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  border: 2px solid #2563eb;
  background: #fff;
  color: #2563eb;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.itr-price-btn:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.itr-price-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  border-color: transparent;
  color: #fff;
}

.itr-price-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.itr-price-trust {
  padding: 48px 0 64px;
  background: #0f172a;
}

.itr-price-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.itr-price-trust-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s;
}

.itr-price-trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.itr-price-trust-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.itr-price-trust-item h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.itr-price-trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

@media (max-width: 992px) {
  .itr-price-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .itr-price-card-popular {
    transform: none;
  }

  .itr-price-card-popular:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .itr-price-hero {
    padding: 48px 0 56px;
  }

  .itr-price-stats {
    gap: 32px;
  }

  .itr-price-tabs {
    margin-bottom: 32px;
  }

  .itr-price-tab {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .itr-price-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== About Page (Creative) ========== */

.about-page-creative {
  font-family: "Outfit", "Inter", sans-serif;
}

.about-creative-hero {
  position: relative;
  padding: 50px 0 70px;
  overflow: hidden;
}

.about-creative-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c4a6e 0%, #0f172a 35%, #1e1b4b 70%, #0f172a 100%);
}

.about-creative-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.about-creative-shape-1 {
  width: 500px;
  height: 500px;
  background: #0ea5e9;
  top: -150px;
  right: -100px;
}

.about-creative-shape-2 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  bottom: -120px;
  left: -100px;
}

.about-creative-shape-3 {
  width: 250px;
  height: 250px;
  background: #22d3ee;
  top: 40%;
  left: 20%;
  opacity: 0.2;
}

.about-creative-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 40px 40px;
}

.about-creative-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-creative-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7dd3fc;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.about-creative-hero-inner h1 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 2.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.about-creative-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-creative-hero-inner p {
  margin: 0;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.65;
}

.about-creative-hero-visual {
  position: relative;
  margin-top: 28px;
  min-height: 50px;
}

.about-creative-float {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(8px);
  animation: about-float 6s ease-in-out infinite;
  color: #fff;
}

.about-creative-float-1 { left: 20%; top: 0; animation-delay: 0s; }
.about-creative-float-2 { left: 50%; top: 20px; transform: translateX(-50%); animation-delay: -2s; }
.about-creative-float-3 { right: 20%; top: 0; animation-delay: -4s; }

@keyframes about-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about-creative-float-2 {
  transform: translateX(-50%) translateY(0);
}

.about-creative-float-2 {
  animation-name: about-float-center;
}

@keyframes about-float-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

.about-creative-section {
  padding: 80px 0;
}

.about-creative-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 32px auto;
}

.about-creative-mission-card {
  position: relative;
  padding: 40px 36px;
  border-radius: 24px;
  overflow: hidden;
}

.about-creative-mission-primary {
  background: linear-gradient(145deg, #1e3a8a 0%, #1d4ed8 40%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 24px 48px rgba(29, 78, 216, 0.35);
}

.about-creative-mission-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.about-creative-mission-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 20px;
}

.about-creative-mission-card h2 {
  margin: 0 0 16px;
  font-size: 1.6rem;
  font-weight: 700;
}

.about-creative-mission-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.95;
}

.about-creative-mission-light {
  background: #fff;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.about-creative-mission-light h2 {
  color: #1e293b;
}

.about-creative-mission-light p {
  color: #64748b;
}

.about-creative-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.about-creative-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2563eb;
  margin-bottom: 12px;
}

.about-creative-section-header h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
}

.about-creative-section-header p {
  margin: 0;
  font-size: 1rem;
  color: #64748b;
}

.about-creative-values {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.about-creative-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-creative-value-card {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.about-creative-value-card:hover {
  transform: translateY(-8px);
  border-color: #93c5fd;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.about-creative-value-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s;
}

.about-creative-value-card:hover .about-creative-value-bg {
  opacity: 1;
}

.about-creative-value-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 20px;
}

.about-creative-value-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

.about-creative-value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.about-creative-stats {
  padding: 64px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-creative-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-creative-stat {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s;
}

.about-creative-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.03);
}

.about-creative-stat-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.about-creative-stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

.about-creative-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-creative-story-content h2 {
  margin: 0 0 24px;
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.about-creative-story-content p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}

.about-creative-story-content .btn {
  margin-top: 12px;
}

.about-creative-story-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-creative-story-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: all 0.3s;
}

.about-creative-story-card:hover {
  transform: translateX(8px);
  border-color: #93c5fd;
}

.about-creative-story-card-accent {
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  border-color: #bfdbfe;
}

.about-creative-story-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
  margin-bottom: 12px;
}

.about-creative-story-card p {
  margin: 0;
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.about-creative-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about-creative-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #4f46e5 50%, #7c3aed 100%);
}

.about-creative-cta-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.about-creative-cta .container {
  position: relative;
  z-index: 1;
}

.about-creative-cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
}

.about-creative-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
}

.about-creative-cta-box p {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-creative-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-creative-cta-btn {
  padding: 14px 32px;
  font-size: 1rem;
  margin: 0;
}

.about-creative-cta-actions .btn-primary {
  background: #fff;
  color: #6366f1;
  border-color: transparent;
}

 
.about-creative-cta-actions .btn-primary:hover {
  background: #f1f5f9;
}

.about-creative-cta-actions .btn-light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.about-creative-cta-actions .btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 992px) {
  .about-creative-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-creative-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-creative-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-creative-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-creative-hero {
    padding: 56px 0 72px;
  }

  .about-creative-values-grid {
    grid-template-columns: 1fr;
  }

  .about-creative-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-creative-float {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .about-creative-cta-box {
    padding: 40px 24px;
  }
}

/* ========== Contact Page (Creative) ========== */

.contact-page-creative {
  font-family: "Outfit", "Inter", sans-serif;
}

.contact-creative-hero {
  position: relative;
  padding: 50px 0 70px;
  overflow: hidden;
}

.contact-creative-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #134e4a 0%, #0f172a 40%, #1e1b4b 70%, #0f172a 100%);
}

.contact-creative-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}

.contact-creative-shape-1 {
  width: 450px;
  height: 450px;
  background: #14b8a6;
  top: -120px;
  right: -80px;
}

.contact-creative-shape-2 {
  width: 350px;
  height: 350px;
  background: #6366f1;
  bottom: -100px;
  left: -80px;
}

.contact-creative-shape-3 {
  width: 200px;
  height: 200px;
  background: #38bdf8;
  top: 50%;
  left: 25%;
  opacity: 0.25;
}

.contact-creative-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 32px 32px;
}

.contact-creative-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-creative-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5eead4;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.contact-creative-hero-inner h1 {
  margin: 0 0 24px;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.contact-creative-highlight {
  background: linear-gradient(135deg, #5eead4 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-creative-hero-inner p {
  margin: 0 0 32px;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.65;
}

.contact-creative-quick {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-creative-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-creative-quick-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.contact-creative-quick-icon {
  font-size: 1.4rem;
}

.contact-creative-section {
  padding: 80px 0;
}

.contact-creative-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-creative-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2563eb;
  margin-bottom: 12px;
}

.contact-creative-section-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
}

.contact-creative-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-creative-channel {
  display: block;
  padding: 32px 28px;
  background: #fff;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
  position: relative;
}

.contact-creative-channel:hover {
  transform: translateY(-8px);
  border-color: #14b8a6;
  box-shadow: 0 24px 48px rgba(20, 184, 166, 0.15);
}

.contact-creative-channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-creative-icon-sales { background: #ecfdf5; }
.contact-creative-icon-support { background: #dbeafe; }
.contact-creative-icon-press { background: #fef3c7; }
.contact-creative-icon-careers { background: #ede9fe; }

.contact-creative-channel h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.contact-creative-channel p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

.contact-creative-channel-email {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
}

.contact-creative-channel-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.25rem;
  color: #94a3b8;
  opacity: 0;
  transition: all 0.3s;
}

.contact-creative-channel:hover .contact-creative-channel-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.contact-creative-form-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-creative-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 56px;
  background: #fff;
  border-radius: 28px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
}

.contact-creative-form-intro h2 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
}

.contact-creative-form-intro p {
  margin: 0 0 24px;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-creative-form-visual {
  font-size: 4rem;
  opacity: 0.15;
}

.contact-creative-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-creative-form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.contact-creative-form-row input,
.contact-creative-form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.contact-creative-form-row input:focus,
.contact-creative-form-row textarea:focus {
  outline: none;
  border-color: #14b8a6;
}

.contact-creative-form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-creative-submit {
  padding: 16px 32px;
  font-size: 1rem;
  margin-top: 8px;
  align-self: flex-start;
}

.contact-creative-offices {
  padding: 80px 0;
}

.contact-creative-offices-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.contact-creative-offices-header h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
}

.contact-creative-offices-header p {
  margin: 0;
  font-size: 1rem;
  color: #64748b;
}

.contact-creative-offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-creative-office-card {
  padding: 36px 32px;
  background: #fff;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.contact-creative-office-card:hover {
  border-color: #14b8a6;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 184, 166, 0.1);
}

.contact-creative-office-pin {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.contact-creative-office-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #14b8a6;
  margin-bottom: 12px;
}

.contact-creative-office-card p {
  margin: 0;
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.contact-creative-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.contact-creative-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d9488 0%, #6366f1 50%, #7c3aed 100%);
}

.contact-creative-cta .container {
  position: relative;
  z-index: 1;
}

.contact-creative-cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
}

.contact-creative-cta-box h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.contact-creative-cta-box p {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.contact-creative-cta-btn {
  padding: 16px 40px;
  font-size: 1rem;
  background: #fff;
  color: #0d9488;
  border: none;
}

.contact-creative-cta-btn:hover {
  background: #f1f5f9;
}

@media (max-width: 992px) {
  .contact-creative-channels {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-creative-form-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-creative-hero {
    padding: 56px 0 72px;
  }

  .contact-creative-quick {
    flex-direction: column;
  }

  .contact-creative-channels {
    grid-template-columns: 1fr;
  }

  .contact-creative-offices-grid {
    grid-template-columns: 1fr;
  }

  .contact-creative-form-wrap {
    padding: 32px 24px;
  }
}

/* ========== Careers Page (Creative) ========== */

.careers-page-creative {
  font-family: "Outfit", "Inter", sans-serif;
}

.careers-creative-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.careers-creative-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #581c87 0%, #0f172a 35%, #1e1b4b 70%, #0f172a 100%);
}

.careers-creative-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.careers-creative-shape-1 {
  width: 500px;
  height: 500px;
  background: #c084fc;
  top: -150px;
  right: -100px;
}

.careers-creative-shape-2 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  bottom: -120px;
  left: -100px;
}

.careers-creative-shape-3 {
  width: 250px;
  height: 250px;
  background: #38bdf8;
  top: 40%;
  left: 20%;
  opacity: 0.2;
}

.careers-creative-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,0.03) 49px, rgba(255,255,255,0.03) 50px);
}

.careers-creative-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.careers-creative-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(192, 132, 252, 0.2);
  border: 1px solid rgba(192, 132, 252, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e9d5ff;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.careers-creative-hero-inner h1 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.careers-creative-highlight {
  background: linear-gradient(135deg, #e9d5ff 0%, #a78bfa 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers-creative-hero-inner p {
  margin: 0 0 32px;
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.65;
}

.careers-creative-hero-cta {
  padding: 16px 36px;
  font-size: 1rem;
}

.careers-creative-section {
  padding: 80px 0;
}

.careers-creative-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.careers-creative-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7c3aed;
  margin-bottom: 12px;
}

.careers-creative-section-header h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
}

.careers-creative-section-header p {
  margin: 0;
  font-size: 1rem;
  color: #64748b;
}

.careers-creative-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.careers-creative-benefit {
  padding: 32px 28px;
  background: #fff;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  transition: all 0.35s ease;
}

.careers-creative-benefit:hover {
  transform: translateY(-8px);
  border-color: #c4b5fd;
  box-shadow: 0 24px 48px rgba(124, 58, 237, 0.12);
}

.careers-creative-benefit-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 20px;
}

.careers-creative-benefit h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

.careers-creative-benefit p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.careers-creative-roles {
  padding: 80px 0;
  background: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 50%, #fff 100%);
}

.careers-creative-roles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.careers-creative-role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: #fff;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.careers-creative-role:hover {
  border-color: #a78bfa;
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
}

.careers-creative-role-content h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
}

.careers-creative-role-meta {
  font-size: 0.9rem;
  color: #64748b;
}

.careers-creative-role-arrow {
  font-size: 1.5rem;
  color: #a78bfa;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.careers-creative-role:hover .careers-creative-role-arrow {
  opacity: 1;
  transform: translateX(0);
}

.careers-creative-life {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.careers-creative-life-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
}

.careers-creative-life .container {
  position: relative;
  z-index: 1;
}

.careers-creative-life-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.careers-creative-life-content h2 {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.careers-creative-life-content p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.careers-creative-eyebrow-light {
  color: #c4b5fd;
}

.careers-creative-life-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.careers-creative-life-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s;
}

.careers-creative-life-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.careers-creative-life-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c4b5fd;
  margin-bottom: 12px;
}

.careers-creative-life-card p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.careers-creative-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.careers-creative-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #3b82f6 100%);
}

.careers-creative-cta .container {
  position: relative;
  z-index: 1;
}

.careers-creative-cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
}

.careers-creative-cta-box h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.careers-creative-cta-box p {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.careers-creative-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.careers-creative-cta-actions .btn-primary {
  background: #fff;
  color: #7c3aed;
  border: none;
}

.careers-creative-cta-actions .btn-primary:hover {
  background: #f1f5f9;
}

.careers-creative-cta-actions .btn-light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.careers-creative-cta-actions .btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 992px) {
  .careers-creative-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-creative-life-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .careers-creative-hero {
    padding: 56px 0 72px;
  }

  .careers-creative-benefits {
    grid-template-columns: 1fr;
  }

  .careers-creative-cta-box {
    padding: 40px 24px;
  }
}

/* ========== Team Page (Creative) ========== */

.team-page-creative {
  font-family: "Outfit", "Inter", sans-serif;
}

.team-creative-hero {
  position: relative;
  padding: 50px 0 50px;
  overflow: hidden;
}

.team-creative-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e7490 0%, #0f172a 35%, #4c1d95 70%, #0f172a 100%);
}

.team-creative-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}

.team-creative-shape-1 {
  width: 450px;
  height: 450px;
  background: #06b6d4;
  top: -120px;
  right: -80px;
}

.team-creative-shape-2 {
  width: 380px;
  height: 380px;
  background: #8b5cf6;
  bottom: -100px;
  left: -80px;
}

.team-creative-shape-3 {
  width: 220px;
  height: 220px;
  background: #f472b6;
  top: 50%;
  left: 30%;
  opacity: 0.25;
}

.team-creative-circles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.06) 2px, transparent 0);
  background-size: 48px 48px;
}

.team-creative-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.team-creative-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #67e8f9;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.team-creative-hero-inner h1 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 2.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.team-creative-highlight {
  background: linear-gradient(135deg, #67e8f9 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-creative-hero-inner p {
  margin: 0;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.65;
}

.team-creative-section {
  padding: 80px 0;
}

.team-creative-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.team-creative-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0891b2;
  margin-bottom: 12px;
}

.team-creative-section-header h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
}

.team-creative-section-header p {
  margin: 0;
  font-size: 1rem;
  color: #64748b;
}

.team-creative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-creative-card {
  position: relative;
}

.team-creative-card-inner {
  padding: 32px 28px;
  background: #fff;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-creative-card:hover .team-creative-card-inner {
  transform: translateY(-8px);
  border-color: #22d3ee;
  box-shadow: 0 24px 48px rgba(6, 182, 212, 0.15);
}

.team-creative-avatar-wrap {
  position: relative;
  margin-bottom: 24px;
}

.team-creative-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0fdfa;
}

.team-creative-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-creative-avatar-ring {
  position: absolute;
  inset: -6px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #06b6d4, #a78bfa) border-box;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-creative-card:hover .team-creative-avatar-ring {
  opacity: 1;
}

.team-creative-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

.team-creative-role {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0891b2;
}

.team-creative-bio {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  flex: 1;
}

.team-creative-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0fdfa;
  color: #0891b2;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.team-creative-link:hover {
  background: #0891b2;
  color: #fff;
  transform: scale(1.08);
}

.team-creative-teams {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 50%, #fff 100%);
}

.team-creative-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.team-creative-pill {
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  transition: all 0.3s;
}

.team-creative-pill:hover {
  border-color: #22d3ee;
  color: #0891b2;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.15);
}

.team-creative-teams-copy {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}

.team-creative-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.team-creative-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0891b2 0%, #6366f1 50%, #8b5cf6 100%);
}

.team-creative-cta .container {
  position: relative;
  z-index: 1;
}

.team-creative-cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
}

.team-creative-cta-box h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.team-creative-cta-box p {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.team-creative-cta-btn {
  padding: 16px 40px;
  font-size: 1rem;
  background: #fff;
  color: #0891b2;
  border: none;
}

.team-creative-cta-btn:hover {
  background: #f1f5f9;
}

@media (max-width: 992px) {
  .team-creative-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-creative-hero {
    padding: 56px 0 72px;
  }

  .team-creative-grid {
    grid-template-columns: 1fr;
  }

  .team-creative-cta-box {
    padding: 40px 24px;
  }
}

/* ========== Press Creative ========== */
.press-page-creative { font-family: "Outfit", "Inter", sans-serif; }

.press-creative-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.press-creative-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
}

.press-creative-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.press-creative-shape-1 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  top: -120px;
  right: -80px;
}

.press-creative-shape-2 {
  width: 300px;
  height: 300px;
  background: #8b5cf6;
  bottom: -80px;
  left: -60px;
}

.press-creative-shape-3 {
  width: 200px;
  height: 200px;
  background: #06b6d4;
  top: 50%;
  left: 30%;
  opacity: 0.35;
}

.press-creative-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.press-creative-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.press-creative-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.press-creative-hero-inner h1 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.press-creative-highlight {
  background: linear-gradient(135deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.press-creative-hero-inner p {
  margin: 0;
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
}

.press-creative-section {
  padding: 80px 0;
  background: #fff;
}

.press-creative-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.press-creative-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.press-creative-section-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.press-creative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.press-creative-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s;
}

.press-creative-card:hover {
  border-color: #6366f1;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
  transform: translateY(-4px);
}

.press-creative-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.press-creative-source {
  font-size: 0.9rem;
  font-weight: 700;
  color: #6366f1;
}

.press-creative-date {
  font-size: 0.85rem;
  color: #94a3b8;
}

.press-creative-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.press-creative-card p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.press-creative-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6366f1;
  transition: transform 0.25s;
}

.press-creative-card:hover .press-creative-link {
  transform: translateX(4px);
}

.press-creative-featured {
  padding: 64px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.press-creative-featured .press-creative-eyebrow {
  text-align: center;
  margin-bottom: 28px;
}

.press-creative-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.press-creative-logo-item {
  padding: 14px 28px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  transition: all 0.3s;
}

.press-creative-logo-item:hover {
  border-color: #6366f1;
  color: #6366f1;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.12);
}

.press-creative-kit {
  padding: 80px 0;
  background: #fff;
}

.press-creative-kit-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  border: 2px solid #e2e8f0;
}

.press-creative-kit-content h2 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
}

.press-creative-kit-content p {
  margin: 0 0 24px;
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}

.press-creative-kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.press-creative-kit-card {
  padding: 28px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.press-creative-kit-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.press-creative-kit-card p {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #475569;
}

.press-creative-kit-card p:last-child {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.press-creative-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.press-creative-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
}

.press-creative-cta .container {
  position: relative;
  z-index: 1;
}

.press-creative-cta-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
}

.press-creative-cta-box h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.press-creative-cta-box p {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.press-creative-cta-btn {
  padding: 16px 40px;
  font-size: 1rem;
  background: #fff;
  color: #6366f1;
  border: none;
}

.press-creative-cta-btn:hover {
  background: #f1f5f9;
}

@media (max-width: 992px) {
  .press-creative-grid {
    grid-template-columns: 1fr;
  }

  .press-creative-kit-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .press-creative-hero {
    padding: 56px 0 72px;
  }

  .press-creative-section {
    padding: 56px 0;
  }

  .press-creative-kit-wrap {
    padding: 32px 24px;
  }

  .press-creative-cta-box {
    padding: 40px 24px;
  }
}

/* ========== Login Creative (Oxyy-style) ========== */
html:has(body.login-creative-page) {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100%;
}

.login-creative-page {
  background: #fff !important;
  background-image: none !important;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

.login-creative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: visible;
}

.login-creative-panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-creative-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: #fff;
  overflow-y: auto;
}

.login-creative-card {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-creative-logo {
  margin-bottom: 48px;
}

.login-creative-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.login-creative-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.login-creative-sub {
  margin: 0 0 28px;
  font-size: 0.95rem;
  color: #6b7280;
}

.login-creative-form {
  width: 100%;
}

.login-creative-field {
  position: relative;
  margin-bottom: 28px;
}

.login-creative-input {
  width: 100%;
  padding: 12px 0 8px;
  font-size: 1rem;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d1d5db;
  outline: none;
  transition: border-color 0.2s;
}

.login-creative-input::placeholder {
  color: transparent;
}

.login-creative-input:focus {
  border-bottom-color: #007bff;
}

.login-creative-field label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 1rem;
  color: #6b7280;
  pointer-events: none;
  transition: transform 0.2s, color 0.2s;
  transform-origin: left top;
}

.login-creative-field:focus-within label,
.login-creative-field:has(.login-creative-input:not(:placeholder-shown)) label {
  transform: translateY(-24px) scale(0.85);
  color: #007bff;
}

.login-creative-password-wrap {
  position: relative;
}

.login-creative-password-wrap .login-creative-input {
  padding-right: 40px;
}

.login-creative-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #6b7280;
}

.login-creative-toggle:hover {
  color: #007bff;
}

.login-creative-forgot {
  text-align: right;
  margin: -8px 0 24px;
}

.login-creative-forgot a {
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}

.login-creative-forgot a:hover {
  text-decoration: underline;
}

.login-creative-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.login-creative-submit:hover {
  background: #0056b3;
}

.login-creative-switch {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
}

.login-creative-switch a {
  color: #007bff;
  font-weight: 600;
  text-decoration: underline;
}

.login-creative-switch a:hover {
  color: #0056b3;
}

.login-creative-footer {
  margin: 48px 0 0;
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}

.login-creative-footer a {
  color: #007bff;
  text-decoration: none;
}

.login-creative-footer a:hover {
  text-decoration: underline;
}

/* Signup-specific */
.login-creative-terms {
  margin: 0 0 24px;
}

.login-creative-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #6b7280;
  user-select: none;
}

.login-creative-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.login-creative-checkbox-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.login-creative-checkbox input:checked + .login-creative-checkbox-box {
  background: #007bff;
  border-color: #007bff;
}

.login-creative-checkbox input:checked + .login-creative-checkbox-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login-creative-checkbox span:last-child {
  line-height: 1.4;
}

.login-creative-card--signup .login-creative-logo {
  margin-bottom: 26px;
}

.login-creative-card--signup .login-creative-field {
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .login-creative {
    grid-template-columns: 1fr;
    grid-template-rows: 35vh 1fr;
  }

  .login-creative-panel {
    min-height: 35vh;
  }

  .login-creative-form-wrap {
    padding: 32px 24px;
  }

  .login-creative-logo {
    margin-bottom: 36px;
  }
}

@media (max-width: 576px) {
  .login-creative-form-wrap {
    padding: 24px 20px;
  }

  .login-creative-logo img {
    height: 32px;
  }

  .login-creative-footer {
    margin-top: 32px;
  }
}

/* ========== Index Creative ========== */
.index-creative-page { font-family: "Outfit", "Inter", sans-serif; }

.index-creative-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.index-creative-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
}

.index-creative-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.index-creative-shape-1 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  top: -120px;
  right: -80px;
}

.index-creative-shape-2 {
  width: 300px;
  height: 300px;
  background: #8b5cf6;
  bottom: -80px;
  left: -60px;
}

.index-creative-shape-3 {
  width: 200px;
  height: 200px;
  background: #06b6d4;
  top: 50%;
  left: 30%;
  opacity: 0.35;
}

.index-creative-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.index-creative-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.index-creative-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.index-creative-hero-inner h1 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.index-creative-highlight {
  background: linear-gradient(135deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.index-creative-hero-inner p {
  margin: 0 0 32px;
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
}

.index-creative-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 40px;
}

.index-creative-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.index-creative-form input::placeholder {
  color: #94a3b8;
}

.index-creative-form input:focus {
  border-color: #6366f1;
}

.index-creative-form .btn-primary {
  padding: 14px 28px;
  white-space: nowrap;
}

.index-creative-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}

.index-creative-section {
  padding: 80px 0;
  background: #fff;
}

.index-creative-section--alt {
  background: #f8fafc;
}

.index-creative-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.index-creative-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.index-creative-section-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.index-creative-section-sub {
  margin: 12px auto 0;
  font-size: 1.05rem;
  color: #64748b;
  max-width: 560px;
}

.index-creative-features,
.index-creative-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.index-creative-card {
  padding: 32px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  transition: all 0.35s;
}

.index-creative-section--alt .index-creative-card {
  background: #fff;
}

.index-creative-card:hover {
  border-color: #6366f1;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
  transform: translateY(-4px);
}

.index-creative-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #eef2ff;
  color: #6366f1;
  border-radius: 14px;
  margin-bottom: 20px;
}

.index-creative-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.index-creative-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.index-creative-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.index-creative-chart span {
  font-size: 0.9rem;
  color: #64748b;
}

.index-creative-chart strong {
  font-size: 1.5rem;
  color: #0f172a;
}

.index-creative-chart small {
  font-size: 0.85rem;
  color: #94a3b8;
}

.index-creative-steps {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.index-creative-steps-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
}

.index-creative-steps .container {
  position: relative;
  z-index: 1;
}

.index-creative-section-header--light .index-creative-eyebrow {
  color: #a78bfa;
}

.index-creative-section-header--light h2 {
  color: #fff;
  text-align: left;
}

.index-creative-eyebrow--light {
  color: #94a3b8 !important;
}

.index-creative-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.index-creative-step {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  transition: all 0.35s;
}

.index-creative-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.index-creative-step-num {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 14px;
  margin-bottom: 20px;
}

.index-creative-step h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.index-creative-step p {
  margin: 0;
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

.index-creative-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.index-creative-testimonial {
  padding: 32px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  transition: all 0.35s;
}

.index-creative-testimonial:hover {
  border-color: #6366f1;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
  transform: translateY(-4px);
}

.index-creative-testimonial h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.index-creative-testimonial p {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.index-creative-testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.index-creative-testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.index-creative-testimonial-user strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}

.index-creative-testimonial-user span {
  font-size: 0.85rem;
  color: #64748b;
}

.index-creative-stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.index-creative-stat {
  text-align: center;
}

.index-creative-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #6366f1;
  margin-bottom: 4px;
}

.index-creative-stat span {
  font-size: 0.95rem;
  color: #64748b;
}

.index-creative-pricing {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.index-creative-price-card {
  display: block;
  padding: 36px 40px;
  min-width: 220px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s;
}

.index-creative-price-card:hover {
  border-color: #6366f1;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
  transform: translateY(-4px);
}

.index-creative-price-card--premium {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-color: transparent;
  color: #fff;
}

.index-creative-price-card--premium:hover {
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.4);
}

.index-creative-price-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.index-creative-price-card strong {
  font-size: 1.25rem;
}

.index-creative-price-card span {
  float: right;
  opacity: 0.8;
}

.index-creative-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.index-creative-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
}

.index-creative-cta .container {
  position: relative;
  z-index: 1;
}

.index-creative-cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
}

.index-creative-cta-box h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.index-creative-cta-box p {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.index-creative-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.index-creative-cta-actions .btn-primary {
  background: #fff;
  color: #6366f1;
  border: none;
}

.index-creative-cta-actions .btn-primary:hover {
  background: #f1f5f9;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

@media (max-width: 992px) {
  .index-creative-testimonials {
    grid-template-columns: 1fr;
  }

  .index-creative-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .index-creative-hero {
    padding: 56px 0 72px;
  }

  .index-creative-form {
    flex-direction: column;
  }

  .index-creative-section {
    padding: 56px 0;
  }

  .index-creative-stats {
    gap: 20px;
  }

  .index-creative-cta-box {
    padding: 40px 24px;
  }
}

/* Logged-in header: profile icon → dashboard */
.tp-nav-actions--auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* User menu trigger: white pill + blue avatar + chevron */
.user-profile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  font: inherit;
  transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.user-profile-trigger:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.user-profile-trigger:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 3px;
}

.user-profile-trigger__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  flex-shrink: 0;
}

.user-profile-trigger__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.user-dropdown.is-open .user-profile-trigger__chevron {
  transform: rotate(180deg);
  color: #2563eb;
}

.nav-logout-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logout-link:hover {
  color: #dc2626;
  text-decoration: underline;
}

/* User account dropdown (header) */
.user-dropdown {
  position: relative;
}

.user-dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 290px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
  border: 1px solid #e2e8f0;
  padding: 8px 0;
  z-index: 3000;
}

.user-dropdown-panel[hidden] {
  display: none !important;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  color: #334155;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s ease;
  box-sizing: border-box;
}

.user-dropdown-item:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.user-dropdown-icon {
  font-size: 1.1rem;
  width: 1.4rem;
  text-align: center;
}

.user-dropdown-item--logout {
  color: #b91c1c;
  border-top: 1px solid #f1f5f9;
  margin-top: 4px;
  padding-top: 12px;
}

.user-dropdown-item--logout:hover {
  background: #fef2f2;
  color: #991b1b;
}

.user-dropdown .user-dropdown-form,
.user-dropdown form {
  margin: 0;
  padding: 0;
}

/* Mobile account block (logged-in) */
.mobile-account-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  margin-bottom: 10px;
}

.mobile-account-nav__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 4px;
}

.mobile-account-nav__link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #1e293b;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.mobile-account-nav__link:hover {
  background: #f1f5f9;
}

.mobile-account-nav__form {
  margin: 6px 0 0;
  padding: 0;
}

.mobile-account-nav__logout {
  width: 100%;
  padding: 10px 10px;
  border: 0;
  border-radius: 8px;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
}

.mobile-account-nav__logout:hover {
  background: #fee2e2;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-visual .hero-image-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
    border-radius: 30px;
    background: transparent;
}
.hero-visual .hero-image-card img {
    width: 100%;
    display: block;
    border-radius:30px;
}
.hero-image-card::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(30,78,216,.18) 0%,
        rgba(30,78,216,.08) 45%,
        transparent 75%);
    z-index:-1;
    filter:blur(40px);
}
.home.cta-section{
    padding:120px 20px;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.home.cta-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,
        rgba(30,78,216,.08),
        transparent 70%);
    top:-200px;
    left:50%;
    transform:translateX(-50%);
}

.home .cta-container{
    max-width:850px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

.home .cta-tag{
    display:inline-block;
    letter-spacing:5px;
    color:#0b7d42;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.home .cta-container h2{
    font-size:52px;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
    line-height:1.2;
}

.home .cta-container p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:20px;
    line-height:1.8;
    margin-bottom:50px;
}

.home .cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 42px;
    border-radius:18px;
    background:linear-gradient(180deg,#243b55,#141e30);
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 15px 35px rgba(20,30,48,.25);
}

.home .cta-btn svg{
    transition:.35s;
}

.home .cta-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 45px rgba(20,30,48,.35);
}

.home .cta-btn:hover svg{
    transform:translateX(6px);
}

@media(max-width:768px){

    .home.cta-section{
        padding:80px 20px;
    }

    .home .cta-container h2{
        font-size:36px;
    }

    .home .cta-container p{
        font-size:17px;
    }

    .home .cta-btn{
        padding:16px 32px;
    }
}