/* Improved platform section cards */
.platform-features-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.platform-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 20px 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.platform-feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--black);
}
.platform-feature-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-feature-title {
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--text);
}
.platform-feature-desc {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .platform-features-cards {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .platform-features-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .platform-feature-card {
    padding: 22px 10px 18px 10px;
  }
}
/* Nav button text white */
.site-nav .btn-primary,
.site-nav .btn-primary:visited {
  color: #fff !important;
  background: var(--black);
  border-color: var(--black);
}
.site-nav .btn-primary:hover {
  background: #222;
  color: #fff !important;
}
/* Hero background image */
.hero {
  /* No background image, image will be beside hero content */
  position: relative;
}
.hero::before {
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}

/* White text for Get Started button */

white-text {
  color: #fff !important;
  background: var(--accent);
  border-color: var(--accent);
}
.btn-white-text:hover {
  background: #222;
  color: #fff;
}
/*
  CloudNova Landing Styles
  - Modern, accessible, responsive
  - Uses CSS variables for easy theming
*/

:root {
  --white: #fff;
  --black: #111;
  --light-gray: #f7f7f7;
  --bg: var(--white);
  --bg-alt: var(--light-gray);
  --panel: #f7f7f7;
  --text: var(--black);
  --muted: #888;
  --accent: var(--black);
  --border: #ededed;
  --ring: rgba(0,0,0,0.06);
  --radius: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 6px 24px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--panel);
  padding: 8px 12px;
  border-radius: 6px;
}

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

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  letter-spacing: 0;
}

h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
}

h3 {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.2px;
  color: var(--text);
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

ul {
  padding-left: 1.1rem;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 180ms ease;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  /* No hover effect for form submit button */
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: none;
}

.btn-secondary {
  background: var(--white);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--off-white);
  border-color: var(--dark-gray);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--light-gray);
  border-color: var(--dark-gray);
}

.btn-small {
  padding: 8px 12px;
  font-size: 0.95rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

body {
  padding-top: 70px; /* adjust if header height changes */
}

/* Floating Back to Top Button */
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 32px;
  background: var(--black, #111);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  opacity: 0.85;
  z-index: 2000;
  transition: opacity 0.2s, background 0.2s;
}
#backToTop:hover {
  opacity: 1;
  background: var(--primary, #222);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
}

.brand-text {
  font-size: 1.1rem;
}

.site-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  color: var(--muted);
}

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

.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(60% 40% at 70% 30%, rgba(0, 0, 0, 0.02), transparent),
    radial-gradient(60% 40% at 30% 60%, rgba(0, 0, 0, 0.01), transparent);
  filter: blur(40px);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 72px 0;
}

.hero-copy .lead {
  font-size: 1.18rem;
  color: var(--text);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin: 18px 0 8px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  color: var(--muted);
  margin: 10px 0 24px;
  flex-wrap: wrap;
}

.hero-services {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.service-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: all 200ms ease;
}

.service-tag:hover {
  background: var(--light-gray);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-img-wrap {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.08) brightness(0.98);
}

.orb {
  position: absolute;
  inset: 10% -10% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02) 60%, transparent 70%),
    radial-gradient(closest-side, rgba(0, 0, 0, 0.04), transparent 60%);
  border-radius: 50%;
  filter: blur(6px);
  transform: translateY(0);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {

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

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



.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  transition: all 200ms ease;
  position: relative;
}

.feature:hover {
  border-color: var(--dark-gray);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  transition: all 200ms ease;
}

.feature:hover .feature-icon {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.feature-content h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.feature-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-benefits li {
  padding: 6px 0;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.feature-benefits li:before {
  content: "•";
  color: var(--accent);
  font-weight: 600;
  position: absolute;
  left: 0;
}

.checks {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.checks li {
  color: var(--muted);
}

.checks span {
  color: var(--accent);
  margin-right: 8px;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 48px;
  color: var(--muted);
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* Simpler pricing style */
.simple-pricing .pricing-card {
  box-shadow: none;
  border-width: 1.5px;
  padding: 32px 20px;
  min-height: 320px;
}
.simple-pricing .featured {
  border-color: var(--accent);
  background: var(--off-white);
}
.simple-pricing .pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.simple-pricing .plan-features {
  margin-bottom: 24px;
}
.simple-pricing .plan-features li {
  padding: 8px 0;
  font-size: 0.97rem;
}
.simple-pricing .price {
  margin: 10px 0 8px;
}
.simple-pricing .btn-full {
  margin-top: 8px;
}

/* Platform section improvements */
.platform-section {
  text-align: center;
  padding-bottom: 32px;
}
.platform-desc {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.08rem;
}
.platform-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.platform-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  min-width: 120px;
  font-size: 1rem;
  gap: 8px;
  box-shadow: var(--shadow);
}
.platform-icon {
  font-size: 1.5rem;
  margin-bottom: 2px;
}


/* Testimonials: multiple cards, clean spacing */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 32px 22px;
  text-align: left;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial blockquote {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial .avatar-placeholder {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonial {
    padding: 24px 10px;
  }
}

/* Centered section headers for pricing and customers */
#pricing-title, #customers-title {
  text-align: center;
  width: 100%;
  display: block;
}

/* Section spacing and clarity improvements */
.section {
  padding: 88px 0 72px 0;
}
.section-header {
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .platform-grid {
    gap: 18px;
  }
  .single-testimonial .testimonial {
    padding: 28px 10px;
  }
}

@media (max-width: 700px) {
  .platform-grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .section {
    padding: 56px 0 40px 0;
  }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: border-color 200ms ease;
}

.pricing-card:hover {
  border-color: var(--dark-gray);
}

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 16px 0 8px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--muted);
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

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

.plan-description {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  text-align: left;
}

.plan-features li {
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
}

.plan-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
  margin-right: 12px;
}

.btn-full {
  width: 100%;
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo {
  background: var(--white);
  border: 1px dashed var(--border);
  color: var(--muted);
  text-align: center;
  padding: 18px 12px;
  border-radius: 10px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 10px 0;
  color: var(--text);
  font-size: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-card {
  padding: 8px;
}

.media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  filter: grayscale(0.3) contrast(1.1);
}

/* Clean image treatment */
.vintage-img {
  filter: grayscale(0.2) contrast(1.1) brightness(1.02);
}

.vintage-img:hover {
  filter: grayscale(0) contrast(1.15) brightness(1.05);
  transition: filter 200ms ease;
}

.bullets {
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.form-field {
  display: grid;
  gap: 6px;
}

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

label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

input,
textarea {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  outline: none;
  transition: all 200ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  flex-wrap: wrap;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 200ms ease;
}

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

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }

  .logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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


}

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

  .nav-list {
    position: absolute;
    right: 0;
    top: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: none;
    flex-direction: column;
    width: 220px;
    box-shadow: var(--shadow-lg);
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

}

.nav-list a.active,
.nav-list a:active {
  color: var(--black);
  background: none;
  position: relative;
}

.nav-underline {
  position: absolute;
  height: 3px;
  background: var(--black, #111);
  border-radius: 2px;
  transition: left 0.3s cubic-bezier(.4,0,.2,1), width 0.3s cubic-bezier(.4,0,.2,1), top 0.3s, opacity 0.2s;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}
.site-nav {
  position: relative;
}
  
  .footer-links {
    order: -1;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }


/* Spacing rhythm improvements */
.section {
  padding: 84px 0;
}

.hero-inner {
  padding: 88px 0;
}

.footer-inner {
  padding: 24px 0 36px;
}