/* ============================================================
   PRAXIS DR. GABRIELA FEDHILA – Jimdo Eigenes Layout CSS v2
   KEINE CSS-Variablen – alle Farben direkt als Hex-Werte
   Türkis: #9FD8D8  Sand: #F6E6C4  Bronze: #C5924E
   ============================================================ */

/* RESET */
#container, #container * { box-sizing: border-box; }
#container img { display: block; max-width: 100%; }

/* BASE */
#container {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #3a3028;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

/* NAVIGATION */
#gf-nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #9FD8D8;
  z-index: 9999;
  padding: 0;
}
#gf-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
#gf-nav .logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #3a3028;
  text-decoration: none;
}
#gf-nav .logo span { color: #7EBFBF; font-style: italic; }
#gf-nav .nav-links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  flex-direction: row !important;
}
#gf-nav .nav-links li { margin: 0; padding: 0; position: relative; }
#gf-nav .nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
#gf-nav .nav-links a:hover { color: #7EBFBF; }
#gf-nav .dropdown:hover .dropdown-menu { display: block; }
#gf-nav .dropdown-toggle::after { content: ' ▾'; font-size: 10px; }
#gf-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #9FD8D8;
  border-radius: 4px;
  min-width: 180px;
  padding: 12px 0 8px;
  box-shadow: 0 8px 24px rgba(159,216,216,0.25);
  z-index: 100;
  margin-top: 0;
  list-style: none;
}
#gf-nav .dropdown-menu li { display: block; }
#gf-nav .dropdown-menu a { display: block; padding: 10px 18px; font-size: 14px; }
#gf-nav .dropdown-menu a:hover { background: #C7E8E8; }

/* BUTTONS */
#container .btn-primary {
  display: inline-block;
  background: #C5924E;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
#container .btn-primary:hover {
  background: #A77B3F;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197,146,78,0.3);
}
#container .btn-outline {
  display: inline-block;
  background: transparent;
  color: #3a3028;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 1.5px solid #7EBFBF;
  transition: all 0.2s;
}
#container .btn-outline:hover { background: #7EBFBF; color: #fff; }

/* SECTION EYEBROW */
#container .section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7EBFBF;
  margin-bottom: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
#container .section-eyebrow::before,
#container .section-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: #7EBFBF;
}

/* SECTION TITLE */
#container .section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 24px;
  color: #3a3028;
}
#container .section-title em { font-style: italic; color: #7EBFBF; }
#container .section-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  text-align: center;
  color: #4a4a4a;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.5;
}

/* HERO */
#gf-hero {
  background: linear-gradient(180deg, #ffffff 0%, #C7E8E8 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
#gf-hero .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
#gf-hero .hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7EBFBF;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#gf-hero .hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: #7EBFBF; }
#gf-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: #1A1A1A;
}
#gf-hero h1 em { font-style: italic; color: #7EBFBF; }
#gf-hero .hero-claim {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 3px solid #9FD8D8;
  line-height: 1.65;
}
#gf-hero .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
#gf-hero .hero-trust {
  font-size: 14px;
  color: #8A8278;
  display: flex;
  align-items: center;
  gap: 8px;
}
#gf-hero .hero-trust::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #7EBFBF; display: inline-block; }
#gf-hero .hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
#gf-hero .hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
#gf-hero .hero-image::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px; bottom: 32px; left: 32px;
  border: 1px solid #7EBFBF;
  z-index: -1;
  border-radius: 4px;
}

