/* ========================================
   ProOne — Corporate IT Website
   Style: High-End Modern Tech
   ======================================== */

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

/* --- Variables --- */
:root {
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #EFEFEF;
  --mid-gray: #8D9192;
  --dark-gray: #444444;
  --black: #111111;
  --red: #E60000;
  --red-hover: #CC0000;
  --blue-accent: #3A8EE6;
  --glass-bg: rgba(255,255,255,0.65);
  --glass-border: rgba(255,255,255,0.9);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
  --shadow-red: 0 8px 32px rgba(230,0,0,0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title span { color: var(--red); }

.section-sub {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 540px;
  line-height: 1.75;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(230,0,0,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: #DDDDDD;
}
.btn-outline:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo img {
  height: 70px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}
.nav__link:hover, .nav__link.active {
  color: var(--black);
  background: var(--light-gray);
}
.nav__cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
}
.nav__cta:hover {
  background: var(--red) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 24px 32px 32px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 8px;
  z-index: 998;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: 1.1rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hero__blob--1 {
  width: 700px; height: 700px;
  background: var(--red);
  top: -200px; right: -200px;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: var(--blue-accent);
  bottom: -100px; left: -100px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero__content {}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-gray);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero__tag span {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero__title {
  font-family: 'Prompt', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero__title .accent { color: var(--red); }
.hero__title .thin {
  font-weight: 300;
  color: var(--mid-gray);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--light-gray);
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero__stat-num {
  font-family: 'Prompt', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.hero__stat-num span { color: var(--red); }
.hero__stat-label {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-top: 4px;
  font-weight: 500;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s 0.2s ease both;
}
.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero__card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.hero__card--main {
  position: relative;
  z-index: 2;
}
.hero__card--back {
  position: absolute;
  top: -16px; right: -16px;
  width: 90%;
  z-index: 1;
  opacity: 0.6;
  padding: 20px;
  background: rgba(230,0,0,0.06);
  border-color: rgba(230,0,0,0.15);
}
.card__icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card__icon-wrap {
  width: 52px; height: 52px;
  background: rgba(230,0,0,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(40,200,100,0.1);
  color: #28A060;
  padding: 5px 12px;
  border-radius: 50px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card__sub {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 20px;
}
.card__progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.progress-item { display: flex; flex-direction: column; gap: 4px; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--dark-gray);
  font-weight: 500;
}
.progress-bar {
  height: 6px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--red);
  animation: fillBar 1.5s 1s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
}
.progress-fill.blue { background: var(--blue-accent); }
.progress-fill.gray { background: var(--mid-gray); }
@keyframes fillBar {
  to { transform: scaleX(1); }
}

/* Floating badges */
.hero__badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}
.hero__badge--1 { bottom: -20px; left: -24px; animation-delay: 0s; }
.hero__badge--2 { top: -16px; right: -8px; animation-delay: -2s; }
.hero__badge i, .hero__badge svg {
  color: var(--red);
  font-size: 1.2rem;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========================================
   REVEAL ON SCROLL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image-bg {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about__logo-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.about__logo-display img {
  width: 60%;
}
.about__year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.about__year-num {
  font-family: 'Prompt', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.about__year-text {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 4px;
  font-weight: 500;
}
.about__content {}
.about__text {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about__text strong {
  color: var(--black);
  font-weight: 600;
}
.about__team {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.about__team-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), #FF6666);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}
.about__team-info {}
.about__team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.about__team-role {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

/* ========================================
   WHY US
   ======================================== */
.why {
  padding: 120px 0;
  background: var(--white);
}
.why__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.why__head .section-label { justify-content: center; }
.why__head .section-sub { max-width: 100%; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why__card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.why__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,0,0,0.04), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,0,0,0.15);
}
.why__card:hover::before { opacity: 1; }
.why__card-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--light-gray);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  transition: var(--transition);
}
.why__card:hover .why__card-num { color: rgba(230,0,0,0.1); }
.why__icon {
  width: 56px; height: 56px;
  background: rgba(230,0,0,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why__card:hover .why__icon {
  background: var(--red);
  color: var(--white);
}
.why__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.why__card-text {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: 0 0 120px;
  background: var(--white);
}
.cta-banner__inner {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 72px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--red);
  border-radius: 50%;
  right: -200px; top: -200px;
  opacity: 0.15;
  filter: blur(80px);
}
.cta-banner__title {
  font-family: 'Prompt', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 500px;
}
.cta-banner__title span { color: var(--red); }
.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero__sub {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.75;
}
.page-hero__bg-text {
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(0,0,0,0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.services-section {
  padding: 100px 0;
  background: var(--white);
}
.services-group {
  margin-bottom: 80px;
}
.services-group:last-child { margin-bottom: 0; }
.services-group__label {
  font-family: var(--font-display);
  font-size: 2.00rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,0,0,0.15);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 60px; height: 60px;
  background: rgba(230,0,0,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.05);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--dark-gray);
}
.service-card__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info {}
.contact-info__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info__sub {
  font-size: 0.95rem;
  color: var(--mid-gray);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-detail:hover {
  background: var(--light-gray);
}
.contact-detail__icon {
  width: 44px; height: 44px;
  background: rgba(230,0,0,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}
.contact-detail__value a {
  color: var(--red);
  transition: var(--transition);
}
.contact-detail__value a:hover { color: var(--red-hover); }

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}
.contact-map iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-wrap p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--black);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230,0,0,0.08);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #ff4444;
  box-shadow: 0 0 0 4px rgba(255,68,68,0.08);
}
.form-textarea {
  height: 120px;
  resize: vertical;
  min-height: 100px;
}
.form-error {
  font-size: 0.78rem;
  color: #CC0000;
  margin-top: 6px;
  display: none;
}
.form-error.show { display: block; }
.form-success {
  display: none;
  background: rgba(40,200,100,0.1);
  border: 1px solid rgba(40,200,100,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  color: #1A7A40;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}
.form-submit:active { transform: translateY(0); }
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer__brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--red); color: var(--white); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer__contact-item svg, .footer__contact-item i {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-item span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer__contact-item a:hover { color: var(--red); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.3); }
.footer__bottom a:hover { color: var(--red); }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ========================================
   PAGE TRANSITION
   ======================================== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  pointer-events: none;
  transform: translateX(100%);
}
.page-transition.enter {
  animation: slideIn 0.35s ease forwards;
}
.page-transition.exit {
  animation: slideOut 0.35s ease forwards;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0%); }
}
@keyframes slideOut {
  from { transform: translateX(0%); }
  to { transform: translateX(-100%); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__image-wrap { max-width: 480px; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner__inner { padding: 56px 48px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: 90vh; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__badge { display: none; }
  .cta-banner__inner { padding: 40px 28px; }
  .contact-form-wrap { padding: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero__bg-text { display: none; }
}
