/* ===== BASE STYLES (from style.css) ===== */
@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto/roboto-variablefont_wdthwght-webfont.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin: 0;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
}

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

h1,
h2,
h3,
h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}

a,
button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.btn {
  background-color: #8bc63e;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: none;
}

.btn:hover {
  background-color: #6ba82c;
}

.section {
  padding: 4rem 1rem;
}

.section.bg-muted {
  background-color: #f0f0f0;
}

.footer {
  background-color: #111;
  color: #ccc;
  padding: 3rem 1rem;
}

.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer a {
  color: #ccc;
}

.footer a:hover {
  color: #a8da67;
}

.footer .social-icons a {
  display: inline-block;
  margin-right: 10px;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.flex {
  display: flex;
  gap: 1rem;
}

.text-muted {
  color: #888;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

ul {
  padding-left: 1rem;
  list-style: none;
}

/* ===== NAVBAR (from style.css) ===== */
.navbar {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar .navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar .navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.navbar .navbar-logo .navbar-brand {
  display: none;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(to right, #6ba82c, #a8da67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .navbar .navbar-logo .navbar-brand {
    display: block;
  }
}

.navbar .navbar-links {
  display: none;
}

.navbar .navbar-links button {
  background: none;
  border: none;
  font-weight: 400;
  margin-left: 20px;
  font-size: 16px;
  color: white;
}

.navbar .navbar-links button:hover {
  color: #a8da67;
}

.navbar .navbar-mobile-btn {
  display: block;
}

.navbar .navbar-mobile-btn button {
  background: none;
  border: none;
  color: white;
}

.navbar .mobile-menu {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.navbar .mobile-menu button {
  background: none;
  border: none;
  padding: 0.75rem 0;
  text-align: left;
  font-size: 16px;
  color: #333;
}

.navbar .mobile-menu button:hover {
  background-color: #f8f8f8;
  color: #8bc63e;
  border-radius: 6px;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e5e5;
}

.navbar.scrolled .navbar-logo .navbar-brand {
  display: block;
}

.navbar.scrolled .navbar-mobile-btn button {
  color: black;
}

.navbar.scrolled .navbar-mobile-btn button:hover {
  color: #6ba82c;
}

.navbar.scrolled .navbar-links button {
  color: #6ba82c;
}

.navbar.scrolled .navbar-links button:hover {
  color: #a8da67;
}

@media (min-width: 1024px) {
  .navbar .navbar-links {
    display: flex;
  }

  .navbar .navbar-mobile-btn,
  .navbar .mobile-menu {
    display: none;
  }
}

.section-despre {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.section-despre .despre-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-despre .despre-title {
  font-size: 36px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
}

.section-despre .despre-title .highlight {
  color: #6ba82c;
}

.section-despre .despre-text {
  font-size: 18px;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-despre .despre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 1024px) {
  .section-despre .despre-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.section-despre .stat-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-despre .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.section-despre .stat-card .stat-value {
  font-size: 32px;
  font-weight: bold;
  color: #6ba82c;
  margin-bottom: 8px;
}

.section-despre .stat-card .stat-label {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

.section-contact {
  padding: 80px 0;
  background: #f9fafb;
}

.section-contact .contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-contact .contact-title {
  font-size: 36px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
}

.section-contact .contact-title .highlight {
  color: #6ba82c;
}

.section-contact .contact-text {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-contact .contact-wrapper {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .section-contact .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.section-contact .contact-subtitle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #1f2937;
}

.section-contact .contact-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .section-contact .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section-contact .contact-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.section-contact .contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.section-contact .icon-box {
  font-size: 20px;
  background: #a8da67;
  color: #6ba82c;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-contact .info-box h4 {
  margin: 0;
  font-weight: 600;
  color: #111827;
}

.section-contact .info-box p,
.section-contact .info-box a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
}

.section-contact .info-box p:hover,
.section-contact .info-box a:hover {
  color: #6ba82c;
}

.section-contact .why-us {
  background: linear-gradient(to right, #6ba82c, #a8da67);
  color: white;
  padding: 24px;
  border-radius: 12px;
}

.section-contact .why-us h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.section-contact .why-us ul {
  font-size: 14px;
  line-height: 1.7;
  padding-left: 0;
  list-style: none;
}

.section-contact .contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-contact .form-group {
  margin-bottom: 20px;
}

.section-contact .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.section-contact .form-group input,
.section-contact .form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
}

.section-contact .form-group input:focus,
.section-contact .form-group textarea:focus {
  border-color: #6ba82c;
  outline: none;
}

.section-contact .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .section-contact .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section-contact .btn-primary {
  width: 100%;
  background: #6ba82c;
  color: white;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.section-contact .btn-primary:hover {
  background: #8bc63e;
}

.hidden {
  display: none !important;
}

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

/* Footer */
.site-footer {
  background-color: #111827;
  color: #e5e7eb;
  padding: 80px 1rem 40px;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.site-footer h3 {
  color: #6ba82c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.site-footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 14px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #6ba82c;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer ul button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.site-footer ul button:hover {
  color: #6ba82c;
}

.site-footer .social-icons {
  display: flex;
  gap: 1rem;
}

.site-footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(96, 165, 250, 0.1);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.site-footer .social-icons a:hover {
  background-color: rgba(168, 218, 103, 0.5);
  color: #6ba82c;
}

.site-footer .footer-contact {
  font-size: 14px;
}

.site-footer .footer-contact span.icon {
  color: #6ba82c;
  width: 24px;
  height: 24px;
}

.site-footer .footer-contact div {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
  }
}

.site-footer .footer-bottom p {
  color: #9ca3af;
  font-size: 13px;
}

.site-footer .footer-bottom .footer-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer .footer-bottom .footer-links button {
  font-size: 13px;
  color: #9ca3af;
}

.site-footer .footer-bottom .footer-links button:hover {
  color: #60a5fa;
}

@media (min-width: 768px) {
  .mobile-products-submenu a {
    color: rgba(255, 255, 255, 0.75);
  }
}

.mobile-products-submenu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mobile-products-submenu a.nav-dd-featured {
  color: #6ba82c;
  font-weight: 600;
}

.lang-dropdown {
  position: relative;
  margin-left: 20px;
}

.lang-dropdown .lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 6px 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.lang-dropdown .lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.lang-dropdown .lang-dropdown-btn img {
  border-radius: 2px;
  display: block;
}

.lang-dropdown .lang-chevron {
  transition: transform 0.2s ease;
}

.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown .lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 100px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease;
  text-decoration: none;
}

.lang-option:hover {
  background: #f3f4f6;
  color: #6ba82c;
}

.lang-option.active {
  color: #6ba82c;
  font-weight: 700;
  background: rgba(168, 218, 103, 0.2);
}

.lang-option img {
  border-radius: 2px;
}

.navbar.scrolled .lang-dropdown-btn {
  background: rgba(107, 168, 44, 0.1);
  border-color: rgba(107, 168, 44, 0.3);
  color: #6ba82c;
}

.navbar.scrolled .lang-dropdown-btn:hover {
  background: rgba(107, 168, 44, 0.18);
}

.lang-mobile-selector {
  display: flex;
  gap: 8px;
  padding: 10px 0 4px;
  border-top: 1px solid #e5e5e5;
  margin-top: 8px;
}

.lang-mobile-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-mobile-option:hover {
  border-color: #6ba82c;
  color: #6ba82c;
}

.lang-mobile-option.active {
  background: rgba(168, 218, 103, 0.2);
  border-color: #6ba82c;
  color: #6ba82c;
  font-weight: 700;
}

.lang-mobile-option img {
  border-radius: 2px;
}

/* ===== INTIME SPECIFIC ===== */
/* ===================================================
   InTime – Pontaj & Control Acces
   Dedicated stylesheet
   =================================================== */

:root {
  --it-green: #5a8f24;
  --it-green-light: #a8da67;
  --it-green-dark: #3a6318;
  --it-navy: #0f1e35;
  --it-navy-mid: #162944;
  --it-gray: #f8fafc;
  --it-border: #e2e8f0;
  --it-text: #1e293b;
  --it-muted: #64748b;
  --it-radius: 12px;
  --it-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --it-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* ---- Base ---- */
.intime-page {
  background: #fff;
  color: var(--it-text);
}

.it-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.it-section {
  padding: 5rem 0;
}

.it-section-label {
  display: inline-block;
  background: rgba(107, 168, 44, 0.2);
  color: #3a6a0f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.it-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--it-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.it-section-title .it-highlight {
  color: var(--it-green);
}

.it-section-sub {
  font-size: 1.1rem;
  color: var(--it-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ---- NAVBAR ---- */
.it-navbar {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.it-nav-scrolled {
  background: rgba(15, 30, 53, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.it-nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .it-nav-links {
    display: flex;
  }
}

.it-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.it-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.it-nav-links .it-nav-cta {
  background: var(--it-green-dark);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 0.5rem;
}

.it-nav-links .it-nav-cta:hover {
  background: #2d4e13;
}

.it-mobile-cta {
  display: inline-block;
  background: var(--it-green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 0.5rem;
}

.mobile-menu a {
  display: block;
  color: #333;
  padding: 10px 0;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

/* ---- HERO ---- */
.it-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--it-navy) 0%, var(--it-navy-mid) 50%, #1a3855 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.it-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(107, 168, 44, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(107, 168, 44, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.it-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.it-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .it-hero-content {
    grid-template-columns: 1fr 1fr;
    padding: 8rem 1.5rem 5rem;
  }
}

.it-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(107, 168, 44, 0.15);
  border: 1px solid rgba(107, 168, 44, 0.4);
  color: var(--it-green-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.it-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.it-brand {
  color: var(--it-green-light);
}

.it-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-bottom: 1rem;
}

.it-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.it-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.it-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--it-green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid var(--it-green);
}

.it-btn-primary:hover {
  background: var(--it-green-dark);
  border-color: var(--it-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 168, 44, 0.35);
}

.it-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
}

.it-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.it-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
}

.it-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.it-btn-large {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 12px;
}

.it-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.it-stat {
  text-align: center;
}

.it-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--it-green-light);
  line-height: 1;
}

.it-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.it-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---- DASHBOARD MOCKUP ---- */
.it-hero-mockup {
  display: flex;
  justify-content: center;
}

.it-mockup-window {
  background: #1a2540;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.07);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
}

.it-mockup-bar {
  background: #0d1a2e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.it-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.it-mockup-bar span:nth-child(2) {
  background: #febc2e;
}

.it-mockup-bar span:nth-child(3) {
  background: #28c840;
}

.it-mockup-title {
  margin-left: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.it-mockup-body {
  padding: 20px;
}

.it-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.it-mock-greeting {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.it-mock-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.it-mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.it-mock-card {
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.it-card-green {
  background: rgba(107, 168, 44, 0.15);
}

.it-card-blue {
  background: rgba(59, 130, 246, 0.15);
}

.it-card-orange {
  background: rgba(245, 158, 11, 0.15);
}

.it-mock-card-icon {
  color: var(--it-green-light);
}

.it-card-blue .it-mock-card-icon {
  color: #60a5fa;
}

.it-card-orange .it-mock-card-icon {
  color: #fbbf24;
}

.it-mock-card-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.it-mock-card-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.it-mock-chart-area {}

.it-mock-chart-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  font-weight: 500;
}

.it-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding: 0 4px;
}

.it-mock-bar {
  flex: 1;
  background: rgba(107, 168, 44, 0.5);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: background 0.2s;
  min-height: 4px;
}

.it-mock-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
}

.it-bar-active {
  background: var(--it-green-light) !important;
}

.it-bar-empty {
  background: rgba(255, 255, 255, 0.06) !important;
}

/* ---- PROBLEM SECTION ---- */
.it-problem {
  background: var(--it-gray);
}

.it-problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .it-problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.it-problem-card {
  background: #fff;
  border-radius: var(--it-radius);
  padding: 2rem;
  box-shadow: var(--it-shadow);
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--it-shadow-lg);
}

.it-problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--it-text);
}

.it-problem-card p,
.it-problem-card ul {
  font-size: 0.92rem;
  color: var(--it-muted);
  line-height: 1.7;
}

.it-problem-card ul {
  padding-left: 1rem;
  list-style: disc;
}

.it-problem-card ul li {
  margin-bottom: 0.4rem;
}

.it-card-legal {
  border-top-color: #3b82f6;
}

.it-card-danger {
  border-top-color: #ef4444;
}

.it-card-solution {
  border-top-color: var(--it-green);
}

.it-problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.it-card-legal .it-problem-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.it-card-danger .it-problem-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.it-card-solution .it-problem-icon {
  background: rgba(107, 168, 44, 0.1);
  color: var(--it-green);
}

/* ---- BENEFITS ---- */
.it-benefits {
  background: #fff;
}

.it-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .it-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.it-benefit-card {
  background: var(--it-gray);
  border-radius: var(--it-radius);
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.it-benefit-card:hover {
  border-color: var(--it-green-light);
  background: #fff;
  box-shadow: var(--it-shadow);
  transform: translateY(-4px);
}

.it-benefit-icon {
  width: 54px;
  height: 54px;
  background: rgba(107, 168, 44, 0.2);
  color: #3a6a0f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.it-benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--it-text);
}

.it-benefit-card p {
  font-size: 0.88rem;
  color: var(--it-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- MODULES / TABS ---- */
.it-modules {
  background: var(--it-gray);
}

.it-tabs {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--it-shadow);
  overflow: hidden;
}

.it-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--it-border);
  background: #f8fafc;
}

.it-tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.5rem;
  border: none;
  background: none;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
}

.it-tab-btn:hover {
  color: var(--it-green);
}

.it-tab-btn.active {
  color: #3d6b18;
  border-bottom-color: #3d6b18;
  background: #fff;
}

.it-tab-content {
  display: none;
}

.it-tab-content.active {
  display: block;
}

.it-tab-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .it-tab-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.it-tab-features h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--it-text);
}

