/* ============================================================
   IT-Remote.Support – Stylesheet
   Fonts: Plus Jakarta Sans + Outfit (Bunny Fonts, OFL, kommerziell frei)
   ============================================================ */

:root {
  --blue:       #1A56FF;
  --blue-dark:  #1241D6;
  --blue-light: #EEF3FF;
  --cyan:       #0EA5E9;
  --navy:       #0C1A3A;
  --bg:         #F5F7FF;
  --bg-alt:     #EDF0FB;
  --white:      #FFFFFF;
  --text:       #0C1A3A;
  --text-mid:   #3D4F78;
  --text-muted: #6B7FAD;
  --border:     #DDE3F5;
  --shadow:     0 2px 20px rgba(26,86,255,.07);
  --shadow-h:   0 8px 40px rgba(26,86,255,.14);
  --radius:     14px;
  --radius-lg:  22px;
  --font-head:  'Plus Jakarta Sans', sans-serif;
  --font-body:  'Outfit', sans-serif;
  --tr:         all .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(245,247,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.nav-header.scrolled {
  background: rgba(245,247,255,.97);
  box-shadow: 0 4px 24px rgba(26,86,255,.08);
}

/* nav-inner holds logo + desktop links + desktop CTAs + burger */
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; gap: 1rem;
}

/* ── Logo ── */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; transition: var(--tr); }
.logo:hover { opacity: .85; }
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
  color: var(--blue); letter-spacing: -.03em;
}
.logo-accent { color: var(--navy); }

/* ── Desktop nav links ── */
.nav-links {
  display: flex; gap: .2rem; margin-left: .5rem; flex: 1;
}
.nav-links a {
  padding: .45rem .85rem; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--text-mid);
  transition: var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }

/* ── Desktop CTA buttons ── */
.nav-ctas { display: flex; gap: .6rem; margin-left: auto; flex-shrink: 0; }

/* ── Burger button – hidden on desktop ── */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
  margin-left: auto; flex-shrink: 0;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu drawer ── */
.mobile-menu {
  display: none; /* shown only on mobile */
  flex-direction: column; gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-menu.open { display: flex; }

.mobile-links { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1.25rem; }
.mobile-links a {
  display: block; padding: .65rem 1rem; border-radius: 10px;
  font-size: 1rem; font-weight: 600; color: var(--text-mid);
  transition: var(--tr);
}
.mobile-links a:hover { color: var(--blue); background: var(--blue-light); }

.mobile-ctas { display: flex; flex-direction: column; gap: .6rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: .55rem 1.2rem; border-radius: 10px;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--tr); white-space: nowrap; text-align: center; justify-content: center;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 16px rgba(26,86,255,.28); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 6px 24px rgba(26,86,255,.38); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-ghost  { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); transform: translateY(-1px); }
.btn-lg   { padding: .8rem 1.75rem; font-size: 1rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 9rem 0 6rem; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1920&q=85&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,26,58,.88) 0%, rgba(18,65,214,.72) 50%, rgba(12,26,58,.80) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.hero-stat {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.92);
  padding: .4rem 1rem; border-radius: 100px; font-size: .875rem; font-weight: 500;
}
.hero-stat svg { flex-shrink: 0; color: #6EE7B7; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 1.4rem; }
.hero-sub   { font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 600px; line-height: 1.7; margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section     { padding: 6rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-alt  { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-label { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: .8rem; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.7rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; color: var(--text); margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-sub   { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(255px,1fr)); gap: 1.4rem; }
.service-card  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--tr); box-shadow: var(--shadow); }
.service-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); border-color: rgba(26,86,255,.2); }
.service-icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; transition: var(--tr); }
.service-card:hover .service-icon { background: var(--blue); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--blue); transition: var(--tr); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.service-desc  { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .section-label { color: #60A5FA; }
.about-bio   { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 1.8rem; }
.about-points { display: flex; flex-direction: column; gap: .75rem; }
.about-points li { display: flex; align-items: center; gap: .75rem; font-size: .97rem; font-weight: 500; color: rgba(255,255,255,.88); }
.about-points li::before { content: ''; width: 20px; height: 20px; min-width: 20px; background: var(--blue); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }

.photo-frame-wrapper { display: flex; justify-content: center; align-items: center; position: relative; }
.photo-frame { width: 320px; height: 360px; border-radius: 28px; border: 3px dashed rgba(96,165,250,.5); background: rgba(255,255,255,.05); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 0 60px rgba(26,86,255,.25); }
.photo-frame.has-photo { border-style: solid; border-color: rgba(26,86,255,.6); }
.photo-frame.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem; text-align: center; color: rgba(255,255,255,.5); }
.photo-hint { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.75); }
.photo-sub  { font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.45); }
.photo-sub code { background: rgba(255,255,255,.1); padding: 2px 5px; border-radius: 4px; font-size: .72rem; }
.photo-badge { position: absolute; bottom: -16px; right: 0; background: var(--blue); color: var(--white); padding: .55rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 600; display: flex; align-items: center; gap: 6px; box-shadow: 0 6px 20px rgba(26,86,255,.4); white-space: nowrap; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; transition: var(--tr); box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--blue); background: linear-gradient(145deg,var(--blue) 0%,#1241D6 100%); color: var(--white); box-shadow: 0 12px 48px rgba(26,86,255,.35); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.pricing-card.featured:hover { box-shadow: 0 20px 60px rgba(26,86,255,.45); }
.pricing-name  { font-family: var(--font-head); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 1rem; }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,.7); }
.pricing-price { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--text); }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-unit  { font-size: 1rem; font-weight: 400; color: var(--text-muted); margin-left: 4px; }
.pricing-card.featured .pricing-unit { color: rgba(255,255,255,.65); }
.pricing-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.2); }
.pricing-features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: .65rem; font-size: .9rem; color: var(--text-mid); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.88); }
.pricing-check { width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; }
.pricing-card.featured .pricing-check { background: rgba(255,255,255,.2); }
.pricing-check svg { width: 10px; height: 10px; stroke: var(--blue); }
.pricing-card.featured .pricing-check svg { stroke: var(--white); }
.btn-outline-white { background: transparent; color: var(--white) !important; border: 2px solid rgba(255,255,255,.5) !important; }
.btn-outline-white:hover { background: rgba(255,255,255,.15) !important; border-color: var(--white) !important; }
.btn-primary-outline { background: transparent; color: var(--blue) !important; border: 2px solid var(--blue) !important; }
.btn-primary-outline:hover { background: var(--blue-light) !important; }

