/* ============================================
   The Container Source JA Stylesheet
   Colors: Blue / White / Grey
============================================ */

:root {
  --blue: #0a4d8c;
  --blue-dark: #073762;
  --blue-light: #1565b8;
  --blue-accent: #2b8fd6;
  --white: #ffffff;
  --grey-50: #f7f9fb;
  --grey-100: #eef2f6;
  --grey-200: #dde4ec;
  --grey-300: #c1cbd6;
  --grey-400: #8b97a5;
  --grey-500: #5c6773;
  --grey-700: #3a424c;
  --grey-900: #1a1f26;
  --shadow-sm: 0 2px 8px rgba(10, 77, 140, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 77, 140, 0.12);
  --shadow-lg: 0 20px 40px rgba(10, 77, 140, 0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--grey-900);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--blue); }

.section-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  background: var(--grey-100);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-head p {
  color: var(--grey-500);
  font-size: 17px;
}

.section-head--light .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.section-head--light h2 { color: var(--white); }
.section-head--light p { color: var(--grey-200); }
.section-head--light .accent { color: var(--blue-accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--blue);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}

.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--full { width: 100%; }

/* Top Bar */
.top-bar {
  background: var(--grey-900);
  color: var(--grey-200);
  font-size: 13px;
  padding: 10px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-200);
  transition: var(--transition);
}
.top-bar__socials a:hover { color: var(--blue-accent); }

/* Header */
.header {
  background: linear-gradient(180deg, var(--grey-900) 0%, var(--blue-dark) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid rgba(43, 143, 214, 0.2);
}
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
  opacity: 0.6;
}
.header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 16px 24px;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo--center { justify-self: center; }
.logo__icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.logo__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.logo--light .logo__img {
  filter: brightness(1.1);
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 1px;
}
.logo__sub {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--blue-accent);
  font-weight: 600;
  margin-top: 4px;
}
.logo--center .logo__img {
  filter: drop-shadow(0 0 12px rgba(43, 143, 214, 0.4));
}

.logo--light .logo__title { color: var(--white); }
.logo--light .logo__sub { color: var(--blue-accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav--left { justify-self: end; }
.nav--right { justify-self: start; }
.nav--mobile { display: none; }
.nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-200);
  transition: var(--transition);
  position: relative;
  padding: 8px 4px;
}
.nav a.btn--primary {
  color: var(--white);
  background: var(--blue-accent);
  border-color: var(--blue-accent);
  padding: 10px 20px;
  box-shadow: 0 4px 14px rgba(43, 143, 214, 0.4);
}
.nav a.btn--primary:hover {
  color: var(--white);
  background: var(--blue-light);
  border-color: var(--blue-light);
  box-shadow: 0 6px 18px rgba(43, 143, 214, 0.6);
}
.nav a:not(.btn):hover { color: var(--blue-accent); }
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--blue-accent);
  transition: var(--transition);
}
.nav a:not(.btn):hover::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  background:
    linear-gradient(135deg, rgba(7,55,98,0.88) 0%, rgba(10,77,140,0.78) 50%, rgba(21,101,184,0.7) 100%),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background-image: url('containersourceja%20logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(43, 143, 214, 0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(10, 77, 140, 0.4), transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  pointer-events: none;
}
.hero__content { position: relative; max-width: 820px; }
.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--blue-accent); }
.hero p {
  font-size: 18px;
  color: var(--grey-200);
  margin-bottom: 36px;
  max-width: 640px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}
