@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap");

/* ============================================================
   MAIN UNIFIED STYLESHEET
   - Shared: reset, header (site-header)
   - body.page-home  → index (new-style)
   - body.page-inner → product / about / contact (product+us style)
   ============================================================ */

:root {
  /* Homepage palette */
  --gold: #ffb400;
  --gold-light: #ffc933;
  --gold-dark: #e6a200;
  --gold-soft: rgba(255, 180, 0, 0.12);
  --text: #1a1a1a;
  --text-secondary: #555;
  --text-light: #777;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-dark: #1a1a1a;
  --border: #eee;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --max-width: 1140px;
  --transition: all 0.25s ease;

  /* Inner pages palette (product / about / contact) */
  --i-bg: #f5f6f8;
  --i-card: #ffffff;
  --i-card-hover: #fafbfc;
  --i-accent: #d4a017;
  --i-accent-dim: #b8860b;
  --i-text: #1a1d24;
  --i-text-muted: #5c6370;
  --i-border: #e2e5eb;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family:
    "Vazirmatn",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.fa {
  font-family: "Vazirmatn", system-ui, sans-serif;
}

.r2l {
  text-align: right;
  direction: rtl;
}

/* ============================================================
   SHARED HEADER (site-header) — same on all pages
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  padding: 1.2rem 0;
}

.site-header .container,
.header-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 4.8rem;
  width: auto;
  border-radius: 50%;
}

.logo-text {
  font-weight: 700;
  font-size: 1.6 rem;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}

.logo-text span {
  color: #ffb400;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-desktop a {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  color: #555;
  transition: all 0.25s ease;
}

.nav-desktop a:hover {
  color: #e6a200;
  background: rgba(255, 180, 0, 0.12);
}

.nav-toggle {
  display: none;
  background: #fafafa;
  border: none;
  cursor: pointer;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 2.2rem;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1.5rem 2.4rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

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

.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1.2rem 1.6rem;
  border-radius: 12px;
  color: #1a1a1a;
  text-align: right;
  direction: rtl;
  transition: all 0.25s ease;
}

.nav-mobile a:hover {
  background: rgba(255, 180, 0, 0.12);
  color: #e6a200;
}

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

@media (max-width: 480px) {
  .site-header .container,
  .header-inner {
    padding: 0 1.6rem;
  }
}

/* ============================================================
   PAGE-HOME (index) — new-style, preserved
   ============================================================ */
body.page-home {
  background: var(--bg);
  color: var(--text);
  font-size: 1.6rem;
}

body.page-home .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.4rem;
}

body.page-home .hero {
  padding: 6rem 0 8rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

body.page-home .hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}

body.page-home .hero-content {
  position: relative;
  z-index: 1;
}

body.page-home .hero-badge {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

body.page-home .hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: var(--text);
}

body.page-home .hero h1 .en {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

body.page-home .hero .subtitle {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--text-secondary);
  margin-bottom: 2.4rem;
  font-weight: 500;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

body.page-home .hero-desc {
  max-width: 640px;
  margin: 0 auto 3.2rem;
  color: var(--text-light);
  font-size: 1.5rem;
  line-height: 1.8;
}

body.page-home .cta-group {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

body.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

body.page-home .btn-primary {
  background: var(--gold);
  color: #1a1a1a;
}

body.page-home .btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.35);
}

body.page-home .btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid #ddd;
}

body.page-home .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

body.page-home .btn-text {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

body.page-home .btn-text:hover {
  color: var(--gold);
  gap: 0.8rem;
}

body.page-home section {
  padding: 7rem 0;
}

body.page-home .section-title {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

body.page-home .section-line {
  width: 4.8rem;
  height: 0.3rem;
  background: var(--gold);
  margin: 0 auto 4rem;
  border-radius: 2px;
}

body.page-home .section-about {
  background: var(--bg);
}

body.page-home .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

body.page-home .about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

body.page-home .about-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

body.page-home .about-images img:first-child {
  grid-column: 1 / -1;
  height: 26rem;
}

body.page-home .about-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

body.page-home .about-content p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2.4rem;
  line-height: 1.85;
}

body.page-home .about-content .block + .block {
  margin-top: 2.8rem;
}

body.page-home .section-features {
  background: var(--bg-soft);
}

body.page-home .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

body.page-home .feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.8rem 2.2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

body.page-home .feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

body.page-home .feature-icon {
  width: 5.6rem;
  height: 5.6rem;
  margin: 0 auto 1.6rem;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gold-dark);
}

