/* Auto-extracted from flytthjalp-[city].html page template */
      /* ── NAVBAR ── */
      header {
        position: sticky; top: 0; z-index: 1000;
        background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
        border-bottom: 1px solid #e2e8f0; box-shadow: 0 2px 20px rgba(0,0,0,0.06);
      }
      nav {
        max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 72px;
        display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      }
      .nav-logo { flex-shrink: 0; text-decoration: none; display: flex; align-items: center; }
      .nav-logo img { height: 42px; width: auto; display: block; }
      .nav-links { display: flex; align-items: center; gap: 0.3rem; list-style: none; margin: 0; padding: 0; }
      .nav-links li a { display: flex; align-items: center; padding: 0.65rem 1.1rem; border-radius: 8px; font-size: 0.88rem; font-weight: 500; color: #374151; text-decoration: none; white-space: nowrap; transition: background 0.2s, color 0.2s; min-height: 44px; }
      .nav-links li a:hover, .nav-links li a.active { background: #f3f4f6; color: #1e3a8a; }
      .nav-cta { background: #f97316 !important; color: white !important; border-radius: 10px !important; font-weight: 700 !important; }
      .nav-cta:hover { background: #ea6c0a !important; color: white !important; }
      .mobile-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; color: #374151; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
      @media (max-width: 900px) {
        .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 0; right: 0; background: white; border-bottom: 1px solid #e2e8f0; padding: 1rem 2rem; gap: 0.5rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
        .nav-links li a { padding: 0.75rem 1.2rem; min-height: 48px; }
        .nav-links.open { display: flex; }
        .mobile-btn { display: flex; }
      }

      /* ── FOOTER ── */
      footer { background: #0f172a; color: rgba(255,255,255,0.7); padding: 3.5rem 2rem 2rem; margin-top: 5rem; }
      .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; }
      .footer-brand img { height: 38px; width: auto; opacity: 0.85; margin-bottom: 1rem; display: block; transition: opacity 0.3s ease; }
      .footer-brand img:hover { opacity: 1; }
      .footer-brand p { font-size: 0.88rem; line-height: 1.7; }
      .footer-col h4 { color: white; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
      .footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.55rem; transition: color 0.2s; }
      .footer-col a:hover { color: #f97316; }
      .footer-bottom { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
      @media (max-width: 768px) {
        .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
        .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
      }
      @media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

      /* ── CONTACT FORM ── */
      .form-section { padding: 5rem 2rem; background: #f8fafc; }
      .form-wrapper { max-width: 760px; margin: 0 auto; }
      .form-header { text-align: center; margin-bottom: 2.5rem; }
      .form-header h2 { font-size: 2.2rem; color: #0f172a; margin-bottom: 0.75rem; }
      .form-header p { color: #64748b; font-size: 1.05rem; }
      .form-card { background: white; border-radius: 20px; padding: 3rem; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
      .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
      .form-group { margin-bottom: 1.4rem; }
      .form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: #374151; margin-bottom: 0.45rem; }
      .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 2px solid #e5e7eb; border-radius: 10px; font-size: 0.95rem; font-family: inherit; background: #fafafa; color: #0f172a; transition: border-color 0.25s, box-shadow 0.25s; box-sizing: border-box; }
      .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--form-accent, #f97316); box-shadow: 0 0 0 3px rgba(249,115,22,0.12); background: white; }
      .form-group textarea { resize: vertical; min-height: 110px; }
      .checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.5rem; }
      .check-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 0.9rem; border: 2px solid #e5e7eb; border-radius: 8px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
      .check-item:has(input:checked) { border-color: var(--form-accent, #f97316); background: #fff7f0; }
      .check-item input { width: 16px; height: 16px; accent-color: var(--form-accent, #f97316); cursor: pointer; flex-shrink: 0; }
      .check-item span { font-size: 0.88rem; color: #374151; }
      .form-submit { width: 100%; padding: 1rem 2rem; background: var(--form-accent, #f97316); color: white; border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all 0.3s; margin-top: 0.5rem; font-family: inherit; }
      .form-submit:hover { filter: brightness(0.92); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
      .form-note { text-align: center; color: #94a3b8; font-size: 0.85rem; margin-top: 1.2rem; }
      .form-success { display: none; text-align: center; padding: 3rem 2rem; }
      .form-success .success-icon { font-size: 4rem; margin-bottom: 1rem; }
      .form-success h3 { font-size: 1.8rem; color: #10b981; margin-bottom: 0.75rem; }
      .form-success p { color: #64748b; font-size: 1rem; margin-bottom: 1.5rem; }
      .form-success a { display: inline-block; padding: 0.8rem 2rem; background: var(--form-accent, #f97316); color: white; border-radius: 10px; text-decoration: none; font-weight: 700; }
      @media (max-width: 640px) {
        .form-row { grid-template-columns: 1fr; }
        .checkbox-grid { grid-template-columns: 1fr; }
        .form-card { padding: 2rem 1.5rem; }
      }

      :root {
        --primary-blue: #1e3a8a; --accent-orange: #f97316; --gray-text: #64748b;
        --light-bg: #f8fafc; --white: #ffffff; --dark: #0f172a; --success-green: #10b981;
      }
      * { margin: 0; padding: 0; box-sizing: border-box; }
      body { font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif; color: var(--dark); line-height: 1.6; overflow-x: hidden; background: var(--white); }

      header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
      nav { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 2rem; }

      .hero { margin-top: 80px; min-height: 90vh; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 4rem; max-width: 1400px; margin-left: auto; margin-right: auto; padding: 4rem 2rem; position: relative; overflow: hidden; background: white; }
      .hero::before { content: ""; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(30,58,138,0.08) 0%, transparent 70%); border-radius: 50%; animation: float 20s ease-in-out infinite; }
      @keyframes float { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,-30px) scale(1.05); } }
      .hero-content { animation: fadeInUp 0.8s ease 0.2s both; position: relative; z-index: 1; }
      @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
      .hero-badge { display: inline-block; background: rgba(249,115,22,0.1); color: var(--accent-orange); padding: 0.5rem 1.2rem; border-radius: 30px; font-weight: 600; font-size: 0.95rem; margin-bottom: 1.5rem; border: 2px solid rgba(249,115,22,0.2); }
      .hero h1 { font-family: "Fraunces", serif; font-size: 3rem; line-height: 1.1; color: var(--primary-blue); margin-bottom: 1.5rem; font-weight: 900; letter-spacing: -0.02em; }
      .hero h1 .highlight { color: var(--accent-orange); position: relative; display: inline-block; }
      .hero h1 .highlight::after { content: ""; position: absolute; bottom: 5px; left: 0; right: 0; height: 12px; background: rgba(249,115,22,0.2); z-index: -1; transform: skew(-5deg); }
      .hero p { font-size: 1.25rem; color: var(--gray-text); margin-bottom: 2.5rem; line-height: 1.7; max-width: 600px; }
      .hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
      .btn-primary { background: var(--accent-orange); color: white; padding: 1.2rem 2.5rem; border-radius: 12px; font-weight: 700; font-size: 1.1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(249,115,22,0.3); }
      .btn-primary:hover { background: #ea580c; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(249,115,22,0.4); }
      .btn-secondary { background: white; color: var(--primary-blue); padding: 1.2rem 2.5rem; border-radius: 12px; font-weight: 700; font-size: 1.1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; border: 2px solid var(--primary-blue); }
      .btn-secondary:hover { background: var(--primary-blue); color: white; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(30,58,138,0.2); }
      .hero-image { position: relative; animation: fadeInUp 0.8s ease 0.4s both; }
      .hero-image-wrapper { position: relative; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); transform: rotate(2deg); transition: transform 0.5s ease; }
      .hero-image-wrapper:hover { transform: rotate(0deg) scale(1.02); }
      .hero-image img { width: 100%; height: auto; display: block; background: linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%); aspect-ratio: 4/5; object-fit: cover; }

      .features { padding: 8rem 2rem; background: var(--white); }
      .section-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
      .section-label { color: var(--accent-orange); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 1rem; }
      .section-title { font-family: "Fraunces", serif; font-size: 3rem; color: var(--primary-blue); margin-bottom: 1.5rem; font-weight: 900; }
      .features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
      .feature-card { background: var(--light-bg); padding: 3rem; border-radius: 20px; transition: all 0.3s ease; }
      .feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
      .feature-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
      .feature-card h3 { font-family: "Fraunces", serif; font-size: 1.6rem; color: var(--primary-blue); margin-bottom: 1rem; font-weight: 800; }
      .feature-card p { color: var(--gray-text); line-height: 1.8; }

      .process { padding: 8rem 2rem; background: var(--light-bg); }
      .process-steps { max-width: 1000px; margin: 0 auto; }
      .step { display: grid; grid-template-columns: 100px 1fr; gap: 3rem; margin-bottom: 4rem; align-items: start; }
      .step-number { width: 100px; height: 100px; background: linear-gradient(135deg,var(--accent-orange),#fb923c); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Fraunces", serif; font-size: 3rem; font-weight: 900; color: white; box-shadow: 0 10px 30px rgba(249,115,22,0.3); }
      .step-content h3 { font-family: "Fraunces", serif; font-size: 2rem; color: var(--primary-blue); margin-bottom: 1rem; font-weight: 800; }
      .step-content p { font-size: 1.1rem; color: var(--gray-text); line-height: 1.8; }

      .city-pill { background: #eff6ff; color: #1e3a8a; border: 2px solid #bfdbfe; padding: 0.55rem 1.3rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s; text-decoration: none; }
      .city-pill:hover { background: #fff7ed; color: #c2410c; border-color: #f97316; transform: translateY(-2px); }
      .city-pill-active { cursor: default; }
      .area-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }

      .faq-section { padding: 6rem 2rem; background: var(--light-bg); max-width: 900px; margin: 0 auto; }
      .faq-list { max-width: 800px; margin: 0 auto; }
      .faq-item { background: white; border-radius: 12px; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden; }
      .faq-q { width: 100%; background: none; border: none; padding: 1.4rem 1.6rem; text-align: left; font-size: 1.05rem; font-weight: 700; color: var(--primary-blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: "DM Sans", sans-serif; }
      .faq-q::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--accent-orange); flex-shrink: 0; margin-left: 1rem; }
      .faq-item.open .faq-q::after { content: "-"; }
      .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
      .faq-item.open .faq-a { max-height: 400px; }
      .faq-a p { padding: 0 1.6rem 1.4rem; color: var(--gray-text); line-height: 1.8; font-size: 1rem; }

      @media (max-width: 768px) {
        .hero-image { display: none; }
        .hero { grid-template-columns: 1fr; min-height: auto; gap: 2rem; padding: 3rem 1.5rem; margin-top: 65px; }
        .hero h1 { font-size: 2rem; margin-bottom: 1rem; }
        .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
        .hero-buttons { flex-direction: column; gap: 0.75rem; }
        .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; padding: 1rem 1.5rem; font-size: 1rem; }
        .section-title { font-size: 2rem; }
        .step { grid-template-columns: 1fr; text-align: center; }
        .step-number { margin: 0 auto; }
        .feature-card { padding: 2rem 1.5rem; }
        .features { padding: 4rem 1.5rem; }
        .process { padding: 4rem 1.5rem; }
      }
      @media (max-width: 640px) {
        .hero { padding: 2rem 1.25rem !important; gap: 1.5rem; margin-top: 60px; }
        .hero h1 { font-size: 1.65rem; line-height: 1.2; }
        .hero-badge { font-size: 0.85rem; padding: 0.4rem 1rem; margin-bottom: 1rem; }
        .hero p { font-size: 0.95rem; line-height: 1.6; }
        .hero-buttons { gap: 0.5rem; }
        .btn-primary, .btn-secondary { padding: 0.9rem 1.25rem; font-size: 0.95rem; }
        .section-title { font-size: 1.8rem; margin-bottom: 1rem; }
        .step { gap: 1.5rem; margin-bottom: 2rem; }
        .step-number { width: 80px; height: 80px; font-size: 2.2rem; }
        .step-content h3 { font-size: 1.4rem; }
      }
    