.it-tab-features ul {
  list-style: none;
  padding: 0;
}

.it-tab-features ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--it-text);
  border-bottom: 1px solid var(--it-border);
}

.it-tab-features ul li:last-child {
  border-bottom: none;
}

/* ---- TAB MOCKUPS ---- */
.it-tab-mockup {
  background: var(--it-gray);
  border-radius: 12px;
  padding: 1.25rem;
  overflow: hidden;
}

.it-mock-table-header,
.it-mock-table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 0.8fr 1fr;
  gap: 0.5rem;
  padding: 8px 4px;
  font-size: 12px;
  align-items: center;
}

.it-mock-table-header {
  font-weight: 700;
  color: var(--it-muted);
  border-bottom: 1px solid var(--it-border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.it-mock-table-row {
  color: var(--it-text);
  border-bottom: 1px solid #f1f5f9;
}

.it-mock-table-row:last-child {
  border-bottom: none;
}

.it-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
}

.it-badge-green {
  background: rgba(107, 168, 44, 0.15);
  color: var(--it-green-dark);
}

.it-badge-orange {
  background: rgba(245, 158, 11, 0.18);
  color: #7c3500;
}

.it-badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.it-mock-schedule {
  font-size: 13px;
}

.it-mock-schedule-title {
  font-weight: 700;
  color: var(--it-text);
  margin-bottom: 12px;
  font-size: 14px;
}

.it-mock-schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  color: var(--it-muted);
}

