/* ========== Reset & Base ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brand-red: #E2231A;
  --brand-red-dark: #B51A12;
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-dark: #1d1d1f;
  --border: #d2d2d7;
  --max-width: 980px;
  --nav-height: 48px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.47;
  font-size: 17px;
  letter-spacing: -0.022em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 9999;
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(255,255,255,0.95); }

.nav-inner {
  max-width: 1024px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-logo img { height: 30px; width: auto; }
.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.65; text-decoration: none; }

.nav-cta {
  background: var(--brand-red);
  color: #fff !important;
  padding: 6px 16px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--brand-red-dark); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ========== WhatsApp Floating Button ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  text-decoration: none;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-primary);
  color: #fff;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ========== Hero ========== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 22px 60px;
  background: var(--bg-primary);
  position: relative;
}
.hero-eyebrow {
  font-size: 21px;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 24px;
}
.hero-title .highlight { color: var(--brand-red); }
.hero-subtitle {
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.4;
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand-red);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-red-dark); text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--brand-red);
  border: 1px solid var(--brand-red);
}
.btn-secondary:hover { background: var(--brand-red); color: #fff; text-decoration: none; }
.btn-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-light:hover { background: rgba(255,255,255,0.25); text-decoration: none; }
.btn-link {
  color: var(--brand-red);
  font-size: 19px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-link:hover { text-decoration: underline; }
.btn-link::after { content: "\203A"; font-size: 22px; }

/* ========== Section Base ========== */
.section {
  padding: 100px 22px;
}
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-gray {
  background: var(--bg-secondary);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: #ff6b63; }
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 680px;
  margin-bottom: 50px;
}
.section-dark .section-subtitle { color: #a1a1a6; }

/* ========== Brand Story ========== */
.brand-story {
  text-align: center;
}
.brand-story .quote {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 40px;
}
.brand-story .quote .highlight { color: var(--brand-red); }
.brand-story .body-text {
  font-size: 21px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 30px;
}

/* ========== Why C&Y (Trust Signals) ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.trust-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-primary);
  border-radius: 16px;
  transition: transform 0.3s;
}
.trust-item:hover { transform: translateY(-4px); }
.trust-item .ti-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.trust-item .ti-label {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.trust-item .ti-plus {
  font-size: 13px;
  color: var(--brand-red);
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== Hero Solutions ========== */
.hero-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-solutions { grid-template-columns: 1fr; }
}

.solution-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 580px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s;
}
.solution-card:hover { transform: scale(1.01); }

.solution-card-dark {
  background: #1a1a1c;
  color: #fff;
}

.solution-card .sc-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.solution-card-dark .sc-label { color: #ff6b63; }

.solution-card .sc-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.solution-card .sc-tagline {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.solution-card-dark .sc-tagline { color: #a1a1a6; }

.solution-card .sc-image {
  max-height: 340px;
  width: auto;
  margin: 0 auto 20px;
  object-fit: contain;
  border-radius: 12px;
}

/* ========== Solution Lineup ========== */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.lineup-item {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 40px 24px 30px;
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.lineup-item:hover { transform: translateY(-4px); border-color: var(--border); }
.lineup-item .li-series {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.lineup-item .li-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.lineup-item .li-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.4;
}
.lineup-item .li-image {
  max-height: 180px;
  width: auto;
  margin: 0 auto;
  border-radius: 12px;
}
.lineup-item .li-icon {
  width: 80px;
  height: 80px;
  margin: 20px auto;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--brand-red);
}

/* ========== OEM/ODM ========== */
.oem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}
.oem-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.oem-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.oem-card .oem-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(226,35,26,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand-red);
}
.oem-card .oem-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.oem-card .oem-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========== Distributor Section ========== */
.distributor-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.dist-feature {
  text-align: center;
  padding: 30px 20px;
}
.dist-feature .df-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(226,35,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.dist-feature .df-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}
.dist-feature .df-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.dist-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 50px;
}
.dist-region {
  padding: 8px 20px;
  border-radius: 980px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 15px;
  font-weight: 500;
}

/* ========== Contact / Footer ========== */
.contact-section {
  text-align: center;
}
.contact-section h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-section .contact-sub {
  font-size: 21px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.contact-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  min-width: 200px;
}
.contact-card .cm-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-card .cm-value {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer {
  background: var(--bg-dark);
  color: #a1a1a6;
  padding: 50px 22px 30px;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  color: #a1a1a6;
  font-size: 14px;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-copy {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #6e6e73;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: center;
}
.footer-social a {
  color: #6e6e73;
  font-size: 20px;
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }

/* ========== Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Scroll hint ========== */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--text-secondary);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== Hero Scenario Keywords ========== */
.hero-scenarios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 30px 0 40px;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.hero-scenarios .scenario-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand-red);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}
.hero-scenarios .scenario-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== Scenario Grid ========== */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
}

.scenario-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 40px 20px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}
.scenario-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--text-primary);
}
.scenario-card .sc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.scenario-card .sc-name {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
}
.scenario-card .sc-count {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ========== Scenario Section ========== */
.scenario-section {
  padding: 80px 22px;
}
.scenario-section:nth-child(even) {
  background: var(--bg-secondary);
}
.scenario-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.scenario-header .sh-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.scenario-header .sh-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.scenario-header .sh-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 4px;
}

/* ========== Product Card (linkable) ========== */
.product-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--border);
  text-decoration: none;
  color: var(--text-primary);
}
.product-card .pc-image {
  max-height: 200px;
  width: auto;
  margin: 0 auto 20px;
  border-radius: 12px;
}
.product-card .pc-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card .pc-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 16px;
}
.product-card .pc-link {
  font-size: 15px;
  color: var(--brand-red);
  font-weight: 500;
}
.product-card:hover .pc-link { text-decoration: underline; }

.products-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ========== Visitor Stats (hidden) ========== */
#visitor-stats {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--bg-dark);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 13px;
  z-index: 9998;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  max-width: 280px;
}
#visitor-stats.show { display: block; }
#visitor-stats h4 { font-size: 14px; margin-bottom: 8px; color: #fff; }
#visitor-stats .stat-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
#visitor-stats .stat-val { color: var(--brand-red); font-weight: 600; }

/* ========== Admin toggle ========== */
#admin-toggle {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 9998;
  width: 36px;
  height: 36px;
  background: var(--text-secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#admin-toggle:hover { opacity: 1; }

/* ========== Cookie Consent Banner ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: var(--bg-dark);
  color: #f5f5f7;
  padding: 20px 22px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 1.5;
  color: #a1a1a6;
}
.cookie-banner-text a {
  color: #ff6b63;
  text-decoration: underline;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner-buttons .btn {
  font-size: 14px;
  padding: 8px 22px;
}
.btn-accept {
  background: var(--brand-red);
  color: #fff;
}
.btn-accept:hover { background: var(--brand-red-dark); text-decoration: none; }
.btn-decline {
  background: transparent;
  color: #a1a1a6;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-decline:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }

/* ========== Contact Form ========== */
.contact-form {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: left;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2386868b' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(226,35,26,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  background: var(--bg-secondary);
  border-radius: 16px;
  margin-top: 20px;
}
.form-success.show { display: block; }
.form-success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--text-secondary);
}