.hero__stats span {
  font-size: 13px;
  color: var(--grey-200);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Trust Bar */
.trust {
  background: var(--grey-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
}
.trust__marquee {
  display: flex;
  width: max-content;
  animation: trust-scroll 35s linear infinite;
}
.trust__marquee:hover { animation-play-state: paused; }
.trust__track {
  display: flex;
  flex-shrink: 0;
  gap: 60px;
  padding-right: 60px;
}
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
.trust__item div { display: flex; flex-direction: column; }
.trust__item strong {
  color: var(--grey-900);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.trust__item span { color: var(--grey-500); font-size: 14px; }

/* About */
.about { padding: 100px 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__image {
  position: relative;
  min-height: 500px;
}
.about__img-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(10,77,140,0.2), rgba(10,77,140,0.1)),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about__badge strong {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  display: block;
  line-height: 1;
}
.about__badge span { font-size: 13px; letter-spacing: 1px; }

.about__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.about__content p { margin-bottom: 24px; color: var(--grey-500); font-size: 16px; }

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--grey-700);
  font-size: 15px;
}
.check-list li span {
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--grey-50);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.service-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}
.service-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-row:hover::before { transform: scaleY(1); }
.service-row__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  border-radius: 30px 30px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(10,77,140,0.3);
}
.service-row__body h3 {
  color: var(--blue);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.service-row__body p {
  color: var(--grey-500);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .services__list { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(10,77,140,0.3);
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.service-card p { color: var(--grey-500); font-size: 15px; }

/* Containers For Sale */
.sizes {
  padding: 100px 0;
  background: var(--white);
}
.sizes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
.sizes__grid > .size-card {
  flex: 1 1 240px;
  max-width: 280px;
}
.size-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.size-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.size-card--featured {
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-color: var(--blue);
}
.size-card--featured h3,
.size-card--featured .size-card__size { color: var(--white); }
.size-card--featured ul li { color: var(--grey-200); border-color: rgba(255,255,255,0.15); }
.size-card--featured .size-card__use { color: var(--grey-200); }
.size-card--featured .btn--primary { background: var(--white); color: var(--blue); border-color: var(--white); }
.size-card--featured .btn--primary:hover { background: transparent; color: var(--white); }
.size-card--featured .size-card__badge { background: var(--white); color: var(--blue); }

.size-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grey-100);
  color: var(--blue);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
}
.size-card__size {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
}
.size-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.size-card ul {
  margin-bottom: 20px;
}
.size-card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--grey-500);
  border-bottom: 1px solid var(--grey-100);
}
.size-card ul li:last-child { border-bottom: none; }
.size-card__use {
  font-size: 14px;
  color: var(--grey-500);
  margin-bottom: 16px;
  flex: 1;
}
.size-card__price {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--grey-50);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  text-align: left;
}
.size-card__price span {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-right: 6px;
  vertical-align: middle;
}
.size-card--featured .size-card__price {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-left-color: var(--white);
}
.size-card--featured .size-card__price span { color: var(--grey-200); }
.size-card .btn { align-self: flex-start; }

.sizes__note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--grey-50);
  border-radius: var(--radius);
  color: var(--grey-700);
  font-size: 15px;
  border-left: 4px solid var(--blue);
}
.sizes__note strong { color: var(--blue); font-family: 'Oswald', sans-serif; letter-spacing: 1px; }

.sizes__other {
  margin-top: 28px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.sizes__other::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(43,143,214,0.3), transparent 70%);
  pointer-events: none;
}
.sizes__other-text { position: relative; flex: 1; min-width: 260px; }
.sizes__other h3 {
  color: var(--white);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.sizes__other p {
  color: var(--grey-200);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.sizes__other .btn {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  flex-shrink: 0;
  position: relative;
}
.sizes__other .btn:hover {
  background: var(--blue-accent);
  color: var(--white);
  border-color: var(--blue-accent);
}

/* Conversions */
.conversions {
  padding: 100px 0;
  background: var(--grey-50);
}
.conversions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.conversion-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.conversion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.conversion-card__img {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--blue);
}
.conversion-card__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.conversion-card:hover .conversion-card__img img {
  transform: scale(1.04);
}
/* First and third card images match each other in height */
.conversion-card:nth-child(1) .conversion-card__img,
.conversion-card:nth-child(3) .conversion-card__img {
  height: 320px;
}
.conversion-card:nth-child(1) .conversion-card__img img,
.conversion-card:nth-child(3) .conversion-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.conversion-card__placeholder {
  background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
  border-bottom: 2px solid var(--grey-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}
.conversion-card__placeholder img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.85;
  transition: var(--transition);
}
.conversion-card__placeholder span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 500;
  transition: var(--transition);
}
.conversion-card:hover .conversion-card__placeholder {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: var(--blue-accent);
}
.conversion-card:hover .conversion-card__placeholder img {
  filter: brightness(0) invert(1);
  transform: scale(1.08);
}
.conversion-card:hover .conversion-card__placeholder span { color: var(--white); }

.conversion-card__body {
  padding: 24px 28px 28px;
}
.conversion-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--blue);
}
.conversion-card p {
  color: var(--grey-500);
  font-size: 15px;
  margin-bottom: 14px;
}
.conversion-card__price {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
  padding: 8px 14px;
  background: var(--grey-50);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  margin-top: 4px;
}
.conversion-card__price span {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-right: 4px;
  vertical-align: middle;
}
.section-head .conversions__notice {
  margin-top: 16px;
  font-style: italic;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* CTA Banner */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(7,55,98,0.95), rgba(10,77,140,0.9)),
    url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  background-attachment: fixed;
  padding: 70px 0;
  color: var(--white);
}
.cta-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 36px);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-banner p { color: var(--grey-200); font-size: 17px; }

/* Gallery */
.gallery { padding: 100px 0; background: var(--white); }
.gallery__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex: 0 1 calc((100% - 48px) / 4);
  max-width: calc((100% - 48px) / 4);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 55, 98, 0.92));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}