.it-row-highlight {
  color: var(--it-text);
  font-weight: 600;
}

.it-mock-schedule-divider {
  height: 1px;
  background: var(--it-border);
  margin: 8px 0;
}

.it-mock-calendar-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--it-text);
  margin-bottom: 12px;
}

.it-mock-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  font-size: 11px;
  text-align: center;
}

.it-cal-h {
  font-weight: 700;
  color: var(--it-muted);
  padding: 4px 0;
}

.it-mock-cal-grid div {
  padding: 5px;
  border-radius: 6px;
  color: var(--it-text);
}

.it-cal-out {
  color: #cbd5e1;
}

.it-cal-leave {
  background: rgba(107, 168, 44, 0.2);
  color: var(--it-green-dark);
  font-weight: 600;
  border-radius: 6px;
}

.it-cal-today {
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
}

.it-cal-legend {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
  font-size: 11px;
  color: var(--it-muted);
}

.it-cal-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}

.it-dot-green {
  background: var(--it-green);
}

.it-dot-blue {
  background: #3b82f6;
}

.it-mock-reports-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--it-text);
  margin-bottom: 10px;
}

.it-mock-report-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--it-text);
  border-bottom: 1px solid var(--it-border);
}

.it-report-featured {
  color: var(--it-green);
  font-weight: 700;
}