/* PROBLEM */
#gf-problem { background: #9FD8D8; padding: 100px 32px; }
#gf-problem .container { max-width: 1200px; margin: 0 auto; }
#gf-problem .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
#gf-problem .problem-text .section-eyebrow { justify-content: flex-start; color: #A77B3F; }
#gf-problem .problem-text .section-eyebrow::before { background: #A77B3F; }
#gf-problem .problem-text .section-eyebrow::after { display: none; }
#gf-problem h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #1A1A1A;
}
#gf-problem h2 em { font-style: italic; color: #A77B3F; }
#gf-problem p { font-size: 17px; margin-bottom: 18px; color: #1A1A1A; line-height: 1.7; }
#gf-problem .problem-list {
  list-style: none;
  background: rgba(255,255,255,0.5);
  padding: 32px 36px;
  border-radius: 4px;
  border-left: 3px solid #C5924E;
  margin: 0;
}
#gf-problem .problem-list li {
  font-size: 17px;
  padding: 18px 0 18px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  line-height: 1.5;
  color: #1A1A1A;
}
#gf-problem .problem-list li::before { content: '—'; position: absolute; left: 0; top: 18px; color: #C5924E; font-weight: 600; }
#gf-problem .problem-list li:last-child { border-bottom: none; }

/* ABOUT */
#gf-about { background: #ffffff; padding: 100px 32px; }
#gf-about .container { max-width: 1200px; margin: 0 auto; }
#gf-about .about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
#gf-about .about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
#gf-about .about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
#gf-about .about-image::before {
  content: '';
  position: absolute;
  top: 24px; left: -24px; bottom: -24px; right: 24px;
  border: 1px solid #7EBFBF;
  z-index: -1;
  border-radius: 4px;
}
#gf-about h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; font-weight: 500; margin-bottom: 8px; line-height: 1.1; color: #1A1A1A; }
#gf-about .subtitle { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; color: #7EBFBF; font-size: 22px; margin-bottom: 32px; }
#gf-about p { font-size: 17px; margin-bottom: 18px; line-height: 1.75; color: #4a4a4a; }
#gf-about .about-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  padding: 24px 28px;
  background: #C7E8E8;
  border-left: 3px solid #7EBFBF;
  margin: 28px 0;
  color: #1A1A1A;
  line-height: 1.5;
  border-radius: 0 4px 4px 0;
}

/* METHOD */
#gf-method { background: #C7E8E8; padding: 100px 32px; }
#gf-method .container { max-width: 1200px; margin: 0 auto; }
#gf-method .method-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
#gf-method .section-eyebrow { justify-content: flex-start; color: #A77B3F; }
#gf-method .section-eyebrow::before, #gf-method .section-eyebrow::after { background: #A77B3F; }
#gf-method h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; font-weight: 500; line-height: 1.15; margin-bottom: 28px; color: #1A1A1A; }
#gf-method h2 em { font-style: italic; color: #C5924E; }
#gf-method h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 600; color: #1A1A1A; margin: 32px 0 12px; }
#gf-method p { font-size: 17px; margin-bottom: 18px; line-height: 1.75; color: #2a4a4a; }
#gf-method .method-placeholder {
  background: rgba(159,216,216,0.3);
  border-radius: 4px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a8a8a;
  font-style: italic;
  border: 2px dashed #9FD8D8;
}

/* APPLICATIONS */
#gf-applications { background: #9FD8D8; padding: 100px 32px; }
#gf-applications .container { max-width: 1200px; margin: 0 auto; }
#gf-applications .section-eyebrow { color: #A77B3F; }
#gf-applications .section-eyebrow::before, #gf-applications .section-eyebrow::after { background: #A77B3F; }
#gf-applications .section-title { color: #1a2e2e; }
#gf-applications .section-title em { color: #fff; }
#gf-applications .app-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
#gf-applications .app-card { background: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.4); padding: 32px 24px; border-radius: 4px; transition: background 0.2s; }
#gf-applications .app-card:hover { background: rgba(255,255,255,0.9); }
#gf-applications .app-card-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; font-weight: 300; color: #7EBFBF; opacity: 0.5; line-height: 1; margin-bottom: 16px; }
#gf-applications .app-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 600; color: #1a2e2e; margin: 0 0 16px 0; }
#gf-applications .app-card ul { list-style: none; padding: 0; margin: 0; }
#gf-applications .app-card li { font-size: 14px; color: #2a4a4a; padding: 6px 0 6px 16px; border-bottom: 1px solid rgba(26,46,46,0.1); position: relative; }
#gf-applications .app-card li::before { content: '·'; position: absolute; left: 0; color: #A77B3F; }

