@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800;900&family=Rajdhani:wght@600;700&display=swap");

:root {
  --cyan: #05c7ee;
  --blue: #3578f6;
  --deep-blue: #1257c8;
  --purple: #8d4df5;
  --violet: #a95ff7;
  --dark: #0b1220;
  --text: #172033;
  --muted: #667085;
  --line: #e8eef8;
  --soft: #f7fbff;
  --white: #ffffff;
  --grad: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--purple));
  --grad-soft: linear-gradient(135deg, rgba(5, 199, 238, .14), rgba(53, 120, 246, .10), rgba(141, 77, 245, .14));
  --shadow: 0 24px 70px rgba(37, 76, 160, .13);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(5, 199, 238, .08), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(141, 77, 245, .09), transparent 26%),
    #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 88%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 238, 248, .95);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--dark);
}

.brand small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  margin-top: 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 850;
  color: #334155;
  border-radius: 999px;
  transition: .25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: white;
  background: var(--grad);
  box-shadow: 0 12px 28px rgba(53, 120, 246, .22);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: var(--grad-soft);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: var(--blue);
  border-radius: 99px;
}

.section-pad {
  padding: 92px 0;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .94), rgba(247, 251, 255, .75)),
    var(--grad-soft);
}

.orb {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(78px);
  opacity: .55;
}

.orb-a {
  left: -80px;
  bottom: 90px;
  background: var(--cyan);
}

.orb-b {
  right: -90px;
  top: 110px;
  background: var(--purple);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.pill {
  display: inline-flex;
  width: fit-content;
  padding: 9px 15px;
  background: #fff;
  border: 1px solid rgba(53, 120, 246, .14);
  border-radius: 999px;
  color: var(--deep-blue);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(53, 120, 246, .08);
  margin-bottom: 18px;
}

.pill.light {
  background: rgba(255, 255, 255, .16);
  color: white;
  border-color: rgba(255, 255, 255, .25);
}

h1,
h2,
h3 {
  color: var(--dark);
}

.hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
  letter-spacing: -3.2px;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero h1::after {
  content: "";
  display: block;
  width: 170px;
  height: 7px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--grad);
}

.hero-lead {
  max-width: 680px;
  color: #475467;
  font-size: 19px;
  margin-bottom: 32px;
}

.hero-actions,
.cta-inner,
.cta .btn {
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: white;
  background: var(--grad);
  box-shadow: 0 18px 42px rgba(53, 120, 246, .25);
}

.btn-outline {
  background: white;
  color: var(--deep-blue);
  border-color: #cfe0ff;
}

.btn-white {
  background: white;
  color: var(--deep-blue);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
  max-width: 650px;
}

.mini-stats div {
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(232, 238, 248, .95);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 14px 36px rgba(28, 50, 88, .07);
}

.mini-stats strong {
  display: block;
  color: var(--dark);
}

.mini-stats span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 750;
}

.hero-showcase {
  position: relative;
  min-height: 475px;
}