.gallery__item::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 50%;
  max-width: 200px;
  min-width: 100px;
  aspect-ratio: 355 / 268;
  background: url('watermark%20%20for%20images.png') center/contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4));
  transition: opacity 0.3s ease;
}
@media (max-width: 640px) {
  .gallery__item::after {
    width: 45%;
    min-width: 90px;
    max-width: 130px;
    bottom: 8px;
    right: 8px;
  }
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__item:hover::before { opacity: 1; }

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}
.gallery__item:hover .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 960px) {
  .gallery__item {
    flex: 0 1 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}
@media (max-width: 640px) {
  .gallery__item {
    flex: 0 1 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 140px;
  color: var(--grey-200);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  background: var(--white);
}
.review-card__stars {
  color: #FFB900;
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.review-card__text {
  color: var(--grey-700);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
  position: relative;
  z-index: 1;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.review-card__author strong {
  display: block;
  color: var(--grey-900);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.review-card__author span {
  font-size: 13px;
  color: var(--grey-500);
}

/* Why */
.why {
  padding: 100px 0;
  background: var(--grey-50);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.why__content > p { margin-bottom: 32px; color: var(--grey-500); }

.why__features {
  display: grid;
  gap: 24px;
}
.why__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--blue);
}
.why__feature h4 {
  font-size: 18px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.why__feature p { color: var(--grey-500); font-size: 15px; }

.why__image {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(10,77,140,0.08), rgba(10,77,140,0.02)),
    url('Built%20on%20trust.png') center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.why__image::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 151px;
  background: url('watermark%20%20for%20images.png') center/contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4));
}
@media (max-width: 640px) {
  .why__image::after {
    width: 130px;
    height: 98px;
    bottom: 14px;
    right: 14px;
  }
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item[open] {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--grey-900);
  text-transform: uppercase;
  transition: var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item:hover summary { color: var(--blue); }
.faq__item[open] summary { color: var(--blue); }

.faq__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  position: relative;
  transition: var(--transition);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--blue-dark); transform: rotate(180deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }

.faq__body {
  padding: 0 28px 24px;
  color: var(--grey-500);
  font-size: 15px;
  line-height: 1.7;
  animation: faq-fade 0.3s ease;
}
.faq__body strong { color: var(--grey-900); font-weight: 600; }
.faq__body a { color: var(--blue); text-decoration: underline; }
.faq__body a:hover { color: var(--blue-dark); }

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--grey-900), var(--blue-dark));
  color: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.contact__info-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--blue-accent);
}
.contact__info-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
}
.contact__info-item p { color: var(--grey-200); font-size: 15px; }
.contact__info-item a:hover { color: var(--blue-accent); }

/* Form */
.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--grey-700);
  font-size: 14px;
}
.optional-label {
  font-weight: 400;
  font-size: 12px;
  color: var(--grey-400);
  font-style: italic;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--grey-900);
  background: var(--grey-50);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,77,140,0.1);
}
.form-group textarea { resize: vertical; font-family: inherit; }
.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  min-height: 20px;
  color: var(--blue);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--grey-900);
  color: var(--grey-300);
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--blue-accent);
}
.footer__col p { margin: 16px 0; color: var(--grey-400); font-size: 15px; }
.footer__col ul li {
  margin-bottom: 10px;
  font-size: 15px;
}
.footer__col a { color: var(--grey-300); transition: var(--transition); }
.footer__col a:hover { color: var(--blue-accent); padding-left: 4px; }
.footer__contact li { color: var(--grey-400); }

.footer__socials { display: flex; gap: 10px; margin-top: 16px; }
.footer__socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__socials a:hover { background: var(--blue); transform: translateY(-3px); padding-left: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: var(--grey-400);
}
@media (max-width: 768px) {
  .footer__bottom {
    padding: 24px 70px 24px 24px;
    font-size: 13px;
    line-height: 1.5;
  }
  .footer__bottom p {
    text-align: left;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
  z-index: 99;
  animation: whatsapp-pulse 2.4s infinite;
}
.whatsapp-float:hover {
  background: #1eb858;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55), 0 2px 10px rgba(0,0,0,0.2);
}
.whatsapp-float::before {
  content: 'Chat with us';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--grey-900);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--grey-900);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 12px rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
  .whatsapp-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .whatsapp-float::before, .whatsapp-float::after { display: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .about__grid, .why__grid, .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image, .why__image { min-height: 380px; }
  .about__img-main { height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .top-bar__inner { flex-direction: column; gap: 8px; text-align: center; }
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav--left, .nav--right { display: none; }
  .logo--center { justify-self: start; }
  .nav--mobile {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav--mobile.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav--mobile a {
    color: var(--grey-900);
    font-weight: 600;
    font-size: 15px;
    padding: 4px 0;
  }
  .nav--mobile a:not(.btn):hover { color: var(--blue); }
  .nav--mobile a.btn--primary { color: var(--white); }
  .menu-toggle { display: flex; }
  .hero__stats { gap: 28px; }
  .hero__stats strong { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .contact__form { padding: 28px 20px; }
  .about__badge { bottom: -10px; right: 10px; padding: 16px 20px; }
  .about__badge strong { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero { min-height: 75vh; }
  .btn { padding: 12px 24px; font-size: 13px; }
}