body.page-home .feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}

body.page-home .feature-card p {
  font-size: 1.35rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

body.page-home .section-products {
  background: var(--bg);
}

body.page-home .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

body.page-home .product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

body.page-home .product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(255, 180, 0, 0.4);
}

body.page-home .product-card-image {
  height: 20rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

body.page-home .product-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);
}

body.page-home .product-card-image-1 {
  background-image:
    /*linear-gradient(*/
    /*  to right bottom,*/
    /*  rgba(0, 180, 170, 0.5),*/
    /*  rgba(44, 62, 80, 0.5)*/
    /*),*/
    url("../images/sensor-1.jpg");
}

body.page-home .product-card-image-2 {
  background-image:
    /*linear-gradient(*/
    /*  to right bottom,*/
    /*  rgba(0, 180, 170, 0.5),*/
    /*  rgba(44, 62, 80, 0.5)*/
    /*),*/
    url("../images/board1.jpg");
}

body.page-home .product-card-image-3 {
  background-image:
    /*linear-gradient(*/
    /*  to right bottom,*/
    /*  rgba(0, 180, 170, 0.5),*/
    /*  rgba(44, 62, 80, 0.5)*/
    /*),*/
    url("../images/future3.jpg");
}

body.page-home .product-card-body {
  padding: 2.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.page-home .product-card-body h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--text);
  text-align: right;
}

body.page-home .product-card-body ul {
  margin-bottom: 2rem;
  flex: 1;
}

body.page-home .product-card-body li {
  font-size: 1.4rem;
  color: var(--text-secondary);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  text-align: right;
  position: relative;
  padding-right: 1.6rem;
}

body.page-home .product-card-body li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  right: 0;
  font-weight: 700;
}

body.page-home .product-card-body li:last-child {
  border-bottom: none;
}

body.page-home .product-card-body .btn {
  width: 100%;
  margin-top: auto;
}

body.page-home .section-videos {
  background: var(--bg-soft);
}

body.page-home .videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  max-width: 800px;
  margin: 0 auto;
}

body.page-home .video-card {
  display: flex;
  gap: 2.4rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  align-items: flex-start;
}

body.page-home .video-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
  transform: translateY(-3px);
}

body.page-home .video-thumb {
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.page-home .video-content {
  flex: 1;
  text-align: right;
}

body.page-home .video-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

body.page-home .video-content p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

body.page-home .videos-more {
  text-align: center;
  margin-top: 3.5rem;
}

body.page-home .site-footer {
  background: var(--bg-dark);
  color: #ccc;
  padding: 6rem 0 3rem;
}

body.page-home .footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

body.page-home .footer-logo {
  width: 10rem;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.9;
}

body.page-home .footer-copy {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #aaa;
  text-align: right;
}

body.page-home .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  justify-content: flex-end;
  align-content: flex-start;
}

body.page-home .footer-nav a {
  font-size: 1.4rem;
  color: #ddd;
  transition: var(--transition);
}

body.page-home .footer-nav a:hover {
  color: var(--gold);
}

body.page-home .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2.4rem;
  text-align: center;
  font-size: 1.3rem;
  color: #888;
}

@media (max-width: 1024px) {
  body.page-home .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .products-grid .product-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  body.page-home .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  body.page-home .about-images {
    order: -1;
  }
  body.page-home .about-images img {
    height: 18rem;
  }
  body.page-home .about-images img:first-child {
    height: 22rem;
  }
  body.page-home .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
  body.page-home .products-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .products-grid .product-card:last-child {
    max-width: 100%;
  }
  body.page-home .video-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  body.page-home .video-content {
    text-align: center;
  }
  body.page-home .video-thumb {
    width: 12rem;
    height: 12rem;
  }
  body.page-home .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  body.page-home .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  body.page-home .footer-copy {
    text-align: center;
  }
  body.page-home .footer-nav {
    justify-content: center;
  }
  body.page-home .hero {
    padding: 4rem 0 5rem;
  }
  body.page-home section {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  body.page-home .container {
    padding: 0 1.6rem;
  }
  body.page-home .features-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .cta-group {
    flex-direction: column;
    align-items: center;
  }
  body.page-home .btn {
    width: 100%;
    max-width: 28rem;
  }
  body.page-home .hero h1 {
    font-size: 2.6rem;
  }
  body.page-home .section-title {
    font-size: 2rem;
  }
  body.page-home .feature-card {
    padding: 2.2rem 1.8rem;
  }
  body.page-home .product-card-body {
    padding: 2rem;
  }
}

/* ============================================================
   PAGE-INNER (product / about / contact)
   Original product-style + us-style look preserved.
   rem values ×1.6 so they match previous 16px-root sizing
   under html { font-size: 62.5% }.
   ============================================================ */
body.page-inner {
  background: var(--i-bg);
  color: var(--i-text);
  font-size: 1.6rem; /* base 16px equivalent */
}

body.page-inner .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
body.page-inner .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background: radial-gradient(ellipse at 50% 30%, #eef1f6 0%, var(--i-bg) 70%);
  overflow: hidden;
}

body.page-inner .hero.hero-sm {
  min-height: 50vh;
  padding: 8rem 2rem 6rem;
}

body.page-inner .hero::before {
  content: "";
  position: absolute;
  width: 60rem;
  height: 60rem;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.08) 0%,
    transparent 70%
  );
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

