/*
 * Graz IT Support - Style Guide
 * ===============================
 * Primary:   #32a2c1  (teal)
 * Secondary: #0a2434  (dark navy)
 * Dark bg:   #1a1a1a  (near-black sections)
 * Light bg:  #f1f5f9  (contact / footer)
 * White:     #ffffff
 *
 * Headings:  IBM Plex Sans (Google Fonts), weight 600/500
 * Body:      Inter (Google Fonts), weight 400/500
 * Buttons:   IBM Plex Sans, border-radius 50vw (pill)
 */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.75rem);
}

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'IBM Plex Sans', sans-serif; line-height: 1.15; }

/* ─── Icon helper ────────────────────────────────────────────── */
.icon {
  width: 18px; height: 18px;
  display: inline-block; vertical-align: middle; flex-shrink: 0;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 50vw;
  border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary { background: #32a2c1; color: #fff; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(50,162,193,0.4); }
.btn-outline { background: transparent; color: #32a2c1; border: 1.5px solid #32a2c1; }
.btn-outline:hover { background: #32a2c1; color: #fff; }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-hero-cta { background: #fff; color: #373839; font-size: 1.05rem; padding: 0.9rem 2rem; }
.btn-hero-cta:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* ─── Section labels ─────────────────────────────────────────── */
.label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #32a2c1;
  margin-bottom: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 clamp(1.25rem, 4vw, 3.75rem);
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(10, 20, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(50,162,193,0.12);
}
.site-logo img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: #e5e5e5;
  transition: color 0.2s;
}
.main-nav a:hover { color: #32a2c1; }
.main-nav .nav-cta {
  background: #32a2c1; color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 50vw;
}
.main-nav .nav-cta:hover { opacity: 0.85; color: #fff; }

/* ─── Services dropdown ──────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: #e5e5e5; padding: 0;
  display: flex; align-items: center; gap: 0.35rem;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: #32a2c1; }
.nav-dropdown-arrow { font-size: 0.65rem; transition: transform 0.2s; display: inline-block; }
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.main-nav .nav-dropdown-menu {
  display: none !important;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding: 14px 0.4rem 0.4rem;
  background: transparent;
  min-width: 230px; z-index: 300;
  flex-direction: column; gap: 0;
}
.main-nav .nav-dropdown-menu::after {
  content: '';
  position: absolute; top: 14px; left: 0; right: 0; bottom: 0;
  background: rgba(10,20,30,0.97);
  border: 1px solid rgba(50,162,193,0.18);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: flex !important; }
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 1rem;
  color: #e5e5e5; font-size: 0.875rem; font-weight: 500;
  border-radius: 8px; transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(50,162,193,0.12); color: #32a2c1; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #e5e5e5; border-radius: 2px; }


/* ════════════════════════════════════════════════════════════════
   HERO  - dark bg + teal lamp glow
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #000 0%, #0a2434 100%);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Lamp / spotlight effect */
.hero-lamp {
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  pointer-events: none;
}
.hero-lamp::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 120px;
  background: linear-gradient(to bottom, rgba(50,162,193,0.9), rgba(50,162,193,0.1));
}
.hero-lamp::after {
  content: '';
  position: absolute;
  top: 120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(50,162,193,0.22) 0%, rgba(50,162,193,0.06) 40%, transparent 70%);
  border-radius: 50%;
}
.hero-lamp-line-left, .hero-lamp-line-right {
  position: absolute;
  top: 118px;
  width: 240px; height: 2px;
  background: linear-gradient(to right, transparent, rgba(50,162,193,0.5));
}
.hero-lamp-line-left { right: 50%; transform-origin: right center; transform: rotate(8deg); }
.hero-lamp-line-right { left: 50%; transform-origin: left center; transform: rotate(-8deg); background: linear-gradient(to left, transparent, rgba(50,162,193,0.5)); }

.hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 820px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.75rem);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600; color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  cursor: pointer; transition: color 0.2s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.7); }
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(50,162,193,0.6), transparent);
  margin-top: 4px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════ */
.about { padding: 6rem 0; background: #fff; }

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

.about-photos {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
}
.about-photos img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.about-photos img.active { opacity: 1; }

.about-text .label { margin-bottom: 0.5rem; }

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600; color: #0a2434;
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 0.975rem; color: #4a5568;
  margin-bottom: 1rem; line-height: 1.75;
}

