/* Assistio v16 - Clean Modern Design */

/* ========== CSS VARIABLES ========== */
:root {
  /* Colors - Dark Theme */
  --bg: #0a0e1a;
  --bg-secondary: #0f1420;
  --bg-tertiary: #151b2d;
  --text: #e8eaf0;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --accent-light: rgba(99, 102, 241, 0.1);
  --success: #10b981;
  --warning: #f59e0b;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Typography */
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  --font-heading: var(--font-body);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  
  /* Container */
  --container-width: 1200px;
  --container-narrow: 800px;
}

/* Light Theme */
[data-theme="light"] {
  --bg: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --text: #111827;
  --text-muted: #6b7280;
  --border: rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: var(--container-narrow);
}

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

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 26, 0.8);
}

[data-theme="light"] .header {
  background: rgba(255, 255, 255, 0.9);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.nav-link {
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--text);
  background: var(--accent-light);
}

.nav-link-cta {
  color: var(--accent);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}

.theme-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}

.theme-btn .icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}

.icon-sm {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-xs);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}

.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.lang-menu button:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.lang-menu button.is-active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
}

/* ========== HERO ========== */
.hero {
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

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

.btn-outline:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ========== STATS ========== */
.stats {
  padding: var(--spacing-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--spacing-xs);
  line-height: 1;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-gray {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.feature {
  padding: var(--spacing-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.feature h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.feature p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ========== PACKAGES ========== */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.package {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
}

.package-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--accent);
  color: white;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-xs);
}

.package-desc {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  font-size: 0.9375rem;
}

.package-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.package-features li {
  padding: var(--spacing-xs) 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ========== ENTERPRISE BOX ========== */
.enterprise-box {
  padding: var(--spacing-xl);
  background: var(--bg-tertiary);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-xl);
}

.enterprise-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.enterprise-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.enterprise-content p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  font-size: 1.0625rem;
}

/* ========== STANDALONE SERVICES ========== */
.standalone-section {
  margin-bottom: var(--spacing-xl);
}

.standalone-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.standalone-desc {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.standalone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-sm);
}

.standalone-item {
  padding: var(--spacing-md);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.standalone-item strong {
  font-weight: 600;
  font-size: 0.9375rem;
}

.standalone-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========== ADD-ONS ========== */
.addons-section {
  margin-bottom: var(--spacing-xl);
}

.addons-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.addons-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.addons-list span {
  padding: 0.5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ========== NOTICE ========== */
.notice {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.notice-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--accent);
}

.notice strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent);
}

.notice p {
  font-size: 0.875rem;
  color: var(--text);
  margin: 0;
}

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.step {
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ========== FAQ ========== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--border);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  padding-top: var(--spacing-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.contact-primary {
  padding: var(--spacing-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
}

.contact-primary h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.contact-primary p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.contact-links h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--spacing-md);
}

.contact-item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--accent-hover);
}