/* PROCESS */
#gf-process { background: #9FD8D8; padding: 100px 32px; }
#gf-process .container { max-width: 1200px; margin: 0 auto; }
#gf-process .section-eyebrow { color: #A77B3F; }
#gf-process .section-eyebrow::before, #gf-process .section-eyebrow::after { background: #A77B3F; }
#gf-process .section-title { color: #1a2e2e; }
#gf-process .section-title em { color: #fff; }
#gf-process .section-lead { color: #1a3a3a; }
#gf-process .process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
#gf-process .process-step { background: rgba(255,255,255,0.75); padding: 40px 32px; border-radius: 4px; position: relative; }
#gf-process .step-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 72px; font-weight: 300; color: #9FD8D8; opacity: 0.4; line-height: 1; position: absolute; top: 16px; right: 24px; }
#gf-process .process-step h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 600; color: #1a2e2e; margin: 0 0 8px 0; }
#gf-process .step-meta { font-size: 13px; color: #C5924E; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 16px; }
#gf-process .process-step p { font-size: 15px; color: #2a4a4a; margin: 0 0 12px 0; }
#gf-process .process-cta { text-align: center; margin-top: 48px; }
#gf-process .process-note { font-size: 13px; color: #1a3a3a; margin-top: 16px; }

/* TESTIMONIALS */
#gf-testimonials { background: #faf6f0; padding: 100px 32px; }
#gf-testimonials .container { max-width: 1200px; margin: 0 auto; }
#gf-testimonials .testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
#gf-testimonials .testimonial { background: #fff; padding: 40px 32px; border-radius: 4px; border-top: 3px solid #9FD8D8; box-shadow: 0 4px 24px rgba(58,48,40,0.06); }
#gf-testimonials .testimonial-img { width: 100%; height: 220px; overflow: hidden; border-radius: 4px; margin-bottom: 24px; }
#gf-testimonials .testimonial-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
#gf-testimonials .testimonial-text { font-size: 15px; color: #4a4a4a; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
#gf-testimonials .testimonial-author { font-weight: 600; color: #3a3028; font-size: 14px; }
#gf-testimonials .testimonial-meta { font-size: 13px; color: #C5924E; margin-top: 4px; }

/* AUDIENCE */
#gf-audience { background: #F6E6C4; padding: 100px 32px; }
#gf-audience .container { max-width: 1200px; margin: 0 auto; }
#gf-audience .section-eyebrow { color: #A77B3F; }
#gf-audience .section-eyebrow::before, #gf-audience .section-eyebrow::after { background: #A77B3F; }
#gf-audience .section-title { color: #3a3028; }
#gf-audience .section-title em { color: #C5924E; }
#gf-audience .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
#gf-audience .audience-col { padding: 40px; border-radius: 4px; }
#gf-audience .audience-col.fit { background: rgba(159,216,216,0.2); border: 1px solid rgba(159,216,216,0.4); }
#gf-audience .audience-col.unfit { background: rgba(255,255,255,0.6); border: 1px solid rgba(197,146,78,0.2); }
#gf-audience .audience-col h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; color: #3a3028; margin: 0 0 20px 0; }
#gf-audience .audience-col ul { list-style: none; padding: 0; margin: 0; }
#gf-audience .audience-col li { padding: 10px 0 10px 24px; border-bottom: 1px solid rgba(58,48,40,0.08); color: #4a4a4a; font-size: 15px; position: relative; }
#gf-audience .audience-col.fit li::before { content: '✓'; position: absolute; left: 0; color: #9FD8D8; font-weight: 700; }
#gf-audience .audience-col.unfit li::before { content: '×'; position: absolute; left: 0; color: #C5924E; font-weight: 700; }
#gf-audience .audience-quote { text-align: center; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-style: italic; color: #3a3028; max-width: 700px; margin: 48px auto 0; padding: 32px; border-top: 1px solid rgba(197,146,78,0.3); }