/* ---- HARDWARE ---- */
.it-hardware {
  background: var(--it-navy);
}

.it-hardware .it-section-label {
  background: rgba(168, 218, 103, 0.12);
  color: var(--it-green-light);
}

.it-hardware .it-section-title {
  color: #fff;
}

.it-hardware .it-section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.it-hw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .it-hw-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.it-hw-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.it-hw-card:hover {
  background: rgba(107, 168, 44, 0.1);
  border-color: rgba(107, 168, 44, 0.3);
  transform: translateY(-6px);
}

.it-hw-icon {
  width: 72px;
  height: 72px;
  background: rgba(107, 168, 44, 0.12);
  color: var(--it-green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.it-hw-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.it-hw-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.it-hw-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(107, 168, 44, 0.1);
  border: 1px solid rgba(107, 168, 44, 0.25);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.it-hw-note svg {
  color: var(--it-green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- IMPLEMENTATION ---- */
.it-implementation {
  background: #fff;
}

.it-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .it-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .it-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.it-timeline-item {
  display: flex;
  flex-direction: column;
}

.it-tl-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--it-green), var(--it-green-light));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(107, 168, 44, 0.35);
}

.it-tl-line {
  display: none;
}

.it-tl-last {
  display: none;
}

.it-timeline-card {
  background: var(--it-gray);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  border-left: 3px solid var(--it-green);
  transition: box-shadow 0.3s ease;
}

.it-timeline-card:hover {
  box-shadow: var(--it-shadow);
}

.it-tl-icon {
  width: 44px;
  height: 44px;
  background: rgba(107, 168, 44, 0.2);
  color: #3a6a0f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.it-timeline-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--it-text);
}

.it-timeline-card p {
  font-size: 13px;
  color: var(--it-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.it-timeline-card ul {
  list-style: none;
  padding: 0;
}

.it-timeline-card ul li {
  font-size: 12px;
  color: var(--it-muted);
  padding: 3px 0;
  padding-left: 12px;
  position: relative;
}

.it-timeline-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--it-green);
}

.it-deploy-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--it-gray);
  border-radius: 16px;
  padding: 2rem 3rem;
}

