@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Premium Corporate B2B Palette */
  --primary: #0a1d37;
  /* Executive Deep Navy */
  --primary-light: #162f55;
  /* Soft Navy for hovers */
  --accent: #b89047;
  /* Warm Gold for Quality stamp */
  --accent-light: #f7f4eb;
  /* Gold tinted background */
  --teal: #0d9488;
  /* Clinical trust teal for hospital line */
  --teal-light: #f0fdfa;
  /* Medical teal light tint */

  --ink-primary: #1e293b;
  /* Slate-900 */
  --ink-secondary: #475569;
  /* Slate-600 */
  --ink-muted: #64748b;
  /* Slate-500 */

  --paper: #ffffff;
  --soft-bg: #f8fafc;
  /* Slate-50 background */
  --blue-tint: #f0f6fc;
  /* Very soft corporate blue */
  --border-color: #e2e8f0;
  /* Slate-200 */
  --border-light: #f1f5f9;
  /* Slate-100 */

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Modern Styling Tokens */
  --shadow-sm: 0 2px 8px rgba(10, 29, 55, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 29, 55, 0.06);
  --shadow-lg: 0 16px 36px rgba(10, 29, 55, 0.1);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-bg);
  color: var(--ink-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Header & Top Line Styling */
.top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px max(24px, calc((100vw - 1200px) / 2));
  background: var(--primary);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.top-line a {
  color: var(--accent);
  font-weight: 600;
}

.top-line a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1200px) / 2));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 48px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

nav a {
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

/* Sections Layout */
.intro,
.section,
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section {
  border-bottom: 1px solid var(--border-color);
}

/* General Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--primary);
  margin-top: 0;
  letter-spacing: -0.02em;
}

.label {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  margin-top: 4px;
}

/* Redesigned Premium Hero / Intro Section */
.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
}

.intro-text {
  max-width: 660px;
}

.intro-text h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary);
}

.intro-text>p:not(.label) {
  color: var(--ink-secondary);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 16px;
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  color: var(--primary);
  font-size: 15px !important;
  font-weight: 700;
  border-radius: 0 8px 8px 0;
}

/* Actions in Hero */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--soft-bg);
  transform: translateY(-2px);
}

/* Hero Showcase Images Slider/Grid */
.hero-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  border: 4px solid #fff;
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 29, 55, 0) 0%, rgba(10, 29, 55, 0.85) 100%);
  color: #fff;
  padding: 24px 20px 16px;
  font-family: var(--font-title);
}

.showcase-caption h4 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 18px;
}

.showcase-caption p {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

.showcase-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.switch-btn {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: var(--transition);
}

.switch-btn:hover,
.switch-btn.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  background: var(--accent-light);
}

.switch-btn img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
}

.switch-btn .btn-text strong {
  display: block;
  font-size: 12px;
  color: var(--primary);
}

.switch-btn .btn-text span {
  font-size: 10px;
  color: var(--ink-secondary);
}

