/* ============================================
   ULTRAETHER CABLE PVT. LTD.
   Main Stylesheet — Industrial Dark Blue Theme
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: #0B1F3A;
  --primary-light: #1A3A5C;
  --primary-dark: #050E1A;
  --accent: #2563EB;
  --accent-dark: #1D4ED8;
  --accent-light: #60A5FA;
  --success: #10B981;
  --grey: #64748B;
  --grey-light: #94A3B8;
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --white: #FFFFFF;
  --dark: #0F172A;
  --text: #1E293B;
  --text-light: #475569;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(11,31,58,0.08);
  --shadow: 0 4px 16px rgba(11,31,58,0.10);
  --shadow-lg: 0 8px 32px rgba(11,31,58,0.15);
  --shadow-xl: 0 16px 48px rgba(11,31,58,0.20);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

input, select, textarea {
  font-family: var(--font);
  font-size: 1rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.125rem, 4.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 3.2vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.1875rem, 2.2vw, 1.875rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }

p {
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.section-dark .section-header h2,
.section-dark h2 {
  color: var(--white);
}

.section-dark .section-header p,
.section-dark > .container > p {
  color: rgba(255,255,255,0.72);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.navbar-logo-tagline {
  font-size: 0.625rem;
  color: var(--grey);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-nav a {
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--accent);
  background: rgba(30, 111, 217, 0.08);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.navbar-phone i {
  color: var(--accent);
}

.navbar-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 2px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 11px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
  background: rgba(30, 111, 217, 0.07);
}

.mobile-nav .mobile-cta {
  margin-top: 8px;
  background: var(--accent);
  color: var(--white) !important;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius);
}

.mobile-nav .mobile-cta:hover {
  background: var(--accent-dark) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: none;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37,99,235,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #111827 0%, #030712 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,99,235,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: none;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.98);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1BB35C 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1BB35C 0%, #129752 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37,211,102,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  padding: 72px 0 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.74);
  font-size: 1.0625rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
}

.breadcrumb a {
  color: rgba(255,255,255,0.68);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb i {
  font-size: 0.7rem;
}

/* ============================================
   HERO (Homepage)
   ============================================ */
.hero {
  background: linear-gradient(135deg, rgba(5, 14, 26, 0.75) 0%, rgba(11, 31, 58, 0.75) 40%, rgba(26, 58, 92, 0.75) 100%), url('../img/cable-reels-hero.webp') center/cover no-repeat;
  padding: 120px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.18;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(11,31,58,0.3);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-light), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-trust-item i {
  color: var(--accent-light);
  font-size: 1rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--primary-light);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-bar-item i {
  color: var(--accent-light);
  font-size: 1rem;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: left 0.35s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(30,111,217,0.15), rgba(30,111,217,0.05));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.375rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30,111,217,0.1);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--accent), rgba(30,111,217,0.8));
  color: var(--white);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 20px rgba(30,111,217,0.25);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.2);
}

