/*
Theme Name: Through The Front Door
Theme URI: https://throughthefrontdoor.net/
Author: Through The Front Door
Author URI: https://throughthefrontdoor.net/
Description: A professional real estate / property solutions WordPress theme for Through The Front Door. Features a modern landing page design with hero section, services, process steps, FAQ, and contact form. Fully customizable via the WordPress Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ttfd
Tags: one-page, real-estate, business, custom-colors, custom-logo, featured-images, full-width-template, sticky-post, threaded-comments, translation-ready
*/

/* =========================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================= */
:root {
  --navy: #10243e;
  --blue: #1d5f8f;
  --soft-blue: #eef7fb;
  --gold: #d79a2b;
  --green: #2f8061;
  --cream: #fffaf0;
  --text: #1b2430;
  --muted: #5f6b7a;
  --white: #ffffff;
  --border: #e5eaf0;
  --shadow: 0 24px 70px rgba(16, 36, 62, 0.14);
  --radius: 24px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #f8fbfd;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container,
.ttfd-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  padding: 10px 0;
}

.top-bar .ttfd-container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.site-header .ttfd-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy);
  font-size: 1.15rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 12px 28px rgba(29, 95, 143, 0.25);
  flex-shrink: 0;
}

.site-logo img {
  max-height: 46px;
  width: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a {
  color: var(--muted);
  transition: color 0.2s;
}

.main-navigation ul li a:hover {
  color: var(--blue);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.95rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(16, 36, 62, 0.25);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 0.98rem;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #241605;
  box-shadow: 0 16px 34px rgba(215, 154, 43, 0.28);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(16, 36, 62, 0.25);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(215,154,43,0.18), transparent 30%),
    linear-gradient(135deg, #f8fbfd 0%, #eef7fb 52%, #fffaf0 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(29, 95, 143, 0.09);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,128,97,0.12);
  color: #1f654a;
  border: 1px solid rgba(47,128,97,0.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.hero-section h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-section p.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 690px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.micro-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}

.micro-trust div {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(229,234,240,0.9);
  padding: 14px;
  border-radius: 18px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(16,36,62,0.07);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-visual {
  min-height: 280px;
  background:
    linear-gradient(rgba(16,36,62,0.2), rgba(16,36,62,0.2)),
    url('images/home-hero.jpg') center/cover;
}

.hero-card-content {
  padding: 28px;
}

.hero-card-content h3 {
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.hero-card-content p {
  color: var(--muted);
  margin-bottom: 0;
}

/* =========================================================
   CHECK LIST
   ========================================================= */
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(47,128,97,0.13);
  color: var(--green);
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  font-weight: 900;
}

/* =========================================================
   SECTIONS (GENERAL)
   ========================================================= */
.ttfd-section {
  padding: 78px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* =========================================================
   OPTIONS / PROBLEMS SECTION
   ========================================================= */
.problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.story-card {
  background: var(--navy);
  color: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}

.story-card h3 {
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.story-card p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.problem-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(16,36,62,0.07);
}

.problem-item span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 16px;
}

.problem-item h3 {
  color: var(--navy);
  letter-spacing: -0.03em;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.problem-item p {
  color: var(--muted);
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(16,36,62,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16,36,62,0.12);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.service-card h3 {
  color: var(--navy);
  letter-spacing: -0.03em;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
}

/* =========================================================
   HIGHLIGHT BAND
   ========================================================= */
.highlight-band {
  background: linear-gradient(135deg, var(--navy), #143e63);
  color: var(--white);
  border-radius: 34px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.highlight-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: rgba(215,154,43,0.16);
  border-radius: 999px;
}

.highlight-band h2 {
  color: var(--white);
}

.highlight-band p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
}

.highlight-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 26px;
  position: relative;
  z-index: 1;
}

.highlight-box strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--white);
}

.highlight-box .check-list li {
  color: rgba(255,255,255,0.85);
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(16,36,62,0.07);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #fff4de;
  color: #a66a08;
  font-weight: 900;
  margin-bottom: 16px;
}

.step-card h3 {
  color: var(--navy);
  letter-spacing: -0.03em;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
}

/* =========================================================
   TRUST SECTION
   ========================================================= */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.trust-image {
  min-height: 420px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(16,36,62,0.12), rgba(16,36,62,0.12)),
    url('images/trust-building.jpg') center/cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.trust-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(16,36,62,0.08);
}

.trust-content h2 {
  margin-bottom: 14px;
}

.trust-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.trust-points div {
  padding: 16px;
  border-radius: 18px;
  background: #f8fbfd;
  border: 1px solid var(--border);
  font-weight: 800;
  color: var(--navy);
}

/* =========================================================
   CONTACT / FORM SECTION
   ========================================================= */
.form-section {
  background: linear-gradient(135deg, #eef7fb, #fffaf0);
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods div {
  background: #f8fbfd;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
  color: var(--navy);
}

/* =========================================================
   WORDPRESS CONTACT FORM 7 / WPCF7 OVERRIDES
   ========================================================= */
.wpcf7-form,
.ttfd-contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full,
.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 15px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #fbfdff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,95,143,0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note,
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  font-size: 0.87rem;
  color: var(--muted);
  margin-top: 14px;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(16,36,62,0.07);
}

.faq-item h3 {
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.faq-item p {
  color: var(--muted);
}

/* =========================================================
   FINAL CTA SECTION
   ========================================================= */
.final-cta-section {
  padding: 70px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta-section h2 {
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 16px;
}

.final-cta-section p {
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto 26px;
  font-size: 1.08rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #071423;
  color: rgba(255,255,255,0.78);
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-brand strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a:hover {
  color: var(--white);
}

/* =========================================================
   WORDPRESS STANDARD ELEMENTS
   ========================================================= */

/* Posts & Pages */
.site-main {
  min-height: 60vh;
}

.page-content,
.entry-content,
.entry-summary {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.entry-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.entry-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--navy);
  margin: 28px 0 12px;
  letter-spacing: -0.03em;
}

.entry-content p {
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.7;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 18px 24px;
  color: var(--text);
}

.entry-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--soft-blue);
  border-radius: 0 16px 16px 0;
  margin: 24px 0;
  color: var(--navy);
  font-style: italic;
}

.entry-content a {
  color: var(--blue);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--navy);
}

/* Blog Archive */
.blog-archive-header {
  background: linear-gradient(135deg, #f8fbfd 0%, #eef7fb 100%);
  padding: 60px 0 40px;
  text-align: center;
}

.blog-archive-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  letter-spacing: -0.05em;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 60px 0;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(16,36,62,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16,36,62,0.12);
}

.post-card-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card-body {
  padding: 24px;
}

.post-card-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.post-card-title {
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-card-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.post-card-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Pagination */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  transition: background 0.2s;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Comments */
.comments-area {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.comment-author {
  font-weight: 700;
  color: var(--navy);
}

.comment-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Sidebar */
.widget-area {
  padding: 40px 0;
}

.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(16,36,62,0.06);
}

.widget-title {
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--soft-blue);
}

/* Search form */
.search-form {
  display: flex;
  gap: 8px;
}

.search-field {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: 'Inter', Arial, sans-serif;
  outline: none;
}

.search-submit {
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Inter', Arial, sans-serif;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid,
  .problem-grid,
  .highlight-band,
  .trust-grid,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-card {
    position: static;
  }

  .main-navigation ul {
    display: none;
  }
}

@media (max-width: 640px) {
  .top-bar .ttfd-container {
    justify-content: center;
    text-align: center;
  }

  .hero-section {
    padding: 54px 0 56px;
  }

  .micro-trust,
  .problem-list,
  .service-grid,
  .steps-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .highlight-band,
  .contact-card,
  .wpcf7-form,
  .ttfd-contact-form,
  .trust-content,
  .story-card {
    padding: 24px;
  }

  .ttfd-section {
    padding: 56px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }
}