.about-facts { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.about-fact {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.9rem; color: #373839; font-weight: 400;
}
.about-fact-icon {
  width: 45px; height: 45px; min-width: 45px;
  border-radius: 50%; background: #0a2434;
  display: flex; align-items: center; justify-content: center;
}
.about-fact-icon svg { width: 1.25rem; height: 1.25rem; }

/* ════════════════════════════════════════════════════════════════
   PROJECTS
   ════════════════════════════════════════════════════════════════ */
.projects { padding: 5.625rem 0; background: #fff; }

.projects-header { margin-bottom: 3rem; display: flex; flex-direction: column; }
.projects-header .label { order: -1; color: #133c47; }
.projects-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; color: #000;
  margin-bottom: 0.5rem;
}
.projects-header .projects-lede { font-size: 1rem; color: rgba(0,0,0,0.6); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(3rem, 9vw, 8.4375rem);
  row-gap: 1.875rem;
}

.project-card {
  display: flex; flex-direction: column;
  gap: 1.875rem;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  color: inherit; text-decoration: none;
}
.project-card.visible { opacity: 1; transform: translateY(0); }
.project-card:nth-child(even) { margin-top: clamp(3rem, 7vw, 6.3rem); }

.project-img {
  border-radius: 16.875px; overflow: hidden;
  aspect-ratio: 8 / 10;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.project-card:hover .project-img img { transform: scale(1.04); }

.project-body { }
.project-body h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.65rem; font-weight: 600; color: #000;
  margin-bottom: 0.6rem;
}
.project-body p { font-size: 1rem; color: rgba(0,0,0,0.8); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════
   DESIGN SHOWCASE SECTION
   ════════════════════════════════════════════════════════════════ */
.design-section {
  overflow: hidden;
  background: #fff;
  padding: 5.625rem clamp(2rem, 5vw, 3.75rem);
}
.design-section-inner {
  position: relative;
  min-height: 800px;
  border-top-right-radius: 16.875px;
  border-bottom-left-radius: 16.875px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
}

.design-section-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16.875px;
  padding: 1.875rem 2.8125rem;
}
.design-section-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  font-weight: 500; color: #000;
  white-space: nowrap;
  margin: 0;
}
.design-section-content p { color: rgba(0,0,0,0.7); font-size: 0.95rem; margin: 0; }

.design-swatches { display: flex; justify-content: center; gap: 1.5rem; }
.swatch {
  width: 2rem; height: 2rem; border-radius: 50%; cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  border: none;
}
.swatch:hover { transform: scale(1.2); }
.swatch.active {
  outline: 3px solid;
  outline-offset: 3px;
}

.design-badge {
  position: absolute; z-index: 3;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem; color: #000; font-weight: 500;
  background: #fff;
  padding: 1.875rem;
  line-height: 1;
}
.design-badge.tl { top: 0; left: 0; border-bottom-right-radius: 16.875px; }
.design-badge.br { bottom: 0; right: 0; border-top-left-radius: 16.875px; }

/* ════════════════════════════════════════════════════════════════
   PROCESS - dark section, vertical timeline
   ════════════════════════════════════════════════════════════════ */
.process {
  background: #1a1a1a;
  border-radius: 50px;
  margin: 0 clamp(1rem, 3vw, 3rem);
  padding: 5.625rem clamp(1.25rem, 4vw, 3.75rem);
}

.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .label { color: #32a2c1; }
.process-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 0.75rem; }
.process-header p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 520px; margin: 0 auto; }

.timeline {
  position: relative;
  max-width: 760px; margin: 0 auto;
}

/* Vertical track + animated fill */
.timeline-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.timeline-fill {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, #7b5ea7, #32a2c1);
  border-radius: 2px;
  transition: height 0.1s linear;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: start;
  margin-bottom: 2.5rem;
  opacity: 0.25;
  transition: opacity 0.5s ease;
}
.timeline-row.active { opacity: 1; }

.timeline-left {
  text-align: right;
  padding-right: 2rem;
  padding-top: 0;
}

.timeline-center {
  display: flex; justify-content: center; padding-top: 4px;
}

.timeline-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #32a2c1;
  outline: 3px solid rgba(50,162,193,0.25);
  flex-shrink: 0;
}

.timeline-right {
  padding-left: 2rem;
}