.it-deploy-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.it-deploy-opt svg {
  color: var(--it-green);
  flex-shrink: 0;
}

.it-deploy-opt strong {
  display: block;
  font-size: 1rem;
  color: var(--it-text);
  margin-bottom: 2px;
}

.it-deploy-opt span {
  font-size: 13px;
  color: var(--it-muted);
}

.it-deploy-sep {
  font-size: 14px;
  font-weight: 700;
  color: var(--it-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---- CTA FINAL ---- */
.it-final-cta {
  background: linear-gradient(135deg, var(--it-navy) 0%, #162944 100%);
  padding: 6rem 0;
}

.it-cta-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .it-cta-box {
    grid-template-columns: 1.4fr 1fr;
  }
}

.it-cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.it-cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.it-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.it-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.it-cta-trust span {
  font-weight: 500;
}

.it-cta-visual {
  display: flex;
  justify-content: center;
}

.it-cta-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.it-cta-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  color: var(--it-green-light);
  text-align: center;
  min-width: 100px;
  transition: all 0.3s ease;
}

.it-cta-badge:hover {
  background: rgba(107, 168, 44, 0.12);
  border-color: rgba(107, 168, 44, 0.3);
  transform: translateY(-4px);
}

.it-cta-badge span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.75rem;
  line-height: 1;
}