/* FAQ */
#gf-faq { background: #ffffff; padding: 100px 32px; }
#gf-faq .container { max-width: 800px; margin: 0 auto; }
#gf-faq .faq-list { margin-top: 48px; }
#gf-faq .faq-item { border-bottom: 1px solid #E8E2D4; }
#gf-faq .faq-item summary { padding: 24px 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 600; color: #3a3028; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
#gf-faq .faq-item summary::-webkit-details-marker { display: none; }
#gf-faq .faq-item summary::after { content: '+'; font-size: 24px; color: #9FD8D8; font-weight: 300; flex-shrink: 0; transition: transform 0.2s; }
#gf-faq .faq-item[open] summary::after { transform: rotate(45deg); }
#gf-faq .faq-content { padding: 0 0 24px 0; color: #4a4a4a; font-size: 16px; line-height: 1.7; }

/* FINAL CTA */
#gf-cta { background: #9FD8D8; padding: 100px 32px; }
#gf-cta .final-cta { max-width: 700px; margin: 0 auto; text-align: center; }
#gf-cta .final-cta-image { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 32px; border: 3px solid #fff; }
#gf-cta .final-cta-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
#gf-cta h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(32px,4vw,48px); font-weight: 400; color: #1a2e2e; margin: 0 0 20px 0; }
#gf-cta h2 em { font-style: italic; color: #fff; }
#gf-cta p { color: #1a3a3a; font-size: 18px; margin-bottom: 36px; }
#gf-cta .final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
#gf-cta .btn-outline { color: #1a2e2e; border-color: #1a2e2e; }
#gf-cta .btn-outline:hover { background: #1a2e2e; color: #9FD8D8; }
#gf-cta .final-note { font-size: 13px; color: #1a3a3a; letter-spacing: 0.04em; }

/* FOOTER */
#gf-footer { background: #1a3a3a; padding: 64px 0 32px; }
#gf-footer .footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 32px 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; border-bottom: 1px solid rgba(246,230,196,0.1); }
#gf-footer h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 600; color: #F6E6C4; margin: 0 0 16px 0; }
#gf-footer p { font-size: 14px; color: #8a7a6a; margin: 0 0 4px 0; line-height: 1.6; }
#gf-footer a { color: #8a7a6a; text-decoration: none; transition: color 0.2s; }
#gf-footer a:hover { color: #9FD8D8; }
#gf-footer .footer-legal { max-width: 1200px; margin: 0 auto; padding: 24px 32px 0; text-align: center; font-size: 13px; color: #7abaaa; }
#gf-footer .footer-legal a { color: #7abaaa; text-decoration: none; margin: 0 4px; }
#gf-footer .footer-legal a:hover { color: #9FD8D8; }

/* ============================================================
   HAMBURGER-NAVIGATION
   ============================================================ */
