:root {
  --bg: #ffffff;
  --bg-soft: #f2f2f2;
  --text: #1a1a1a;
  --muted: #777777;
  --accent: #ffe123;
  --accent-text: #1a1a1a;
  --card: #ffffff;
  --border: #eaeaea;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", "Raleway", Arial, sans-serif;
  line-height: 1.6;
  max-width: 100%;
}

img { max-width: 100%; }

#home, #about-us, #app-gallery, #contact {
  scroll-margin-top: 72px;
}

.wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header.site-header--loveit {
  background-image: linear-gradient(135deg, #5cd6cf, #46c6be);
  background-attachment: initial;
}

.site-header.site-header--sap {
  background-image: none;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
}

.site-header--sap .brand,
.site-header--sap .brand-word,
.site-header--sap nav a {
  color: var(--text);
}

.site-header--sap nav a:hover {
  color: #2f6fed;
  border-bottom-color: #2f6fed;
}

.site-header--sap .nav-toggle span {
  background: var(--text);
}

.site-header .brand,
.site-header .brand-word,
.site-header nav a {
  color: #ffffff;
}

.site-header nav a:hover {
  color: #ffffff;
  border-bottom-color: var(--accent);
}

.site-header .nav-toggle span {
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark { flex: 0 0 auto; border-radius: 9px; }

.brand-word {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav {
  flex-wrap: wrap;
}

nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

nav a:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 32px;
  height: 24px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

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

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px 24px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("/images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    z-index: 20;
  }

  nav.open {
    display: flex;
  }

  nav a {
    margin-left: 0;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}


.hero {
  padding: 96px 24px 64px;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 8px;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 8px;
}

.hero .lead-strong {
  font-weight: 700;
  font-size: 1.3rem;
  margin: 8px auto 8px;
}

.hero-banner {
  background-image: url("/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-banner h1 {
  color: #ffffff;
}

.hero-banner p.lead {
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-text);
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.15s ease;
}

.btn:hover { opacity: 0.85; }

.btn img { display: block; }

.skill-bar {
  background: var(--bg-soft);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  margin-top: 8px;
}

.skill-bar-fill {
  background: var(--accent);
  height: 100%;
  border-radius: 999px;
}

.section {
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .section {
    max-width: 70%;
    margin: 0 auto;
  }
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.section p.subhead {
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 640px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.card h3 { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h4 {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 8px;
  opacity: 0.85;
}

.footer-grid a:hover { opacity: 1; color: var(--accent); }

.copyright {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 32px;
}

article.post {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px;
}

@media (min-width: 1024px) {
  article.post {
    max-width: 960px;
  }
}

article.post h1 {
  font-size: 2.1rem;
}

article.post h2 {
  font-size: 1.4rem;
  margin-top: 40px;
}

article.post h3 {
  font-size: 1.15rem;
  margin-top: 28px;
}

article.post ul {
  color: var(--text);
  padding-left: 20px;
  margin: 0 0 16px;
}

article.post li {
  margin-bottom: 8px;
}

article.post .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* Home hero (gradient banner) */
.home-hero {
  background-image: url("/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 140px 24px 90px;
}

.home-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: right;
}

.home-hero-title {
  margin: 0 0 28px;
  font-weight: 800;
  line-height: 1.05;
}

.home-hero-title .sm {
  display: block;
  font-weight: 600;
  font-size: 1.8rem;
}

.home-hero-title .lg {
  display: block;
  font-weight: 800;
  font-size: 4rem;
}

.home-hero-bold {
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 24px;
}

.home-hero-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.home-hero-lines p {
  margin: 4px 0;
  font-size: 0.95rem;
  opacity: 0.92;
}

.home-hero-badge img {
  display: block;
}

/* Tech-for-good section */
.tech-good {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.tech-good h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.tech-good-bar {
  width: 48px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.tech-good p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.tech-good-media {
  position: relative;
  height: 760px;
  max-height: 85vh;
  overflow: hidden;
  border-radius: 16px;
}

.tech-good-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

@media (max-width: 900px) {
  .tech-good-media {
    height: 380px;
    max-height: none;
  }
}

.btn-pill {
  display: inline-block;
  background: #f2784b;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: opacity 0.15s ease;
}

.btn-pill:hover { opacity: 0.85; }

/* Carousels (shared) */
.carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 20px 4px;
  flex: 1;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s ease;
}

.carousel-arrow:hover { background: var(--bg-soft); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
}

.carousel-dots button.active { background: #2f8fe0; }

.gallery-section {
  background: var(--bg-soft);
  overflow: hidden;
}

@media (min-width: 1024px) {
  #app-gallery.gallery-section {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-section > h2,
  .gallery-section > p.subhead {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery-swiper {
  position: relative;
  padding: 48px 24px;
}

.gallery-swiper .shot-item {
  width: 230px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gallery-swiper .shot-item img { width: 100%; display: block; }

.gallery-swiper .gallery-prev,
.gallery-swiper .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.gallery-swiper .gallery-prev { left: 24px; }
.gallery-swiper .gallery-next { right: 24px; }

.carousel-dots.gallery-pagination {
  margin-top: 8px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

.gallery-dot.active { background: #2f8fe0; }

@media (max-width: 900px) {
  .gallery-swiper .shot-item { width: 190px; }
}

@media (max-width: 720px) {
  .gallery-swiper .shot-item { width: 150px; }
}

/* Testimonials carousel */
.testi-viewport {
  overflow: hidden;
  flex: 1;
}

.testi-track {
  display: flex;
  transition: transform 0.35s ease;
}

.testi-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 0 0 100%;
}

.testi-card {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.testi-card p.quote { color: var(--text); margin-bottom: 20px; }
.testi-card p.meta { font-weight: 600; color: var(--text); }

@media (max-width: 900px) {
  .tech-good { grid-template-columns: 1fr; text-align: center; }
  .tech-good-bar { margin-left: auto; margin-right: auto; }
  .tech-good p { margin-left: auto; margin-right: auto; }
  .home-hero-inner { text-align: center; }
  .home-hero-bottom { justify-content: center; }
}

/* Contact CTA (gradient banner, matches hero) */
.contact-cta {
  background-image: url("/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 100px 24px;
}

.contact-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-cta h2 {
  font-weight: 800;
  font-style: italic;
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 14px 40px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: #ffffff;
  color: #e0245e;
}

.about-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}

.about-hero .eyebrow {
  color: #f0125f;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  font-style: italic;
  margin: 0;
  color: #ffffff;
}

@media (max-width: 720px) {
  .about-hero { min-height: 320px; padding: 72px 20px; }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--border);
}

.stat-card:last-child { border-right: none; }

.stat-value {
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  margin: 0 0 8px;
  color: var(--text);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
}

.stat-label--pink { color: #f0125f; }
.stat-label--yellow { color: #d9a300; }
.stat-label--cyan { color: #12a8ba; }
.stat-label--indigo { color: #4b3cf0; }

@media (max-width: 720px) {
  .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
}

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

.color-block {
  min-height: 320px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.color-block--cyan { background: #26e0f0; color: #1a1a1a; }
.color-block--yellow { background: #ffd400; color: #1a1a1a; }
.color-block--pink { background: #f0125f; color: #ffffff; }
.color-block--dark { background: #111111; color: #ffffff; }

.color-block h3 {
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0 0 16px;
}

.color-block p { max-width: 320px; margin: 0; }

.color-block .counter-value {
  font-size: 3rem;
  font-weight: 800;
  font-style: italic;
  margin: 0;
}

.color-block .counter-label {
  color: #f0125f;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .color-blocks { grid-template-columns: 1fr; }
}

.skill-bar-fill {
  transition: width 1.1s ease;
}

.cta-gradient {
  padding: 100px 24px;
  background: linear-gradient(120deg, #ffb020 0%, #f0125f 28%, #b026ff 55%, #2f6fed 78%, #26e0d0 100%);
  color: #ffffff;
}

.cta-gradient-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-heading {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.05;
  margin: 0;
}

.cta-gradient p { color: rgba(255, 255, 255, 0.9); }

@media (max-width: 760px) {
  .cta-gradient-inner { grid-template-columns: 1fr; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  transform: translateX(-36px);
}

.reveal-left.reveal-visible {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-right.reveal-visible {
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav a { margin-left: 14px; font-size: 0.85rem; }
  .home-hero-title .lg { font-size: 2.6rem; }
  .home-hero-title .sm { font-size: 1.3rem; }
  .testi-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .testi-track {
    transform: none !important;
    gap: 16px;
  }
  .testi-page { display: contents; }
  .testi-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
  .carousel[data-carousel="page"] .carousel-arrow,
  .testi-pagination {
    display: none;
  }
  .contact-cta h2 { font-size: 1.8rem; }
}

/* LoveIt landing page */
.font-script {
  font-family: "Caveat", "Poppins", cursive;
}

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  line-height: 1.1;
}

.badge svg { flex-shrink: 0; }

.badge .badge-eyebrow {
  display: block;
  font-size: 0.65rem;
  text-transform: capitalize;
}

.badge .badge-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}

.loveit-hero {
  background: linear-gradient(135deg, #5cd6cf, #46c6be);
  color: #ffffff;
  padding: 72px 24px;
  overflow: hidden;
  position: relative;
}

.loveit-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.loveit-hero h1 {
  font-family: "Caveat", "Poppins", cursive;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 0 0 20px;
}

.loveit-hero p.lead {
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.95);
}

.loveit-hero-blob {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 500px;
  max-width: 45vw;
  opacity: 0.9;
  z-index: 0;
}

.loveit-mockup {
  justify-self: center;
  width: 100%;
  max-width: 340px;
  height: auto;
}

.loveit-fun {
  background: #fdf3e7;
  text-align: center;
  padding: 80px 24px;
}

.loveit-testimonio {
  display: block;
  margin: 0 auto 24px;
  max-width: 340px;
  height: auto;
}

.loveit-fun h2 {
  font-family: "Caveat", "Poppins", cursive;
  font-weight: 700;
  font-size: 2.6rem;
  color: #1a1a1a;
  margin: 0 0 24px;
}

.loveit-fun .store-badges,
.loveit-goal .store-badges {
  justify-content: center;
}

.loveit-fun .experience {
  margin: 40px 0 20px;
  font-weight: 700;
}

.loveit-goal {
  background: linear-gradient(135deg, #ee4d76, #f2617f);
  color: #ffffff;
  padding: 80px 24px;
}

.loveit-goal-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.loveit-goal h2 {
  font-family: "Caveat", "Poppins", cursive;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 20px;
}

.loveit-goal p {
  max-width: 480px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
  .loveit-hero-inner,
  .loveit-goal-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .loveit-hero p.lead,
  .loveit-goal p {
    margin-left: auto;
    margin-right: auto;
  }
  .loveit-hero .store-badges,
  .loveit-goal .store-badges {
    justify-content: center;
  }
  .loveit-goal-inner { direction: ltr; }
}

/* Smart Air Printer landing page */
.sap-hero {
  padding: 72px 24px 40px;
  position: relative;
}

.sap-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sap-eyebrow {
  color: #2f6fed;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.sap-hero-copy h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin: 0 0 20px;
}

.sap-lead {
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 32px;
}

.sap-btn-primary {
  display: inline-block;
  background: #2f6fed;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
}

.sap-btn-primary:hover {
  background: #2559c9;
}

.sap-hero-art {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 340px;
}

.sap-hero-card {
  background: linear-gradient(160deg, #2f8fed, #2f6fed);
  border-radius: 32px;
  aspect-ratio: 3 / 4;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.sap-card-chip {
  position: absolute;
  width: 64px;
  height: 84px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.sap-chip-1 { top: 12%; left: -8%; background: linear-gradient(160deg, #3a3a63, #191933); transform: rotate(-10deg); }
.sap-chip-2 { top: -4%; right: -6%; background: linear-gradient(160deg, #c04bd6, #6b2fed); transform: rotate(8deg); }
.sap-chip-3 { bottom: 6%; right: -8%; background: linear-gradient(160deg, #ffb020, #f2542d); transform: rotate(-6deg); }

.sap-scroll {
  display: block;
  width: 44px;
  height: 44px;
  margin: 40px auto 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  color: var(--text);
  text-decoration: none;
}

.sap-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  text-align: center;
}

.sap-features h2 {
  font-size: 2rem;
  margin: 0 0 48px;
}

.sap-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  margin-bottom: 56px;
}

.sap-num {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.sap-num-purple { background: #8b3ff0; }
.sap-num-pink { background: #e0245e; }
.sap-num-green { background: #1fa971; }

.sap-feature h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.sap-feature p {
  color: var(--muted);
  margin: 0;
}

.sap-features-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.sap-blob {
  position: absolute;
  width: 320px;
  height: 300px;
  background: #2f6fed;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  z-index: 0;
}

.sap-blob-left { left: calc(50% - 400px); }
.sap-blob-right { right: calc(50% - 400px); }

.sap-features-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.sap-screens {
  background: linear-gradient(135deg, #143a8f, #2f6fed);
  color: #ffffff;
  padding: 80px 24px;
  overflow: hidden;
}

.sap-screens-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.sap-screens-copy h2 {
  font-size: 2rem;
  margin: 0 0 12px;
}

.sap-screens-copy p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.sap-screens-stack {
  display: flex;
  justify-content: center;
  gap: -20px;
}

.sap-phone-mock {
  width: 140px;
  aspect-ratio: 9 / 19;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  margin-left: -30px;
}

.sap-phone-mock:first-child { margin-left: 0; transform: rotate(-8deg); }
.sap-phone-mock:nth-child(2) { transform: translateY(-16px); z-index: 1; }
.sap-phone-mock:last-child { transform: rotate(8deg); }

.sap-phone-bar {
  height: 22%;
  background: #6b3ff0;
  border-radius: 20px 20px 0 0;
}

.sap-reviews {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.sap-reviews-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.sap-reviews-label {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 16px;
}

.sap-reviews-quote {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.sap-quote-mark {
  color: #2f6fed;
  font-size: 2rem;
  margin-right: 6px;
}

.sap-download {
  background: #fbfbfb;
  padding: 80px 24px;
}

.sap-download-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sap-download-icon {
  display: inline-block;
  font-size: 1.4rem;
  background: #2f6fed;
  color: #ffffff;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

.sap-download-copy h2 {
  font-size: 1.8rem;
  margin: 0 0 14px;
}

.sap-download-copy p {
  color: var(--muted);
  max-width: 440px;
  margin: 0 0 20px;
}

.sap-download-copy ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 28px;
  color: var(--text);
  font-weight: 600;
}

.sap-download-copy li { margin-bottom: 6px; }

.sap-download-art {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 320px;
}

.sap-download-phone-back {
  position: absolute;
  right: 0;
  top: 30px;
  width: 60%;
  aspect-ratio: 9 / 19;
  background: linear-gradient(160deg, #2f8fed, #2f6fed);
  border-radius: 24px;
  transform: rotate(8deg);
  z-index: 0;
}

.sap-download-phone {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 10px;
  border: 1px solid var(--border);
}

.sap-download-phone-bar {
  background: #6b3ff0;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 12px 12px 0 0;
}

.sap-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}

.sap-app-tile {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 12px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.sap-app-tile span {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.sap-app-status {
  background: #1fa971;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  margin: 0 10px 10px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .sap-hero-inner,
  .sap-screens-inner,
  .sap-download-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sap-lead { margin-left: auto; margin-right: auto; }
  .sap-features-grid { grid-template-columns: 1fr; }
  .sap-download-copy ul { display: inline-block; text-align: left; }
  .sap-blob-left, .sap-blob-right { display: none; }
}

/* Services page */
.site-header.site-header--services {
  background-image: none;
  background-color: #f0125f;
  background-attachment: initial;
}

.site-header--services nav a:hover {
  color: #26e0f0;
  border-bottom-color: #26e0f0;
}

#graphic-design, #marketing, #web-development, #svc-gallery {
  scroll-margin-top: 72px;
}

.svc-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 24px;
}

.svc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.svc-content {
  max-width: 520px;
  margin-left: auto;
}

.svc-section--pink {
  background: #f0125f;
  color: #ffffff;
}

.svc-section--pink .svc-title {
  color: #26e0f0;
}

.svc-section--yellow {
  background: #ffd400;
  color: #1a1a1a;
}

.svc-section--yellow .svc-title {
  color: #1a1a1a;
}

.svc-section--blue {
  background: #2f6fed;
  color: #ffffff;
}

.svc-section--blue .svc-title {
  color: #ffffff;
}

.svc-title {
  font-weight: 800;
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1.05;
  margin: 0 0 24px;
}

.svc-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 32px;
  opacity: 0.95;
}

.svc-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  color: inherit;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease;
}

.svc-section--pink .svc-next-btn:hover {
  background: #ffffff;
  color: #f0125f;
}

.svc-section--yellow .svc-next-btn:hover {
  background: #1a1a1a;
  color: #ffd400;
}

.svc-section--blue .svc-next-btn:hover {
  background: #ffffff;
  color: #2f6fed;
}

.svc-gallery {
  padding: 80px 24px;
}

.svc-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.svc-gallery-grid img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .svc-title { font-size: 2.2rem; }
  .svc-content { margin-left: 0; }
}
