/* ============================================================
   MANO Consulting d.o.o. — style.css
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2F45;
  --navy-light: #243B55;
  --orange:     #E8622A;
  --orange-dk:  #C74E1C;
  --white:      #FFFFFF;
  --offwhite:   #F5F7FA;
  --gray-100:   #EEF1F5;
  --gray-300:   #CBD2DC;
  --gray-500:   #7A8899;
  --gray-700:   #3D4D5C;
  --text:       #1A2535;
  --text-soft:  #4A5568;

  --font-disp:  'Sora', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(13,27,42,.10);
  --shadow-md:  0 8px 40px rgba(13,27,42,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- 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);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.section { padding: 100px 0; }

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 600px;
}

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .section-lead { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,98,42,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}

.logo-mano { color: var(--white); }
.logo-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 3px 2px;
  vertical-align: middle;
}
.logo-consulting { color: var(--gray-300); font-weight: 400; font-size: 1.1rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange-dk) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,.88) 0%,
    rgba(13,27,42,.72) 55%,
    rgba(13,27,42,.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  max-width: 680px;
  margin-left: clamp(24px, 8vw, 160px);
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.hero-title span {
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,.72);
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- STRIP ---------- */
.strip {
  background: var(--orange);
  padding: 18px 0;
  overflow: hidden;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip-inner span {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- ABOUT ---------- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.badge-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .9;
}

.about-text p {
  color: var(--text-soft);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: .97rem;
}
.about-list li i {
  color: var(--orange);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services { background: var(--offwhite); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-top-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px; height: 56px;
  background: rgba(232,98,42,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon i {
  font-size: 1.5rem;
  color: var(--orange);
}

.service-card h3 {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card > p {
  font-size: .93rem;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-card ul li {
  font-size: .87rem;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .7;
}

/* ---------- WHY ---------- */
.why {
  position: relative;
  padding: 100px 0;
}
.why-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.why-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.93), rgba(26,47,69,.88));
}

.why > .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(232,98,42,.5);
}
.why-card i {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 18px;
  display: block;
}
.why-card h4 {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

/* ---------- PROCESS ---------- */
.process { background: var(--white); }

.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--navy-light));
  opacity: .3;
}

.process-steps {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.step-bubble {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 3px solid var(--orange);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-bubble {
  background: var(--orange);
  transform: scale(1.08);
}

.process-step h4 {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---------- CONTACT ---------- */
.contact { background: var(--offwhite); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.info-item i {
  font-size: 1.2rem;
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}
.info-item div { display: flex; flex-direction: column; gap: 2px; }
.info-item strong { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); }
.info-item span, .info-item a { font-size: 1rem; color: var(--text); }
.info-item a:hover { color: var(--orange); }


.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--offwhite);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,42,.12);
  background: var(--white);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e53e3e;
}
.form-error {
  font-size: .82rem;
  color: #e53e3e;
  min-height: 18px;
}

.form-note {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-500);
  margin-top: 14px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-weight: 500;
}
.form-success i { font-size: 1.3rem; color: #16a34a; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.75); }

.footer-top { padding: 72px 0 56px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .logo-mano { color: var(--white); font-family: var(--font-disp); font-size: 1.5rem; font-weight: 700; }
.footer-brand .footer-dot { background: var(--orange); }
.footer-brand .logo-consulting { color: var(--gray-300); font-size: 1.1rem; }
.footer-brand p { margin-top: 12px; font-size: .88rem; color: rgba(255,255,255,.5); }

.footer-nav strong,
.footer-contact strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--orange); }
.soon {
  font-size: .9rem;
  color: rgba(255,255,255,.3);
  cursor: default;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  margin-bottom: 10px;
}
.footer-contact i { color: var(--orange); width: 16px; }
.footer-contact a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(232,98,42,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--orange-dk); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 360px; }
  .about-badge { bottom: -16px; right: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-line { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 48px;
    gap: 28px;
    transition: right var(--transition);
    box-shadow: -4px 0 40px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; }

  .hamburger { display: flex; }

  .hero-content { margin-left: 24px; padding-top: 120px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .strip-inner { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-scroll { animation: none; }
  * { transition-duration: .01ms !important; }
}