.timeline-step-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  color: #fff; line-height: 1.3;
}
.timeline-right p {
  font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */
.faq { padding: 6rem 0; background: #fff; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; color: #0a2434;
  margin-bottom: 1rem;
}
.faq-intro p { color: #6b7280; font-size: 0.975rem; line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-radius: 12px; overflow: hidden; margin-bottom: 0.75rem; background: #f8fafc; border: 1px solid #e8ecf0; }

.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: #1a1a2e;
  cursor: pointer; gap: 1rem;
  background: none; border: none; width: 100%; text-align: left;
}
.faq-q .faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: #e8ecf0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #32a2c1; font-weight: 400;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: #32a2c1; color: #fff; }
.faq-a {
  display: none; padding: 0 1.4rem 1.1rem;
  font-size: 0.9rem; color: #4a5568; line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact { padding: 6rem 0; background: #f1f5f9; }

.contact-top {
  display: flex; justify-content: center; gap: 4rem;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.contact-top a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: #32a2c1; transition: opacity 0.2s;
}
.contact-top a:hover { opacity: 0.75; }

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 640px; margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.contact-card h2 {
  font-size: 2rem; font-weight: 600; color: #0a2434;
  text-align: center; margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: #374151; margin-bottom: 0.35rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: #1a1a2e; background: #fff;
  outline: none; appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #32a2c1; box-shadow: 0 0 0 3px rgba(50,162,193,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.service-picker { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; }
.service-option {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  cursor: pointer; padding: 1rem 1.5rem; border-radius: 12px;
  border: 2px solid transparent; transition: border-color 0.2s, background 0.2s;
}
.service-option:hover { border-color: #32a2c1; background: #f0f9fd; }
.service-option.selected { border-color: #32a2c1; background: #e8f7fc; }
.service-option svg { color: #374151; width: 28px; height: 28px; }
.service-option span { font-size: 0.875rem; color: #374151; font-weight: 500; }
.service-option input { position: absolute; opacity: 0; pointer-events: none; }

.contact-picker-label { text-align: center; font-size: 0.9rem; color: #374151; font-weight: 500; margin-bottom: 1rem; }

.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #f1f5f9;
  padding: 1.5rem clamp(1.25rem, 4vw, 3.75rem);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.82rem; color: #6b7280;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #6b7280; transition: color 0.2s; }
.footer-legal a:hover { color: #32a2c1; }

/* ════════════════════════════════════════════════════════════════
   INNER PAGE HERO (service, sos, kontakt, legal)
   ════════════════════════════════════════════════════════════════ */
.page-hero {
  background: #111318; padding: 9rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(50,162,193,0.18) 0%, transparent 70%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: #fff;
  margin-bottom: 0.75rem; position: relative;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; position: relative; max-width: 560px; }

/* ════════════════════════════════════════════════════════════════
   SERVICE PAGE  - packages
   ════════════════════════════════════════════════════════════════ */
.packages-section { padding: 5rem 0 6rem; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: start;
}
.package-card {
  background: #fff; border: 1.5px solid #e8ecf0; border-radius: 18px;
  padding: 2.25rem 2rem; position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.package-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.package-card.featured { border-color: #32a2c1; border-width: 2px; box-shadow: 0 6px 28px rgba(50,162,193,0.15); }

.package-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #226f84, #32a2c1);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 50vw; white-space: nowrap;
  font-family: 'IBM Plex Sans', sans-serif;
}

.package-name { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.15rem; font-weight: 700; color: #0a2434; margin-bottom: 0.25rem; }
.package-desc { font-size: 0.82rem; color: #718096; margin-bottom: 1.5rem; }

.package-price .amount { font-family: 'IBM Plex Sans', sans-serif; font-size: 2.25rem; font-weight: 700; color: #32a2c1; line-height: 1; }
.package-price .mo { font-size: 0.9rem; color: #718096; font-weight: 400; }
.package-price .annual { font-size: 0.78rem; color: #a0aec0; margin-top: 0.2rem; }
.package-price { margin-bottom: 1.75rem; }

.package-features { border-top: 1px solid #f0f4f8; padding-top: 1.5rem; margin-bottom: 1.75rem; }
.package-features-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #a0aec0; margin-bottom: 1rem; }

.package-feature { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.7rem; font-size: 0.875rem; color: #4a5568; }
.feature-check { width: 16px; height: 16px; flex-shrink: 0; color: #32a2c1; margin-top: 2px; }

/* ════════════════════════════════════════════════════════════════
   SOS PAGE
   ════════════════════════════════════════════════════════════════ */
.sos-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 3rem 0; }
.sos-step { background: #fff; border: 1px solid #e8ecf0; border-radius: 14px; padding: 2rem; text-align: center; }
.sos-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #226f84, #32a2c1);
  color: #fff; font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.sos-step h3 { font-family: 'IBM Plex Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #0a2434; margin-bottom: 0.5rem; }
.sos-step p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }

.dl-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
.dl-btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.8rem 1.75rem; border-radius: 50vw;
  font-family: 'IBM Plex Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  border: 2px solid #32a2c1; color: #32a2c1;
  transition: all 0.2s;
}
.dl-btn:hover { background: #32a2c1; color: #fff; transform: translateY(-2px); }
.dl-btn.primary { background: #32a2c1; color: #fff; }
.dl-btn.primary:hover { background: #226f84; }

.sos-info-box {
  background: #eef7fd; border: 1px solid #c8e8f7; border-radius: 12px;
  padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  max-width: 680px; margin: 0 auto;
  font-size: 0.875rem; color: #1a5276; line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════════════════════════════════ */
.legal-content {
  max-width: 720px; margin: 0 auto;
  padding: 7rem clamp(1.25rem, 4vw, 3.75rem) 4rem;
}
.legal-content h1 { font-size: 2rem; font-weight: 600; color: #0a2434; margin-bottom: 0.5rem; }
.legal-content .meta { font-size: 0.82rem; color: #a0aec0; margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.15rem; font-weight: 600; color: #0a2434; margin: 2rem 0 0.6rem; }
.legal-content p { color: #4a5568; font-size: 0.93rem; line-height: 1.75; margin-bottom: 0.9rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; color: #4a5568; font-size: 0.93rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.35rem; }
.legal-content a { color: #32a2c1; }
.legal-content a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   SHARED: nav for inner pages (dark bg always on)
   ════════════════════════════════════════════════════════════════ */
.inner-page .site-header { background: rgba(10, 20, 30, 0.97); border-bottom: 1px solid rgba(50,162,193,0.12); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photos { height: 320px; }
  .projects-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-top { gap: 2rem; }
  .sos-steps { grid-template-columns: 1fr; }
  .design-section-inner { background-attachment: scroll; }
}
@media (max-width: 680px) {
  .main-nav ul { display: none !important; position: absolute; top: 80px; left: 0; right: 0; flex-direction: column; background: rgba(10,20,30,0.97); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(50,162,193,0.15); z-index: 199; }
  .main-nav ul.open { display: flex !important; }
  .main-nav .nav-dropdown-menu { position: static !important; transform: none !important; border: none !important; border-radius: 0 !important; box-shadow: none !important; backdrop-filter: none !important; background: transparent !important; padding: 0 0 0 1rem !important; display: none !important; min-width: 0 !important; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex !important; flex-direction: column !important; gap: 0.25rem !important; }
  .nav-dropdown-toggle { color: #e5e5e5; width: 100%; justify-content: space-between; padding: 0.1rem 0; }
  .nav-dropdown-menu a { padding: 0.4rem 0.75rem; font-size: 0.85rem; }
  .nav-toggle { display: flex; align-items: center; padding: 0.5rem; min-height: 44px; min-width: 44px; justify-content: center; }
  .process { margin: 0 1rem; }
  .timeline-line { display: none; }
  .timeline-row { grid-template-columns: 1fr; gap: 0.25rem; margin-bottom: 2rem; }
  .timeline-left { text-align: left; padding-right: 0; }
  .timeline-center { display: none; }
  .timeline-right { padding-left: 0; }
  .timeline-step-name { color: #32a2c1; font-size: 0.95rem; }
  .site-footer { flex-direction: column; text-align: center; }
  .design-section-inner { min-height: 420px; background-attachment: scroll; }
  .design-section-content { padding: 1.25rem 1.5rem; max-width: calc(100vw - 4rem); }
  .design-section-content h2 { white-space: normal; font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .design-badge { padding: 1rem 1.25rem; font-size: 0.8rem; }
  .page-hero-glow { width: 280px; }
  .hero-inner { padding: 0 1.25rem; }
  .contact-top { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .contact-top a { font-size: 0.95rem; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ════════════════════════════════════════════════════════════════
   INTERACTIONS
   ════════════════════════════════════════════════════════════════ */

/* Button press feedback */
.btn:active {
  transform: scale(0.96) translateY(0) !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

/* Form submit loading spinner */
.btn-loading {
  color: transparent !important;
  pointer-events: none;
  position: relative;
}
.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: btnSpin 0.65s linear infinite;
}
@keyframes btnSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* Inner page card hover lift */
.inner-card {
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.inner-card:hover {
  box-shadow: 0 8px 28px rgba(50,162,193,0.11);
  transform: translateY(-3px);
}

/* Page hero text entrance */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero h1 {
  animation: heroUp 0.65s cubic-bezier(0.16,1,0.3,1) both;
}
.page-hero p {
  animation: heroUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

/* Reduced motion — disable all decorative animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal, .project-card { opacity: 1 !important; transform: none !important; }
}