/* Trust Stats Ribbon */
.stats-ribbon {
  background: var(--primary);
  color: #fff;
  padding: 40px max(24px, calc((100vw - 1200px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  border-bottom: 1px solid var(--primary-light);
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Section & Two-Column Grid */
.two-column {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.two-column h2 {
  font-size: 36px;
  line-height: 1.15;
  color: var(--primary);
}

.copy {
  color: var(--ink-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.copy p {
  margin-bottom: 20px;
}

.copy p:last-child {
  margin-bottom: 0;
}

/* Mission & Vision Section */
.plain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: -30px;
  margin-bottom: 50px;
}

.plain-grid article {
  padding: 24px 32px;
  background: var(--soft-bg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent);
}

.plain-grid h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.plain-grid p {
  color: var(--ink-secondary);
  margin: 0;
  font-size: 15px;
}

/* Product Section - Category-based Redesign */
.section-head {
  max-width: 800px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-head .section-sub {
  color: var(--ink-secondary);
  font-size: 16px;
  margin: 0;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-cat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--soft-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.product-cat-card:hover .product-cat-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.product-cat-icon svg {
  width: 26px;
  height: 26px;
}

.product-cat-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--primary);
}

.product-cat-card p {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.product-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.product-cat-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.product-cat-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: bold;
}

.product-cat-list li:last-child {
  margin-bottom: 0;
}

/* Manufacturing Edge / Note List Redesign */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.edge-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.edge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.edge-card h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.edge-card p {
  color: var(--ink-secondary);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

/* Certifications Showcase redone */
.document-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.quality-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  margin-bottom: 56px;
}

.pillar-card {
  background: var(--paper);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.pillar-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--soft-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon-wrapper {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pillar-icon {
  width: 24px;
  height: 24px;
}

.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--ink-secondary);
  font-size: 14px;
  margin: 0;
}

/* Showcase Grid & Certifications */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.showcase-group {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.showcase-group h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.badge-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.cert-badge {
  background: var(--paper);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.cert-badge:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.badge-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 4px;
}

.badge-desc {
  font-size: 12px;
  color: var(--ink-secondary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.standard-card {
  background: var(--paper);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.standard-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.standard-header {
  margin-bottom: 14px;
}

.tag-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.standard-card h4 {
  font-size: 19px;
  margin: 0;
}

.standard-card p {
  color: var(--ink-secondary);
  font-size: 14.5px;
  margin: 0;
}

.green-standards .standard-card:hover {
  border-color: var(--teal);
}

.green-standards .tag-label {
  color: var(--teal);
}

/* Regulatory Verification Accordions */
.regulatory-section {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  margin-top: 60px;
  box-shadow: var(--shadow-md);
}

.reg-title {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.reg-desc {
  color: var(--ink-secondary);
  font-size: 15px;
  margin-bottom: 32px;
}

.accordion-container {
  display: grid;
  gap: 16px;
}

.reg-accordion {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--paper);
  overflow: hidden;
  transition: var(--transition);
}

.reg-accordion[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.reg-accordion summary {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-title);
  list-style: none;
}

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

.reg-accordion summary:hover {
  background: var(--soft-bg);
}

.accordion-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}

.accordion-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--blue-tint);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: 20px;
}

.accordion-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-muted);
  border-bottom: 2px solid var(--ink-muted);
  transform: rotate(45deg);
  transition: var(--transition);
  margin-right: 4px;
}

.reg-accordion[open] .accordion-arrow {
  transform: rotate(-135deg);
}

.accordion-content {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--soft-bg);
}

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

.reg-details-grid strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.reg-details-grid p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-primary);
  font-weight: 600;
}

.accordion-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border-color);
  font-size: 13.5px;
  color: var(--ink-muted);
}

.accordion-note strong {
  color: var(--primary);
  font-weight: 700;
}

/* Redesigned Government Client Grid & List */
.client-sector-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.client-sector-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
}

.client-sector-card.medical {
  border-top-color: var(--teal);
}

.client-sector-card.education {
  border-top-color: var(--accent);
}

.client-sector-card.industrial {
  border-top-color: var(--primary);
}

.client-sector-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.client-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-secondary);
}

.client-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b89047' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.client-list li:last-child {
  margin-bottom: 0;
}

/* Modern Contact Section & B2B Inquiry Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.contact-info-panel {
  padding: 48px;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.contact-info-panel h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.contact-detail-text p {
  margin: 0;
  color: #fff;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 500;
}

.contact-detail-text a {
  color: #fff;
}

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

/* Premium styled contact form */
.contact-form-panel {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-panel h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-panel p {
  color: var(--ink-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}

.inquiry-form-mock {
  display: grid;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-primary);
  background: var(--soft-bg);
  transition: var(--transition);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 144, 71, 0.1);
}

.submit-btn {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  padding: 14px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #a37c35;
  border-color: #a37c35;
  transform: translateY(-1px);
}

/* Footer Section */
footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px max(24px, calc((100vw - 1200px) / 2)) 48px;
  border-top: 1px solid var(--primary-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  font-size: 18px;
  color: #fff;
  font-family: var(--font-title);
}

.footer-brand span {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  font-size: 13px;
}

.footer-bottom span:last-child {
  text-align: right;
}

/* Responsiveness Media Queries */
@media (max-width: 1024px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
  }

  .intro-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .tagline {
    border-left: 0;
    border-bottom: 4px solid var(--accent);
    border-radius: 8px 8px 0 0;
  }

  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px 24px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .plain-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
  }

  .product-category-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .quality-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .client-sector-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 32px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .top-line {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }

  nav {
    justify-content: center;
    gap: 12px 18px;
  }

  .stats-ribbon {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item::after {
    display: none !important;
  }

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

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .submit-btn {
    width: 100%;
  }
}