/* ============ PC Computer servis s.r.o. — static stylesheet ============ */

:root {
  --primary: #14b8a6;
  --primary-dark: #0f9c8c;
  --foreground: #23272e;
  --muted-foreground: #6b7280;
  --background: #ffffff;
  --secondary: #F2F4F7;
  --border: #e5e7eb;
  --card: #ffffff;
  --footer-bg: #2b2b2b;

  --radius: 1rem;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Outfit', 'Inter', sans-serif; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg { display: block; }
button { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.icon { flex-shrink: 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 0.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}
.btn-lg { font-size: 1.125rem; padding: 0.9rem 2rem; height: 3.5rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px -5px rgba(20,184,166,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 15px 30px -5px rgba(20,184,166,0.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--secondary); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: rgba(255,255,255,0.9); }

/* ============ Navbar ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--secondary);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.6rem;
  background: rgba(20,184,166,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-weight: 700; font-size: 1.05rem; }
.logo-text span { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 500; }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted-foreground); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: none; }

.mobile-menu-btn { background: none; border: none; padding: 0.5rem; cursor: pointer; color: var(--muted-foreground); }
.mobile-menu { display: none; border-top: 1px solid var(--secondary); }
.mobile-menu.open { display: block; }
.mobile-menu .container { padding-top: 1rem; padding-bottom: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { font-size: 1rem; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px dashed var(--border); }
.mobile-menu a:last-of-type { border-bottom: none; }

@media (min-width: 768px) {
  .nav-links, .nav-cta { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ============ Hero ============ */
.hero { background: linear-gradient(135deg, var(--secondary), #fff); padding: 4rem 0 6rem; overflow: hidden; position: relative; }
@media (min-width: 768px) { .hero { padding: 6rem 0 8rem; } }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: rgba(20,184,166,0.1); color: var(--primary);
  border-radius: 999px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em;
}
.eyebrow .dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--primary); }
h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
@media (min-width: 640px) { h1 { font-size: 3rem; } }
@media (min-width: 1024px) { h1 { font-size: 3.5rem; } }
h1 .accent { color: var(--primary); position: relative; }
.hero-lead { font-size: 1.15rem; color: var(--muted-foreground); line-height: 1.6; max-width: 32rem; margin-top: 1.5rem; }
.hero-cta { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }
.hero-social { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; font-size: 0.9rem; color: var(--muted-foreground); }
.avatars { display: flex; }
.avatars div { width: 2.5rem; height: 2.5rem; border-radius: 999px; background: rgba(20,184,166,0.2); border: 2px solid #fff; margin-left: -0.75rem; }
.avatars div:first-child { margin-left: 0; }
.stars { color: #eab308; letter-spacing: 2px; }

.hero-image-wrap { position: relative; }
.hero-image-wrap img { width: 100%; height: auto; border-radius: 1.5rem; box-shadow: var(--shadow-xl); border: 4px solid #fff; object-fit: cover; }
.floating-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.95); padding: 1rem; border-radius: 0.85rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 1rem; max-width: 16rem;
}
.floating-badge .icon-circle { width: 3rem; height: 3rem; border-radius: 999px; background: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-badge strong { font-size: 0.9rem; display: block; }
.floating-badge span { font-size: 0.8rem; color: var(--muted-foreground); }

/* ============ Quick services ============ */
.quick-services { padding: 5rem 0; margin-top: -2.5rem; position: relative; z-index: 10; }
.quick-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .quick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .quick-grid { grid-template-columns: repeat(4, 1fr); } }
.quick-card {
  background: #fff; border-radius: 1rem; padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid #f3f4f6;
  transition: all 0.25s ease;
}
.quick-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(20,184,166,0.2); }
.quick-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.6rem; background: #eff6ff; color: #2563eb; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.quick-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.quick-card p { font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1.25rem; }
.quick-card a { font-size: 0.9rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 0.25rem; }

/* ============ Why us ============ */
.whyus { padding: 3.5rem 0; border-top: 1px solid #fafafa; }
.whyus-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
.whyus-item { display: flex; align-items: center; gap: 0.75rem; }
.whyus-icon { width: 2.75rem; height: 2.75rem; border-radius: 999px; background: rgba(20,184,166,0.06); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.whyus-item span { font-weight: 600; }

/* ============ Sections generic ============ */
.section { padding: 6rem 0; }
.section-alt { background: #F8FAFC; }
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 640px) { h2 { font-size: 2.5rem; } }
.section-header p { font-size: 1.15rem; color: var(--muted-foreground); }

/* ============ Services grid ============ */
.services-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04); border: 1px solid transparent;
  transition: all 0.25s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(20,184,166,0.1); }
.service-icon { display: inline-flex; padding: 1rem; border-radius: 1rem; background: rgba(20,184,166,0.06); color: var(--primary); margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.service-card p { color: var(--muted-foreground); line-height: 1.6; margin-bottom: 2rem; min-height: 4.5rem; }

/* ============ Pricing ============ */
.pricing-grid { display: grid; gap: 2rem; max-width: 68rem; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { position: relative; border-radius: 1.25rem; padding: 2rem; display: flex; flex-direction: column; background: #F8FAFC; border: 1px solid transparent; transition: all 0.25s ease; }
.price-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(20,184,166,0.1); }
.price-card.highlight { background: var(--primary); color: #fff; box-shadow: var(--shadow-xl); }
@media (min-width: 768px) { .price-card.highlight { transform: scale(1.05); } }
.price-badge { position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); background: #eab308; color: #713f12; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.03em; }
.price-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.price-amount { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.75rem; }
.price-amount .num { font-size: 2.25rem; font-weight: 800; }
.price-amount .unit { font-size: 0.9rem; opacity: 0.75; }
.price-card > p.desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; opacity: 0.9; }
.price-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.price-check { width: 1.25rem; height: 1.25rem; border-radius: 999px; background: rgba(20,184,166,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.price-card.highlight .price-check { background: rgba(255,255,255,0.2); color: #fff; }
.pricing-note { text-align: center; font-size: 0.9rem; color: var(--muted-foreground); margin-top: 2.5rem; }
.pricing-note a { color: var(--primary); font-weight: 600; }

/* ============ Testimonials ============ */
.testimonials-section { background: var(--secondary); }
.testimonial-scroll { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.testimonial-scroll::-webkit-scrollbar { height: 6px; }
.testimonial-scroll::-webkit-scrollbar-thumb { background: rgba(20,184,166,0.3); border-radius: 999px; }
.testimonial-card {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  min-width: 280px; max-width: 340px; flex: 1 0 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  scroll-snap-align: start;
}
.testimonial-stars { color: var(--primary); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p.quote { font-style: italic; line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-card .author { font-weight: 700; }
.testimonial-card .role { font-size: 0.85rem; color: var(--muted-foreground); }

/* ============ About ============ */
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: 1.25rem; box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.about-stat {
  position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 2;
  background: #fff; padding: 1.5rem; border-radius: 1rem; box-shadow: var(--shadow-lg);
  max-width: 14rem; border: 1px solid #f3f4f6;
}
.about-stat .big { font-size: 2.25rem; font-weight: 800; color: var(--primary); }
.about-stat p { color: var(--muted-foreground); font-weight: 500; }
.about-text p { font-size: 1.1rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1.25rem; }
.about-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.about-list li { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.about-list svg { color: var(--primary); flex-shrink: 0; }

/* ============ Contact ============ */
.contact-cards { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem; background: #F8FAFC; border-radius: 1.25rem; transition: box-shadow 0.2s ease; }
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card .icon-circle { width: 4rem; height: 4rem; border-radius: 999px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 1.5rem; }
.contact-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-card p { color: var(--muted-foreground); margin-bottom: 1rem; font-size: 0.95rem; }
.contact-card .value { font-size: 1.1rem; font-weight: 600; color: var(--primary); }

.contact-bottom { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-bottom { grid-template-columns: 1fr 1fr; } }
.map-wrap { border-radius: 1.25rem; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04); height: 460px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4); }
.contact-form-card { background: #fff; padding: 2rem; border-radius: 1.25rem; box-shadow: var(--shadow-lg); border: 1px solid #f3f4f6; }
.contact-form-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.field input, .field textarea {
  width: 100%; padding: 0.7rem 0.9rem; border-radius: 0.6rem; border: 1px solid var(--border);
  background: #f9fafb; font-family: inherit; font-size: 1rem; color: var(--foreground);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(20,184,166,0.12); }
.field textarea { min-height: 150px; resize: vertical; }

/* ============ Footer ============ */
.footer { background: var(--footer-bg); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand p { color: #9ca3af; font-size: 0.9rem; line-height: 1.6; margin: 1rem 0; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 2rem; height: 2rem; border-radius: 999px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--primary); }
.footer h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer a { color: #9ca3af; font-size: 0.9rem; }
.footer a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; color: #9ca3af; font-size: 0.9rem; }
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 0.15rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: #9ca3af; }
.hours-row span:last-child { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #6b7280; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* ============ Toast ============ */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--foreground); color: #fff; padding: 1rem 1.5rem; border-radius: 0.6rem;
  box-shadow: var(--shadow-lg); z-index: 100; max-width: 22rem;
  opacity: 0; transform: translateY(1rem); transition: all 0.25s ease; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast strong { display: block; margin-bottom: 0.25rem; }
.toast span { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* ============ Utility ============ */
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.hidden { display: none; }
.text-center { text-align: center; }