body.page-inner .hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

body.page-inner .hero-content.hero-center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}

body.page-inner .hero-text h1 {
  font-size: clamp(3.5rem, 5vw, 5.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.6rem;
  background: linear-gradient(135deg, #1a1d24 0%, var(--i-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.page-inner .hero-text .tagline {
  font-size: 1.85rem;
  color: var(--i-text-muted);
  margin-bottom: 2.8rem;
  font-weight: 400;
}

body.page-inner .hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--i-accent-dim);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

body.page-inner .cta-group {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

body.page-inner .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2.8rem;
  border-radius: 1.2rem;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

body.page-inner .btn-primary {
  background: linear-gradient(135deg, var(--i-accent), var(--i-accent-dim));
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.25);
}

body.page-inner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 160, 23, 0.35);
}

body.page-inner .btn-outline {
  background: transparent;
  color: var(--i-text);
  border: 1px solid var(--i-border);
}

body.page-inner .btn-outline:hover {
  border-color: var(--i-accent);
  color: var(--i-accent-dim);
}

body.page-inner .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

body.page-inner .hero-image img {
  max-width: 100%;
  max-height: 52rem;
  border-radius: 2rem;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.12),
    0 0 40px rgba(212, 160, 23, 0.06);
  object-fit: contain;
}

body.page-inner .hero-image-fallback {
  display: none;
  width: 100%;
  max-width: 42rem;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #f8f9fb, #eef0f4);
  border-radius: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e5eb;
  color: #d4a017;
  font-size: 1.75rem;
  flex-direction: column;
  gap: 1.2rem;
}

body.page-inner .glow-ring {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.06) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
}

body.page-inner section {
  padding: 9rem 2rem;
}

body.page-inner .section-header {
  text-align: center;
  margin-bottom: 5rem;
}