.it-cta-badge small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ---- FOOTER ---- */
.it-footer {
  background: #060d1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 0 1.5rem;
}

.it-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.it-footer-brand p {
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.it-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.it-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.it-footer-links a:hover {
  color: #a8da67;
}

.it-footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.it-footer-links a:hover {
  color: var(--it-green-light);
}

.it-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.it-footer-bottom p {
  font-size: 12px;
  text-align: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* ---- INTIME CONTACT FORM ---- */
.it-cta-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.it-cta-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.it-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .it-form-grid {
    grid-template-columns: 1fr;
  }
}

.it-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.it-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.it-form-group input,
.it-form-group textarea,
.it-form-group select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

.it-form-group input::placeholder,
.it-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.it-form-group input:focus,
.it-form-group textarea:focus {
  border-color: var(--it-green-light);
  background: rgba(255, 255, 255, 0.12);
}

.it-form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.it-form-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.it-form-captcha img {
  border-radius: 6px;
  height: 40px;
  width: auto;
  cursor: pointer;
}

.it-form-captcha input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.it-form-captcha input:focus {
  border-color: var(--it-green-light);
}

.it-form-submit {
  width: 100%;
  background: #4d7e1c;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-family: inherit;
}

.it-form-submit:hover {
  background: var(--it-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 168, 44, 0.35);
}

/* ===== RESPONSIVE: Contact / CTA Section ===== */
@media (max-width: 768px) {
  .it-final-cta {
    padding: 3rem 1rem;
    overflow-x: hidden;
  }

  .it-cta-box {
    gap: 2rem;
  }

  .it-cta-form {
    padding: 1.25rem;
    overflow: hidden;
  }

  .it-cta-form h3 {
    font-size: 1rem;
  }

  .it-form-grid {
    grid-template-columns: 1fr;
  }

  .it-cta-btns {
    flex-direction: column;
  }

  .it-cta-btns a,
  .it-cta-btns button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .it-cta-content h2 {
    font-size: 1.4rem;
  }

  .it-cta-content p {
    font-size: 0.95rem;
  }

  .it-form-group {
    width: 100%;
  }

  .it-form-group input,
  .it-form-group textarea,
  .it-form-group select {
    font-size: 16px;
    /* prevent iOS zoom */
    width: 100%;
    box-sizing: border-box;
  }

  .it-container {
    padding: 0 1rem;
  }

  /* Captcha */
  .it-form-group img[alt="CAPTCHA"] {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Prevent captcha row overflow */
  [style*="display:flex"],
  [style*="display: flex"] {
    flex-wrap: wrap;
  }
}

/* Global box-sizing for intime form elements */
.it-cta-form *,
.it-form-group * {
  box-sizing: border-box;
}

.intime-page {
  overflow-x: hidden;
}

/* Captcha input sizing */
.it-form-captcha input[name="captcha"] {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}

/* Hero buttons full-width on mobile */
@media (max-width: 768px) {
  .it-hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .it-hero-btns .it-btn-primary,
  .it-hero-btns .it-btn-secondary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
  }

  /* Captcha stacked on mobile */
  .it-form-captcha {
    flex-direction: column;
    align-items: flex-start;
  }

  .it-form-captcha img {
    width: 100%;
    height: auto;
    max-width: 200px;
  }

  .it-form-captcha input[name="captcha"] {
    width: 100%;
  }
}