﻿:root {
  --ink: #111418;
  --muted: #5f6b72;
  --surface: #ffffff;
  --peach: #f6e2d2;
  --sand: #f9f1ea;
  --teal: #1f7a72;
  --navy: #0f2838;
  --accent: #f4713d;
  --accent-dark: #d35b2b;
  --line: rgba(17, 20, 24, 0.12);
  --shadow: 0 24px 60px rgba(15, 40, 56, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
}

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

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

.page {
  padding-top: 88px;
  min-height: 100vh;
  background: radial-gradient(circle at 15% 10%, rgba(244, 113, 61, 0.2), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(31, 122, 114, 0.18), transparent 45%),
    linear-gradient(180deg, #fdf6f0 0%, #f6efe8 100%);
  position: relative;
  overflow-x: hidden;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' fill='none'%3E%3Cpath d='M0 199.5h200' stroke='%23e6d9cf' stroke-width='0.7'/%3E%3Cpath d='M199.5 0v200' stroke='%23e6d9cf' stroke-width='0.7'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 20, 24, 0.05);
  box-shadow: 0 12px 30px rgba(15, 40, 56, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(15, 40, 56, 0.18);
}

.logo {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.4px;
}

.logo span {
  color: var(--accent);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.link {
  color: var(--muted);
  font-weight: 500;
}

.button {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 30px rgba(244, 113, 61, 0.35);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.ghost {
  border-color: rgba(17, 20, 24, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.button.ghost:hover {
  border-color: rgba(17, 20, 24, 0.3);
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  padding: 0.4rem;
  gap: 0.3rem;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4vw;
  padding: 80px 6vw 40px;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-family: "Fraunces", "Times New Roman", serif;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.highlight-chip {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(15, 40, 56, 0.08);
  color: var(--navy);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.hero-stats .stat {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.hero-stats .label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31, 122, 114, 0.25), transparent 70%);
  top: 10%;
  right: 10%;
  filter: blur(10px);
  z-index: 0;
}

.hero-panel {
  background: white;
  padding: 1.4rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 20, 24, 0.08);
  z-index: 1;
}

.hero-panel img {
  border-radius: 16px;
}

.floating-card {
  position: absolute;
  bottom: 10%;
  left: -5%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  width: 220px;
  box-shadow: 0 16px 40px rgba(15, 40, 56, 0.15);
  border: 1px solid rgba(17, 20, 24, 0.08);
  z-index: 2;
}

.card-title {
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.card-body {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.card-footer {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(31, 122, 114, 0.12);
  color: var(--teal);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.muted {
  background: rgba(17, 20, 24, 0.08);
  color: var(--muted);
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 3rem);
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid,
.workflow-steps,
.industry-grid,
.security-grid,
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(17, 20, 24, 0.08);
  box-shadow: 0 16px 40px rgba(15, 40, 56, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-card h3 {
  margin-top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.card-icon,
.step-icon,
.industry-icon,
.security-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(15, 40, 56, 0.08);
}

.card-icon.accent,
.step-icon.accent,
.industry-icon.accent {
  color: var(--accent);
  background: rgba(244, 113, 61, 0.16);
}

.card-icon.teal,
.step-icon.teal,
.industry-icon.teal {
  color: var(--teal);
  background: rgba(31, 122, 114, 0.16);
}

.card-icon.navy,
.step-icon.navy,
.industry-icon.navy {
  color: var(--navy);
  background: rgba(15, 40, 56, 0.16);
}

.card-icon svg,
.step-icon svg,
.industry-icon svg,
.security-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-visuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.visual-card {
  background: white;
  border-radius: 22px;
  border: 1px solid rgba(17, 20, 24, 0.08);
  box-shadow: 0 20px 40px rgba(15, 40, 56, 0.12);
  overflow: hidden;
}

.visual-card img {
  width: 100%;
}

.visual-card figcaption {
  padding: 1rem 1.4rem 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.workflow {
  background: rgba(31, 122, 114, 0.08);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.workflow-steps {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step-card {
  background: white;
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 20, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.step-number {
  font-weight: 700;
  color: var(--accent);
}

.workflow-visual {
  position: relative;
}

.workflow-visual img {
  border-radius: 26px;
  border: 1px solid rgba(17, 20, 24, 0.12);
  box-shadow: 0 24px 50px rgba(15, 40, 56, 0.18);
}

.workflow-overlay {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(17, 20, 24, 0.1);
  box-shadow: 0 18px 40px rgba(15, 40, 56, 0.16);
}

.overlay-title {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.overlay-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.industries {
  background: white;
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.industry-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.industry-card {
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 20, 24, 0.08);
  background: rgba(246, 226, 210, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.industry-visual {
  position: relative;
}

.industry-visual img {
  border-radius: 24px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  box-shadow: 0 20px 40px rgba(15, 40, 56, 0.16);
}

.industry-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid rgba(17, 20, 24, 0.1);
}

.security {
  background: rgba(15, 40, 56, 0.06);
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 2.5rem;
  align-items: center;
}

.security-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.security-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: var(--navy);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.security-icon {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.security-card p {
  color: rgba(255, 255, 255, 0.75);
}

.security-visual {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(17, 20, 24, 0.08);
  box-shadow: 0 24px 50px rgba(15, 40, 56, 0.18);
}

.security-diagram {
  display: grid;
  gap: 1rem;
}

.security-node {
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(31, 122, 114, 0.1);
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.node-title {
  color: var(--navy);
}

.node-meta {
  color: var(--teal);
}

.security-badge {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(17, 20, 24, 0.08);
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(244, 113, 61, 0.6);
  box-shadow: 0 24px 50px rgba(244, 113, 61, 0.25);
}

.pricing-card .tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.6rem 0 1rem;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-note {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  background: rgba(244, 113, 61, 0.12);
  border: 1px solid rgba(244, 113, 61, 0.2);
  font-weight: 600;
  flex-wrap: wrap;
  gap: 1rem;
}

.pricing-note a {
  color: var(--accent);
}

.contact {
  padding-bottom: 100px;
}

.contact-card {
  background: linear-gradient(120deg, rgba(244, 113, 61, 0.12), rgba(31, 122, 114, 0.15));
  border-radius: 26px;
  padding: 2.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(17, 20, 24, 0.08);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.site-footer {
  padding: 40px 6vw 40px;
  border-top: 1px solid rgba(17, 20, 24, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 2.5rem;
  align-items: start;
}

.footer-brand p {
  color: var(--muted);
}

.footer-brand address {
  font-style: normal;
  color: var(--muted);
  margin-top: 1rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  color: var(--muted);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 20, 24, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-page .page {
  padding-top: 88px;
  min-height: 100vh;
}

.contact-hero {
  padding: 80px 6vw 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: start;
}

.contact-copy h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin: 0 0 1rem;
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.detail-card {
  background: white;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(17, 20, 24, 0.08);
  box-shadow: 0 12px 30px rgba(15, 40, 56, 0.08);
}

.detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  display: block;
  margin-bottom: 0.6rem;
}

.detail-card address {
  font-style: normal;
  color: var(--ink);
}

.contact-visual {
  margin-top: 2rem;
  position: relative;
}

.contact-visual img {
  border-radius: 22px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  box-shadow: 0 24px 50px rgba(15, 40, 56, 0.18);
}

.contact-visual-card {
  position: absolute;
  bottom: -18px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-panel {
  background: white;
  border-radius: 26px;
  padding: 2.4rem;
  border: 1px solid rgba(17, 20, 24, 0.08);
  box-shadow: 0 24px 50px rgba(15, 40, 56, 0.18);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(17, 20, 24, 0.16);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fbfbfb;
}

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

.form-status {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(31, 122, 114, 0.12);
  color: var(--teal);
  font-weight: 600;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.error {
  background: rgba(244, 113, 61, 0.15);
  color: var(--accent);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .workflow-grid,
  .industry-layout,
  .security-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .workflow-overlay,
  .contact-visual-card {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: absolute;
    top: 70px;
    right: 6vw;
    left: 6vw;
    background: white;
    border-radius: 18px;
    padding: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(15, 40, 56, 0.18);
    border: 1px solid rgba(17, 20, 24, 0.08);
    display: none;
  }

  .nav-wrap.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .hero-visual {
    order: -1;
  }

  .floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1.5rem;
  }

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

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
  }

  .site-header {
    padding: 16px 5vw;
  }

  .pricing-note {
    align-items: flex-start;
  }
}