body.page-inner .section-header h2 {
  font-size: clamp(2.9rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

body.page-inner .section-header p {
  color: var(--i-text-muted);
  font-size: 1.7rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Intro */
body.page-inner .intro {
  background: linear-gradient(180deg, var(--i-bg) 0%, #eef0f4 100%);
}

body.page-inner .intro-card {
  background: var(--i-card);
  border: 1px solid var(--i-border);
  border-radius: 2rem;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body.page-inner .intro-card.intro-full {
  grid-template-columns: 1fr;
}

body.page-inner .intro-card h2 {
  font-size: 2.55rem;
  margin-bottom: 1.6rem;
}

body.page-inner .intro-card p {
  color: var(--i-text-muted);
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
}

body.page-inner .intro-card strong {
  color: var(--i-text);
}

body.page-inner .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

body.page-inner .stat-item {
  background: var(--i-bg);
  border-radius: 1.4rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--i-border);
}

body.page-inner .stat-item .num {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--i-accent);
  display: block;
}

body.page-inner .stat-item .label {
  font-size: 1.35rem;
  color: var(--i-text-muted);
  margin-top: 0.4rem;
}

/* Features */
body.page-inner .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

body.page-inner .feature-card {
  background: var(--i-card);
  border: 1px solid var(--i-border);
  border-radius: 1.6rem;
  padding: 2.8rem 2.4rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

body.page-inner .feature-card:hover {
  background: var(--i-card-hover);
  border-color: rgba(212, 160, 23, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

body.page-inner .feature-icon {
  width: 4.8rem;
  height: 4.8rem;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
  color: var(--i-accent);
}

body.page-inner .feature-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

body.page-inner .feature-card p {
  font-size: 1.5rem;
  color: var(--i-text-muted);
}

/* Detail */
body.page-inner .detail-section {
  background: #eef0f4;
}

body.page-inner .detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

body.page-inner .detail-card {
  background: var(--i-card);
  border: 1px solid var(--i-border);
  border-radius: 1.6rem;
  padding: 2.8rem;
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

body.page-inner .detail-card:hover {
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

body.page-inner .detail-card .icon {
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.15),
    rgba(212, 160, 23, 0.05)
  );
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--i-accent);
}

body.page-inner .detail-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

body.page-inner .detail-card p {
  font-size: 1.45rem;
  color: var(--i-text-muted);
}

/* Apps */
body.page-inner .apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.6rem;
}

body.page-inner .app-item {
  background: var(--i-card);
  border: 1px solid var(--i-border);
  border-radius: 1.4rem;
  padding: 2.4rem 1.6rem;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

body.page-inner .app-item:hover {
  border-color: var(--i-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

body.page-inner .app-item .emoji {
  font-size: 2.9rem;
  margin-bottom: 1rem;
}

body.page-inner .app-item span {
  font-size: 1.5rem;
  font-weight: 500;
}

/* CTA */
body.page-inner .cta-section {
  text-align: center;
  padding: 10rem 2rem;
  background: radial-gradient(ellipse at 50% 50%, #eef1f6 0%, var(--i-bg) 70%);
}

body.page-inner .cta-section h2 {
  font-size: clamp(2.9rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.6rem;
}

body.page-inner .cta-section p {
  color: var(--i-text-muted);
  margin-bottom: 3.2rem;
  font-size: 1.75rem;
}

body.page-inner .cta-section .cta-group {
  justify-content: center;
}

/* Footer light */
body.page-inner footer {
  border-top: 1px solid var(--i-border);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--i-text-muted);
  font-size: 1.45rem;
  background: #fff;
}

body.page-inner footer strong {
  color: var(--i-accent-dim);
}

/* Contact */
body.page-inner .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

body.page-inner .contact-card {
  background: var(--i-card);
  border: 1px solid var(--i-border);
  border-radius: 1.6rem;
  padding: 2.8rem 2.4rem;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

body.page-inner .contact-card:hover {
  border-color: rgba(212, 160, 23, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

body.page-inner .contact-card .icon {
  width: 5.6rem;
  height: 5.6rem;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 1.6rem;
  color: var(--i-accent);
}

body.page-inner .contact-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

body.page-inner .contact-card p,
body.page-inner .contact-card a {
  font-size: 1.5rem;
  color: var(--i-text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

body.page-inner .contact-card a:hover {
  color: var(--i-accent-dim);
}

body.page-inner .contact-card .address {
  line-height: 1.6;
}

/* Form */
body.page-inner .form-section {
  background: #eef0f4;
}

body.page-inner .form-card {
  background: var(--i-card);
  border: 1px solid var(--i-border);
  border-radius: 2rem;
  padding: 4rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body.page-inner .form-group {
  margin-bottom: 2rem;
}

body.page-inner .form-group label {
  display: block;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--i-text);
}

body.page-inner .form-group input,
body.page-inner .form-group textarea,
body.page-inner .form-group select {
  width: 100%;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--i-border);
  border-radius: 1.2rem;
  font-family: inherit;
  font-size: 1.6rem;
  color: var(--i-text);
  background: var(--i-bg);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

body.page-inner .form-group input:focus,
body.page-inner .form-group textarea:focus,
body.page-inner .form-group select:focus {
  border-color: var(--i-accent);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

body.page-inner .form-group textarea {
  min-height: 14rem;
  resize: vertical;
}

body.page-inner .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

body.page-inner .form-submit {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

body.page-inner .values-section {
  background: #eef0f4;
}

@media (max-width: 900px) {
  body.page-inner .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  body.page-inner .cta-group {
    justify-content: center;
  }
  body.page-inner .intro-card {
    grid-template-columns: 1fr;
  }
  body.page-inner .stats {
    grid-template-columns: 1fr 1fr;
  }
  body.page-inner .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  body.page-inner .detail-grid {
    grid-template-columns: 1fr;
  }
  body.page-inner .contact-grid {
    grid-template-columns: 1fr;
  }
}