.product-card-header {
  background: linear-gradient(135deg, #0B1F3A 0%, #1A3A5C 100%);
  padding: 32px 28px 28px;
  color: var(--white);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.product-card-header h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.product-card-header p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.product-card-body {
  padding: 24px 28px 28px;
}

.product-specs {
  margin-bottom: 20px;
}

.product-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.product-spec-row:last-child {
  border-bottom: none;
}

.product-spec-label {
  color: var(--text-light);
  font-weight: 500;
}

.product-spec-value {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.product-applications {
  margin-bottom: 24px;
}

.product-applications h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
  margin-bottom: 10px;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--bg-alt);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.tag-blue {
  background: rgba(30,111,217,0.1);
  color: var(--accent);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
}

/* ============================================
   SPEC TABLE
   ============================================ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.spec-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9375rem;
}

.spec-table tr:nth-child(even) td {
  background: var(--bg);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.spec-table-title {
  background: var(--bg-alt);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-table-title h3 {
  font-size: 1.0625rem;
  color: var(--primary);
}

.spec-table-title i {
  color: var(--accent);
  font-size: 1.125rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 6px rgba(11,31,58,0.04);
}

.faq-item.open {
  border-color: rgba(30,111,217,0.3);
  box-shadow: 0 8px 20px rgba(30,111,217,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  gap: 16px;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.72;
}

/* ============================================
   FORM
   ============================================ */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-group label span.req {
  color: #EF4444;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  box-shadow: 0 2px 6px rgba(11,31,58,0.04);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(30,111,217,0.3);
  box-shadow: 0 4px 12px rgba(11,31,58,0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(30,111,217,0.15), inset 0 0 0 1px rgba(30,111,217,0.1);
  background: rgba(30,111,217,0.01);
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 4px;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
}

.form-consent label a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--grey);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.2);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.contact-card-icon.blue {
  background: rgba(30,111,217,0.1);
  color: var(--accent);
}

.contact-card-icon.green {
  background: rgba(37,211,102,0.12);
  color: #25D366;
}

.contact-card-icon.navy {
  background: rgba(11,31,58,0.08);
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-value {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  word-break: break-all;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section .container {
  position: relative;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.74);
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.0625rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FEATURES / WHY CHOOSE
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(30,111,217,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================
   INDUSTRY CARDS
   ============================================ */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.2);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.check-list li i {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   INFO BOX
   ============================================ */
.info-box {
  background: rgba(30,111,217,0.06);
  border: 1px solid rgba(30,111,217,0.18);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 24px 0;
}

.info-box i {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box p {
  font-size: 0.9375rem;
  color: var(--text);
}

.info-box.warning {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.2);
  border-left-color: #F59E0B;
}

.info-box.warning i {
  color: #F59E0B;
}

.info-box.success {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.2);
  border-left-color: var(--success);
}

.info-box.success i {
  color: var(--success);
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-meta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 36px;
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-meta i {
  color: var(--accent);
}

.policy-content h2 {
  font-size: 1.375rem;
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  color: var(--primary);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.0625rem;
  margin: 24px 0 10px;
  color: var(--text);
}

.policy-content p {
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
  margin: 8px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-content ul li {
  list-style: disc;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.68;
}

.policy-content ol li {
  list-style: decimal;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.68;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-logo .f-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.footer-brand-logo span {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.footer-brand > p {
  font-size: 0.875rem;
  line-height: 1.72;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.56);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--accent-light);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.68);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.66);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.78);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  box-shadow: var(--shadow);
  z-index: 998;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  color: #000000;
  padding: 40px 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -8px 32px rgba(11, 31, 58, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-top: 2px solid #0B1F3A;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.cookie-icon {
  font-size: 48px;
  color: #FFD700;
  flex-shrink: 0;
  opacity: 1;
}

.cookie-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  width: 100%;
}

.cookie-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #000000;
  margin: 0;
  letter-spacing: 0.5px;
}

.cookie-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000000;
  margin: 0;
  font-weight: 500;
}

.cookie-text a {
  color: #0B1F3A;
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.2s ease;
}

.cookie-text a:hover {
  color: #2563EB;
  text-decoration-thickness: 2px;
}

.cookie-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  color: #0B1F3A;
  padding: 15px 48px;
  border-radius: 28px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  text-align: center;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #FFED4E 0%, #FFD700 100%);
}

.cookie-accept:active {
  transform: translateY(0);
}

.cookie-decline {
  background: transparent;
  color: #000000;
  padding: 15px 48px;
  border-radius: 28px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  border: 3px solid #000000;
  font-family: var(--font);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.cookie-decline:hover {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
}

.cookie-decline:active {
  transform: scale(0.98);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.divider {
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 18px 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  color: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col-text h2 {
  margin-bottom: 16px;
}

.two-col-text p {
  margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .navbar-nav { display: none; }
  .navbar-phone { display: none; }
  .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before { display: none; }

  .contact-cards { grid-template-columns: 1fr; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 72px 0; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .cards-grid-3,
  .cards-grid-4 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .trust-bar-inner { gap: 20px; justify-content: flex-start; }

  .cta-actions { flex-direction: column; align-items: center; }

  .page-hero { padding: 56px 0 44px; }

  .spec-table th,
  .spec-table td { padding: 10px 14px; font-size: 0.875rem; }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.75rem; }
  .btn { padding: 12px 22px; font-size: 0.875rem; }
  .btn-lg { padding: 15px 28px; }
  .card { padding: 24px 20px; }
  .form-wrap { padding: 24px 16px; }
  .cookie-consent { 
    padding: 28px 16px;
    gap: 18px;
  }
  .cookie-content {
    gap: 14px;
  }
  .cookie-icon {
    font-size: 40px;
  }
  .cookie-title {
    font-size: 1.1rem;
  }
  .cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .cookie-actions { 
    width: 100%;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
  }
  .cookie-accept, .cookie-decline { 
    flex: 0 0 auto;
    padding: 14px 32px;
    font-size: 1rem;
  }
  .contact-cards { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
  .trust-bar-inner { gap: 16px; flex-direction: column; align-items: flex-start; }
}