#gf-nav .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
}
#gf-nav .nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3a3028;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
#gf-nav .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#gf-nav .nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#gf-nav .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   TABLET (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {

  /* Navigation */
  #gf-nav .nav-hamburger { display: flex; }
  #gf-nav .nav-links {
    display: none !important;
    position: absolute !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255,255,255,0.98) !important;
    border-bottom: 2px solid #9FD8D8 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 8px 0 16px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    z-index: 9998 !important;
  }
  #gf-nav .nav-links.nav-open { display: flex !important; }
  #gf-nav .nav-links li { border-bottom: 1px solid rgba(159,216,216,0.2); }
  #gf-nav .nav-links li:last-child { border-bottom: none; padding: 12px 24px 4px; }
  #gf-nav .nav-links a { display: block; padding: 14px 24px; font-size: 16px; }
  #gf-nav .nav-links .btn-primary { display: inline-block; margin: 0; }
  #gf-nav .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(159,216,216,0.3);
    background: rgba(199,232,232,0.2);
    padding: 0;
    min-width: 0;
  }
  #gf-nav .dropdown-menu a { padding: 12px 24px 12px 40px; font-size: 15px; }
  #gf-nav .dropdown:hover .dropdown-menu { display: none; }
  #gf-nav .dropdown.is-open .dropdown-menu { display: block; }

  /* Hero */
  #gf-hero { padding: 80px 24px 60px; }
  #gf-hero .hero-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  #gf-hero .hero-image { order: -1; max-width: 340px; margin: 0 auto; }
  #gf-hero .hero-image::before { display: none; }
  #gf-hero h1 { font-size: clamp(34px, 8vw, 48px); }
  #gf-hero .hero-claim { font-size: 16px; }
  #gf-hero .hero-cta { flex-wrap: wrap; }

  /* Problem */
  #gf-problem { padding: 64px 24px; }
  #gf-problem .problem-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  #gf-problem h2 { font-size: 36px; }

  /* About */
  #gf-about { padding: 64px 24px; }
  #gf-about .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  #gf-about .about-image { max-width: 340px; margin: 0 auto; }
  #gf-about .about-image::before { display: none; }
  #gf-about h2 { font-size: 36px; }

  /* Method */
  #gf-method { padding: 64px 24px; }
  #gf-method .method-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  #gf-method h2 { font-size: 36px; }

  /* Applications */
  #gf-applications { padding: 64px 24px; }
  #gf-applications .app-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Process */
  #gf-process { padding: 64px 24px; }
  #gf-process .process-steps { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* Testimonials */
  #gf-testimonials { padding: 64px 24px; }
  #gf-testimonials .testimonial-grid { grid-template-columns: 1fr !important; }

  /* Audience */
  #gf-audience { padding: 64px 24px; }
  #gf-audience .audience-grid { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* FAQ */
  #gf-faq { padding: 64px 24px; }

  /* CTA */
  #gf-cta { padding: 64px 24px; }
  #gf-cta .final-cta-buttons { flex-direction: column; align-items: center; }

  /* Footer */
  #gf-footer { padding: 48px 0 24px; }
  #gf-footer .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; padding: 0 24px 40px; }
  #gf-footer .footer-legal { padding: 20px 24px 0; }

  /* Section titles */
  #container .section-title { font-size: clamp(28px, 6vw, 40px); }
}

/* ============================================================
   SMARTPHONE (max-width: 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* Navigation */
  #gf-nav .nav-inner { padding: 0 16px; }

  /* Hero */
  #gf-hero { padding: 72px 16px 48px; }
  #gf-hero .hero-image { max-width: 280px; }
  #gf-hero .hero-cta { flex-direction: column; align-items: flex-start; }
  #gf-hero .hero-cta a { width: 100%; text-align: center; }
  #gf-hero h1 { font-size: clamp(30px, 9vw, 42px); }

  /* Problem */
  #gf-problem { padding: 48px 16px; }
  #gf-problem .problem-list { padding: 24px 20px; }

  /* About */
  #gf-about { padding: 48px 16px; }
  #gf-about .about-image { max-width: 260px; }

  /* Method */
  #gf-method { padding: 48px 16px; }

  /* Applications */
  #gf-applications { padding: 48px 16px; }
  #gf-applications .app-grid { grid-template-columns: 1fr !important; }

  /* Process */
  #gf-process { padding: 48px 16px; }
  #gf-process .process-step { padding: 28px 20px; }

  /* Testimonials */
  #gf-testimonials { padding: 48px 16px; }
  #gf-testimonials .testimonial { padding: 28px 20px; }

  /* Audience */
  #gf-audience { padding: 48px 16px; }
  #gf-audience .audience-col { padding: 24px 20px; }
  #gf-audience .audience-quote { font-size: 18px; padding: 20px 0; }

  /* FAQ */
  #gf-faq { padding: 48px 16px; }
  #gf-faq .faq-item summary { font-size: 17px; }

  /* CTA */
  #gf-cta { padding: 48px 16px; }
  #gf-cta .final-cta-buttons { flex-direction: column; align-items: stretch; }
  #gf-cta .final-cta-buttons a { text-align: center; }

  /* Footer */
  #gf-footer .footer-grid { padding: 0 16px 32px; }
  #gf-footer .footer-legal { padding: 16px 16px 0; }

  /* Buttons full-width on very small screens */
  #gf-process .process-cta .btn-primary { width: 100%; text-align: center; }
}