.showcase-card,
.card,
.detail-card,
.product-big,
.product-side,
.solution-panel,
.industry-card,
.about-card,
.contact-card,
.contact-form,
.timeline-item,
.compare-card {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(232, 238, 248, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-card {
  padding: 30px;
  transform: rotate(1.5deg);
  backdrop-filter: blur(18px);
}

.browser-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #febc2e;
}

.browser-dots span:nth-child(3) {
  background: #28c840;
}

.showcase-card h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.showcase-card p {
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 24px;
}

.flow-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.flow-boxes div {
  min-height: 98px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 950;
  color: var(--deep-blue);
  background: var(--grad-soft);
  border-radius: 22px;
  border: 1px solid rgba(53, 120, 246, .12);
}

.float-label {
  position: absolute;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  border: 1px solid #dbe7ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 15px 35px rgba(28, 50, 88, .13);
  animation: floaty 4s ease-in-out infinite;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 5;
}

.float-label:hover {
  animation-play-state: paused;
  color: #ffffff;
  background: linear-gradient(135deg, #05c7ee, #3578f6 50%, #a95ff7);
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(53, 120, 246, 0.35);
}

.label-1 {
  left: -25px;
  top: 46px;
}

.label-2 {
  right: -10px;
  top: 170px;
  animation-delay: .8s;
}

.label-3 {
  left: 80px;
  bottom: 22px;
  animation-delay: 1.4s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}




/* strip section xxx */


/* .strip {
  background: var(--dark);
  color: white;
}

.strip-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 950;
}

.strip span {
  opacity: .9;
} */




/* Infinite Moving Ticker Container */
.moving-ticker-container {
  width: 100%;
  overflow: hidden;
  background: transparent;
  /* Premium subtle borders with NexKnot colors */
  border-top: 1.5px solid rgba(5, 199, 238, 0.4); 
  border-bottom: 1.5px solid rgba(169, 95, 247, 0.4); 
  padding: 16px 0;
  display: flex;
  position: relative;
}

/* Moving Wrapper Track */
.moving-ticker-track {
  display: flex;
  width: max-content;
  animation: continuousScroll 25s linear infinite;
}

/* Contents wrapper aligned perfectly with specific gap control */
.ticker-content {
  display: flex;
  align-items: center;
  /* space-around hata kar explicit gap diya taaki text ke beech constant space rahe */
  gap: 40px; 
  padding-right: 40px; /* Seamless flow with next clone group */
}

/* Pair container for text + dot */
.ticker-pair {
  display: inline-flex;
  align-items: center;
  gap: 40px; /* Text aur uske aage wale dot ke beech ka space lock kiya */
  white-space: nowrap;
}

/* Hover to Pause feature */
.moving-ticker-container:hover .moving-ticker-track {
  animation-play-state: paused;
}

/* Text Item Styling - NexKnot Slate Dark Accent */
.ticker-item {
  color: #0f172a; /* Deep tech slate color (not pure black, looks highly premium) */
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Glowing dots perfectly centered and matching NexKnot theme gradient */
.ticker-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #05c7ee, #a95ff7);
  box-shadow: 0 0 8px rgba(5, 199, 238, 0.6);
  flex-shrink: 0;
}

/* Side Edge Blending for smooth entering and exiting elements */
.moving-ticker-container::before,
.moving-ticker-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.moving-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.moving-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* Loop Mathematics Logic */
@keyframes continuousScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}










.section-head {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 48px;
}

.section-head h2,
.page-hero h1,
.big-title {
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.section-head p:not(.pill),
.page-hero p:not(.pill),
.large-text {
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.detail-card {
  padding: 30px;
  transition: .25s ease;
}

.card:hover,
.detail-card:hover,
.industry-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(28, 50, 88, .14);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--grad-soft);
  font-size: 26px;
  margin-bottom: 18px;
}

.card h3,
.detail-card h2 {
  margin-bottom: 10px;
}

.card p,
.detail-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.card a {
  color: var(--deep-blue);
  font-weight: 950;
}

.detail-card ul {
  list-style: none;
  margin-top: 16px;
}

.detail-card li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: #344054;
  font-weight: 750;
}

.detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 950;
}

.gradient-section,
.cta {
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .20), transparent 24%),
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, .16), transparent 22%),
    var(--grad);
}

.gradient-section h2,
.cta h2 {
  color: white;
}

.gradient-section p {
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  margin-bottom: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 52px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.check-list span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  color: white;
  font-size: 13px;
}

.dark-check span::before {
  background: var(--grad);
}

.product-preview {
  display: grid;
  place-items: center;
}

.sheet-window {
  width: min(100%, 460px);
  background: white;
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .18);
}

.sheet-bar {
  height: 22px;
  width: 60%;
  border-radius: 999px;
  background: var(--grad-soft);
  margin-bottom: 22px;
}

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

.sheet-grid span {
  height: 46px;
  border-radius: 12px;
  background: #eef5ff;
}

.sheet-grid .active-cell {
  background: var(--cyan);
}

.sheet-grid .purple-cell {
  background: var(--purple);
}

.ai-bubble {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--grad);
  color: white;
  font-weight: 950;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.compare-card {
  padding: 30px;
}

.compare-card h3 {
  margin-bottom: 18px;
}

.compare-card p {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-weight: 850;
  color: var(--muted);
}

.compare-card.powered {
  background: var(--grad);
  color: white;
}

.compare-card.powered h3 {
  color: #ffffff !important;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 18px;
}

.compare-card.powered p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16px;
  font-weight: 750;
}
.cta {
  padding: 86px 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.page-hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 10% 20%, rgba(5, 199, 238, .14), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(141, 77, 245, .14), transparent 25%),
    linear-gradient(135deg, #fff, #f7fbff);
  text-align: center;
}

.narrow {
  max-width: 860px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
}

.product-big,
.product-side,
.solution-panel,
.contact-card,
.contact-form,
.about-card {
  padding: 34px;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  color: white;
  background: var(--grad);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.product-big h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -2px;
  line-height: 1.04;
}

.product-line {
  color: var(--deep-blue);
  font-weight: 950;
  margin: 8px 0 14px;
}

.product-big>p:not(.product-line),
.product-side p {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.feature-grid span,
.contact-points span,
.tag-row span {
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--grad-soft);
  color: var(--deep-blue);
  font-weight: 850;
  font-size: 14px;
}

.soft-bg {
  background: #f7fbff;
}