.extras-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.extras-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
.extras-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; text-align: center; }
.extra-icon   { width: 52px; height: 52px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto .8rem; }
.extra-icon svg { width: 22px; height: 22px; stroke: var(--blue); }
.extra-name  { font-weight: 700; font-size: .95rem; margin-bottom: .25rem; }
.extra-desc  { font-size: .83rem; color: var(--text-muted); }
.extras-note { text-align: center; font-size: .875rem; color: var(--text-muted); margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-sub { font-size: 1rem; color: var(--text-muted); margin: .5rem 0 2rem; line-height: 1.7; }
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { width: 44px; height: 44px; min-width: 44px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-item-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-val   { font-weight: 600; font-size: .95rem; color: var(--text); }
.contact-note { margin-top: 2rem; background: var(--blue-light); border: 1px solid rgba(26,86,255,.12); border-radius: 12px; padding: 1.2rem 1.4rem; font-size: .875rem; color: var(--text-mid); line-height: 1.65; }
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 1.75rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text-mid); }
.form-group input, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: .93rem; color: var(--text); background: var(--white); transition: var(--tr); outline: none; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,86,255,.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-feedback { margin-top: 1rem; padding: .75rem 1rem; border-radius: 8px; font-size: .9rem; font-weight: 500; display: none; }
.form-feedback.success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; display: block; }
.form-feedback.error   { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo .logo-text { color: rgba(255,255,255,.92); }
.footer-logo .logo-accent { color: #60A5FA; }
.footer-copy { font-size: .83rem; color: rgba(255,255,255,.45); flex: 1; text-align: center; }
.footer-nav  { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.5); transition: var(--tr); }
.footer-nav a:hover { color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1){transition-delay:.05s}
.stagger.visible > *:nth-child(2){transition-delay:.12s}
.stagger.visible > *:nth-child(3){transition-delay:.19s}
.stagger.visible > *:nth-child(4){transition-delay:.26s}
.stagger.visible > *:nth-child(5){transition-delay:.33s}
.stagger.visible > *:nth-child(6){transition-delay:.40s}
.stagger.visible > *:nth-child(7){transition-delay:.47s}
.stagger.visible > *:nth-child(8){transition-delay:.54s}

/* ============================================================
   RESPONSIVE – Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .photo-frame-wrapper { order: -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .extras-grid    { grid-template-columns: repeat(3,1fr); }
}

/* ============================================================
   RESPONSIVE – Mobile (max 768px)
   ============================================================
   Key fix: nav-inner NEVER shows .nav-links or .nav-ctas on mobile.
   They are hidden via display:none. The burger opens .mobile-menu
   which is a SEPARATE element below .nav-inner.
   ============================================================ */
@media (max-width: 768px) {

  /* Hide desktop nav & CTAs completely */
  .nav-links { display: none !important; }
  .nav-ctas  { display: none !important; }

  /* Show burger */
  .burger { display: flex; }

  /* Mobile menu drawer */
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; }

  /* Sections */
  .hero       { padding: 8rem 0 5rem; }
  .hero-title { font-size: 2rem; }
  .section    { padding: 4rem 0; }
  .container  { padding: 0 1.25rem; }

  /* Grids */
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .extras-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  /* Photo frame */
  .photo-frame { width: 260px; height: 300px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy  { order: 3; }
  .footer-nav   { justify-content: center; }
}

/* ============================================================
   RESPONSIVE – Small mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .services-grid  { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
