/* ===========================================
   BEKAJPLAST – Main Stylesheet
   =========================================== */

:root {
  --blue:      #1a7de8;
  --blue-dark: #1260b8;
  --blue-light:#3d95f5;
  --charcoal:  #1c1e22;
  --dark:      #111316;
  --mid:       #3a3d44;
  --steel:     #7a8390;
  --light:     #f4f6f9;
  --white:     #ffffff;
  --border:    #dde3ea;
  --radius:    0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── UTILITIES ─────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section-white { background: var(--white); }
.section-light { background: var(--light); }
.section-dark  { background: var(--charcoal); position: relative; overflow: hidden; }

section { padding: 6rem 5%; }

.section-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .8rem;
  display: flex; align-items: center; gap: .6rem;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--blue);
}
.label-blue-light { color: var(--blue-light); }
.label-blue-light::before { background: var(--blue-light); }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-sub { max-width: 560px; color: var(--steel); line-height: 1.8; margin-top: .5rem; }

/* ── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue); color: var(--white);
  font-family: 'Lato', sans-serif; font-size: .85rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .9rem 2rem; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  font-family: 'Lato', sans-serif; font-size: .85rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .9rem 2rem; border: 2px solid rgba(255,255,255,.3); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-full { width: 100%; text-align: center; }

/* ── NAV ─────────────────────────────────  */
#site-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: rgba(17,19,22,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26,125,232,.3);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  transition: background .3s;
}
#site-nav.scrolled { background: rgba(17,19,22,.99); }

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: .08em;
  display: flex; align-items: center;
}
.nav-logo span    { color: var(--blue); }
.nav-logo img     { height: 42px; width: auto; }

ul.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); transition: color .2s;
}
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--blue); }

.nav-cta {
  background: var(--blue); color: var(--white);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .55rem 1.3rem; transition: background .2s;
}
.nav-cta:hover { background: var(--blue-dark); color: var(--white); }

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

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 72px; right: 0; bottom: 0;
  width: min(320px, 100%);
  background: var(--dark);
  border-left: 1px solid rgba(26,125,232,.3);
  padding: 2rem; z-index: 998;
  display: flex; flex-direction: column; gap: 1.5rem;
  transform: translateX(100%); transition: transform .35s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
ul.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.mobile-nav-links a {
  font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.8); display: block; padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav-cta { margin-top: .5rem; display: inline-block; }

.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 997; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav-overlay.is-open { opacity: 1; pointer-events: all; }

/* ── HERO ──────────────────────────────── */
#hero {
  min-height: 100vh; background: var(--dark);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,125,232,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,125,232,.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,125,232,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -30%; left: -15%;
  width: 50vw; height: 50vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,125,232,.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 72px; padding-bottom: 5rem;
}
.hero-eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
  animation: fadeUp .6s ease both;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--blue); }
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 700; line-height: .95;
  color: var(--white); letter-spacing: -.01em; margin-bottom: 1.8rem;
  animation: fadeUp .6s .15s ease both;
}
.hero-title em { font-style: normal; color: var(--blue); display: block; }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,.6);
  max-width: 520px; line-height: 1.8; margin-bottom: 2.5rem;
  animation: fadeUp .6s .3s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .6s .45s ease both; }
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-top: 4rem;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1;
}
.stat-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--steel); margin-top: .4rem;
}

/* ── ABOUT ─────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; height: 480px; }
.about-box-main {
  position: absolute; inset: 0; background: var(--charcoal);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-box-main svg { width: 55%; opacity: .07; }
.about-box-num {
  position: absolute; top: 2rem; left: 2rem;
  font-family: 'Oswald', sans-serif; font-size: 5rem; font-weight: 700;
  color: rgba(255,255,255,.06); line-height: 1; pointer-events: none; user-select: none;
}
.about-box-tag {
  position: absolute; bottom: 1.2rem; left: 1.5rem;
  background: var(--blue); color: white;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .45rem .9rem;
}
.about-box-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 45%; padding-top: 45%; background: var(--blue);
}
.about-text p { font-size: 1rem; line-height: 1.85; color: var(--mid); margin-bottom: 1.2rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.feature-item  { display: flex; align-items: flex-start; gap: .8rem; }
.feature-icon  {
  width: 36px; height: 36px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--charcoal); margin-bottom: .2rem; }
.feature-text span   { font-size: .8rem; color: var(--steel); }

/* ── PRODUCTS ───────────────────────────  */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.product-card {
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s, border-color .3s;
  cursor: pointer;
}
.product-card:hover { box-shadow: 0 12px 40px rgba(26,125,232,.12); transform: translateY(-4px); border-color: var(--blue); }
.product-img {
  height: 220px; background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-img img    { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder svg { width: 80px; height: 80px; }
.prod-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--blue); color: white;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .3rem .7rem;
}
.product-body { padding: 1.5rem; }
.product-body h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.25rem;
  font-weight: 600; color: var(--charcoal); margin-bottom: .6rem;
}
.product-body p { font-size: .85rem; color: var(--steel); line-height: 1.7; }
.product-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.spec-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(26,125,232,.3); padding: .25rem .6rem;
}

/* ── WHY US ─────────────────────────────  */
.why-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,125,232,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,125,232,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.why-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-intro p { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 2rem; }
.why-cards   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-card {
  padding: 1.8rem; border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03); transition: background .3s, border-color .3s;
}
.why-card:hover { background: rgba(26,125,232,.08); border-color: rgba(26,125,232,.4); }
.why-card-num  { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: .8rem; }
.why-card h4   { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.why-card p    { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── PROCESS ────────────────────────────  */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-light));
}
.process-step { padding: 0 1.5rem; text-align: center; }
.step-circle  {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: white;
  font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(26,125,232,.2);
}
.process-step h4 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: .5rem; }
.process-step p  { font-size: .8rem; color: var(--steel); line-height: 1.65; }

/* ── CONTACT ────────────────────────────  */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info p  { font-size: .95rem; color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
.contact-items   { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item    { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  width: 40px; height: 40px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label    { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); }
.ci-val      { font-size: .95rem; color: var(--charcoal); margin-top: .15rem; }
.ci-val a    { color: var(--charcoal); transition: color .2s; }
.ci-val a:hover { color: var(--blue); }

.contact-form     { display: flex; flex-direction: column; gap: 1rem; }
.form-row         { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group       { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border); padding: .8rem 1rem;
  font-family: 'Lato', sans-serif; font-size: .9rem; color: var(--charcoal);
  background: var(--white); outline: none; transition: border-color .2s; resize: vertical;
}
.form-group textarea      { min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }

.contact-msg {
  padding: .9rem 1.2rem; margin-bottom: 1rem; display: none;
  font-size: .88rem; font-weight: 700;
}
.contact-msg.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.contact-msg.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

/* ── FOOTER ─────────────────────────────  */
#footer {
  background: var(--dark); padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(26,125,232,.2);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.75; margin-top: 1rem; max-width: 260px; }
.footer-socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--blue); color: var(--blue); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: 'Oswald', sans-serif; font-size: .85rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--blue); }

.footer-contact-list { gap: .9rem !important; }
.footer-contact-list li { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-contact-list svg { width: 14px; height: 14px; fill: var(--blue); flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-contact-list a:hover { color: var(--blue); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p        { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-tagline         { color: rgba(255,255,255,.18) !important; font-size: .7rem !important; }

/* ── ANIMATIONS ─────────────────────────  */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────  */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 960px) {
  ul.nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 280px; }
  .about-box-accent { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-cards     { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: .5rem; text-align: center; }
  .hero-stats    { gap: 1.5rem; }
}