.solutions-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
}

.solution-tabs {
  display: grid;
  gap: 12px;
}

.solution-tab {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: #344054;
  font-weight: 950;
  cursor: pointer;
  transition: .25s ease;
}

.solution-tab:hover,
.solution-tab.active {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

.solution-panel {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-panel h2 {
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -1.5px;
}

.solution-panel p {
  color: var(--muted);
  font-size: 18px;
  margin: 14px 0 22px;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.industry-card {
  padding: 24px 18px;
  text-align: center;
  font-weight: 950;
}

.about-card {
  text-align: center;
}

.about-card img {
  width: 320px;
  margin: 0 auto 20px;
}

.about-card h3 {
  font-size: 34px;
}

.about-card p {
  color: var(--muted);
  font-weight: 850;
}

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

.timeline-item {
  padding: 28px;
}

.timeline-item span {
  font-size: 42px;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 950;
}

.timeline-item h3 {
  margin: 12px 0 6px;
}

.timeline-item p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-card h2,
.contact-form h2 {
  font-size: 34px;
  letter-spacing: -1px;
}

.contact-card p {
  color: var(--muted);
  margin: 12px 0 18px;
}

.email-link {
  display: inline-flex;
  color: var(--deep-blue);
  font-weight: 950;
  font-size: 20px;
  margin-bottom: 24px;
}

.contact-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: #344054;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e2f3;
  border-radius: 15px;
  padding: 14px 16px;
  outline: none;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(53, 120, 246, .12);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr .8fr .85fr;
  gap: 32px;
  align-items: start;
}

.footer .brand strong,
.footer h4 {
  color: white;
}

.footer .brand small,
.footer p {
  color: #94a3b8;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer h4 {
  margin-bottom: 14px;
}

.footer a:not(.brand) {
  display: block;
  color: #cbd5e1;
  margin: 8px 0;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  justify-content: space-between;
  align-items: center; 
  flex-wrap: wrap;     
  gap: 18px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-size: 22px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(53, 120, 246, .28);
  display: none;
  z-index: 999;
}

.back-to-top.show {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s ease;
}

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

/* NexKnot logo-style typography */

.logo-word {
  font-family: "Orbitron", Arial, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 6px !important;
  line-height: 0.95 !important;
  font-size: 24px !important;
  color: transparent !important;
  background: linear-gradient(90deg,
      #0b1220 0%,
      #0b1220 22%,
      #05c7ee 43%,
      #3578f6 63%,
      #a95ff7 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  text-transform: uppercase !important;
}

.logo-tagline {
  font-family: "Rajdhani", Arial, sans-serif !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 8px !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.logo-tagline .tag-text {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 5px !important;
  color: #7b8496 !important;
  text-transform: uppercase !important;
}

.logo-tagline .tag-line {
  width: 36px;
  height: 2px;
  border-radius: 999px;
  display: inline-block;
}

.logo-tagline .tag-line-left {
  background: linear-gradient(90deg, #05c7ee, #3578f6);
}

.logo-tagline .tag-line-right {
  background: linear-gradient(90deg, #3578f6, #a95ff7);
}

/* Footer logo color */
.footer .logo-word {
  background: linear-gradient(90deg,
      #ffffff 0%,
      #ffffff 20%,
      #05c7ee 43%,
      #3578f6 63%,
      #a95ff7 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.footer .logo-tagline .tag-text {
  color: #d7dce8 !important;
}

/* Header logo size */
.site-header .brand img {
  width: 46px;
  height: 46px;
}

.site-header .logo-word {
  font-size: 23px !important;
  letter-spacing: 6px !important;
}

.site-header .logo-tagline .tag-line {
  width: 36px;
}

/* Footer logo corner crop / rounded fix */

.footer .brand img {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.footer .logo-word {
  font-size: 24px !important;
  letter-spacing: 7px !important;
}

.footer .logo-tagline .tag-line {
  width: 46px;
}








/* SheetNova AI product card clean layout */
 
.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.product-title-row > div {
  flex: 1;
}

.product-logo {
  width: 105px;
  height: 105px;
  object-fit: contain;
  padding: 10px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e8eef8;
  box-shadow: 0 14px 35px rgba(28, 50, 88, 0.12);
  flex-shrink: 0;

  /* main alignment */
  margin-top: -20px;
  transform: translateX(-35px);
}

.product-big .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.product-big .feature-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(5, 199, 238, 0.12), rgba(169, 95, 247, 0.12));
  color: #1257c8;
  font-weight: 850;
  font-size: 14px;
}

.product-big .btn {
  width: fit-content;
  min-width: 210px;
}


/* Footer social media icons */

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #d7dce8 !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
  margin: 0 !important;
}

.social-links a:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #05c7ee, #3578f6 50%, #a95ff7);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(53, 120, 246, 0.35);
  transform: translateY(-3px);
}


/* home page aside scetion */

.best-for-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.best-for-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(5, 199, 238, 0.10), rgba(169, 95, 247, 0.10));
  color: #1257c8;
  font-weight: 850;
  font-size: 14px;
}

.best-for-list span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #05c7ee, #3578f6 50%, #a95ff7);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.mini-product-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e8eef8;
  box-shadow: 0 14px 35px rgba(28, 50, 88, 0.08);
}

.mini-product-note h4 {
  margin-bottom: 8px;
  color: #0b1220;
  font-size: 16px;
}

.mini-product-note p {
  color: #667085;
  font-size: 14px;
}































/* 404 Page */

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(5, 199, 238, 0.16), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(169, 95, 247, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.error-card {
  width: min(640px, 100%);
  text-align: center;
  padding: 54px 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8eef8;
  box-shadow: 0 24px 70px rgba(28, 50, 88, 0.14);
}

.error-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 20px;
  padding: 10px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e8eef8;
}

.error-card h1 {
  font-size: clamp(70px, 12vw, 130px);
  line-height: 0.9;
  margin-bottom: 12px;
  color: transparent;
  background: linear-gradient(135deg, #05c7ee, #3578f6 50%, #a95ff7);
  -webkit-background-clip: text;
  background-clip: text;
}

.error-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.error-card p {
  color: #667085;
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto 28px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}



/* Header full logo final fix */

.header-inner {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 px !important;
}

.site-header .brand {
  width: auto !important;
  flex-shrink: 0 !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  justify-content: flex-start !important;
}

.site-header .brand img.header-full-logo {
  width: 400px !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  display: block !important;
}



/* Footer full logo image fix */

.footer .brand.footer-brand {
  width: fit-content !important;
  margin-bottom: 18px !important;
}

.footer .brand img.footer-full-logo {
  width: 340px !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* responsive */


@media (max-width: 560px) {
  .product-title-row {
    align-items: flex-start;
  }

  .product-logo {
    width: 70px;
    height: 70px;
    padding: 8px;
    border-radius: 18px;
    transform: none;
    margin-top: 0;
  }

  .product-big .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-big .btn {
    width: 100%;
  }
}




@media (max-width: 560px) {
  .logo-word {
    font-size: 18px !important;
    letter-spacing: 4px !important;
  }

  .logo-tagline {
    gap: 7px !important;
    margin-top: 6px !important;
  }

  .logo-tagline .tag-text {
    font-size: 8px !important;
    letter-spacing: 3px !important;
  }

  .logo-tagline .tag-line {
    width: 24px;
    height: 1.5px;
  }

  .site-header .brand img {
    width: 42px;
    height: 42px;
  }
}


















@media (max-width: 1050px) {

  .cards.three,
  .cards.two,
  .product-layout,
  .split,
  .solutions-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-showcase {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(92%, 1180px);
  }

  .menu-btn {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 4%;
    right: 4%;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-menu a {
    border-radius: 14px;
  }

  .section-pad {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .mini-stats,
  .comparison,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .float-label {
    position: static;
    display: inline-flex;
    margin: 12px 8px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand small {
    display: none;
  }

  .hero h1,
  .page-hero h1,
  .section-head h2,
  .big-title {
    letter-spacing: -1.3px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .showcase-card,
  .detail-card,
  .card,
  .product-big,
  .product-side,
  .solution-panel,
  .contact-card,
  .contact-form {
    padding: 24px;
  }

  .flow-boxes,
  .industry-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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



@media (max-width: 560px) {
  .site-header .brand img.header-full-logo {
    width: 230px !important;
  }

  .header-inner {
    padding: 0 14px !important;
  }
}


@media (max-width: 560px) {
  .footer .brand img.footer-full-logo {
    width: 240px !important;
  }
}







/* //........................................ */
/* Desktop header logo */
.site-header .brand img.header-full-logo {
  width: 450px !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  display: block !important;
}

.site-header .brand {
  width: auto !important;
  flex-shrink: 0 !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  justify-content: flex-start !important;
}

.header-inner {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

/* Mobile fix */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px !important;
  }

  .site-header .brand img.header-full-logo {
    width: 240px !important;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 0 14px !important;
  }

  .site-header .brand img.header-full-logo {
    width: 210px !important;
  }
}


.footer .brand img.footer-full-logo {
  width: 420px !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 768px) {
  .footer .brand img.footer-full-logo {
    width: 240px !important;
  }
}

@media (max-width: 560px) {
  .footer .brand img.footer-full-logo {
    width: 190px !important;
  }
}