/* ========== FOOTER ========== */
.footer {
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand img {
  margin-bottom: var(--spacing-sm);
  border-radius: var(--radius-md);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 300px;
}

.footer-links h5 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-xs);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    text-align: left;
    padding: var(--spacing-sm);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .packages {
    grid-template-columns: 1fr;
  }
  
  .contact-box {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .hero {
    padding: var(--spacing-xl) 0;
  }
  
  .features-grid,
  .standalone-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== RTL SUPPORT ========== */
[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .package-features li {
  padding-left: 0;
  padding-right: 1.75rem;
}

[dir="rtl"] .package-features li::before {
  left: auto;
  right: 0;
}

/* ========== ANIMATIONS ========== */
@media (prefers-reduced-motion: no-preference) {
  .feature,
  .package,
  .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}


/* Pricing additions (v16 pricing patch) */
.package-pricing{
  display:flex;
  gap:12px;
  align-items:baseline;
  margin:10px 0 14px 0;
  flex-wrap:wrap;
}
.package-price{
  font-weight:700;
  font-size:1.1rem;
}
.package-setup{
  opacity:.85;
  font-size:.95rem;
}
.standalone-item{
  position:relative;
}
.standalone-price{
  margin-left:auto;
  font-weight:700;
}
@media (max-width: 520px){
  .package-pricing{
    gap:8px;
  }
}


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


/* ===== Standalone services prices (requested) ===== */
.standalone-item{
  display:flex;
  flex-direction:column;
  gap:0.35rem;
}
.standalone-item strong{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:0.75rem;
}
.standalone-item .standalone-price{
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.standalone-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:0.75rem;
}



/* ===== Footer horizontal layout (requested) ===== */
.footer-content{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 2rem;
}
.footer-brand{
  max-width: 320px;
}
.footer-links{
  display:grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 2rem;
}
@media (max-width: 900px){
  .footer-content{flex-direction:column; gap:1.5rem;}
  .footer-links{grid-template-columns: repeat(2, minmax(140px, 1fr));}
}
@media (max-width: 520px){
  .footer-links{grid-template-columns: 1fr;}
}



/* ===== Contact layout fixes (requested) ===== */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}
.contact-card{
  height: 100%;
}
.contact-direct{
  display:flex;
  flex-direction:column;
  gap: 1rem;
}
.contact-direct a{
  word-break: break-word;
}
@media (max-width: 900px){
  .contact-grid{grid-template-columns: 1fr; gap: 1.25rem;}
}



/* ===== Contact layout fixes (requested v2) ===== */
.contact-box{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}
.contact-primary{
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.contact-links{
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-links h4{margin-top:0;}
.contact-item{margin-top: 1rem;}
.contact-item span{
  display:block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.contact-item a{font-weight:600; word-break:break-word;}
@media (max-width: 900px){
  .contact-box{grid-template-columns: 1fr; gap: 1.25rem;}
  .contact-primary, .contact-links{padding: 1.5rem;}
}



/* ===== Force standalone prices visibility (fix) ===== */
.standalone-price{
  display:inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.standalone-head{
  width: 100%;
}



/* ===== Contact grid hard override (fix) ===== */
#contact .contact-grid{
  display:grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 2rem !important;
  align-items: stretch !important;
}
#contact .contact-card{
  padding: 2rem !important;
  border-radius: var(--radius-xl) !important;
}
#contact .contact-direct{
  display:flex !important;
  flex-direction:column !important;
  gap: 1rem !important;
}
#contact .contact-item span{
  display:block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
#contact .contact-item a{
  font-weight: 600;
  word-break: break-word;
}
@media (max-width: 900px){
  #contact .contact-grid{grid-template-columns: 1fr !important; gap: 1.25rem !important;}
  #contact .contact-card{padding: 1.5rem !important;}
}



/* ===== Package pricing layout (v2) ===== */
.package-pricing{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 1rem;
  margin: 0.75rem 0 1rem;
}
.package-price{
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.package-setup{
  font-size: 0.95rem;
  color: var(--text-muted);
  white-space: nowrap;
}



/* ===== Contact split layout (v2) ===== */
.contact-split{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  overflow:hidden;
}
.contact-form{
  padding: 2.25rem;
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.contact-details{
  padding: 2.25rem;
}
.contact-title{
  margin: 0 0 0.25rem 0;
  font-size: 1.6rem;
}
.contact-subtitle{
  margin: 0 0 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.inquiry{
  display:grid;
  gap: 1rem;
}
.field span{
  display:block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.field input, .field select, .field textarea{
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  color: var(--text);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(99,102,241,0.65);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.form-actions{
  display:flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.detail{
  margin: 0 0 1.25rem 0;
}
.detail-label{
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.detail a{
  font-weight: 650;
  word-break: break-word;
}
.detail-note{
  margin-top: 1.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
}
@media (max-width: 900px){
  .contact-split{grid-template-columns: 1fr;}
  .contact-form{border-right: none; border-bottom: 1px solid var(--border);}
}



/* ===== Contact select theming (v3) ===== */
.field select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(232,234,240,0.9) 50%),
    linear-gradient(135deg, rgba(232,234,240,0.9) 50%, transparent 50%),
    linear-gradient(to right, rgba(255,255,255,0.10), rgba(255,255,255,0.10));
  background-position:
    calc(100% - 22px) calc(50% + 1px),
    calc(100% - 16px) calc(50% + 1px),
    calc(100% - 44px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 22px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}
.field select option{
  background: var(--bg-secondary);
  color: var(--text);
}

/* ===== Other interest toggle ===== */
.other-toggle{
  margin-top: 0.75rem;
}
.other-field.hidden{
  display: none;
}
.other-field{
  margin-top: 0.75rem;
}
