/* ===================================================================
   BASE TOKENS
   =================================================================== */
:root {
  --fw-primary:       #4f46e5;
  --fw-primary-dark:  #3730a3;
  --fw-accent:        #f97316;
  --fw-muted:         #6b7280;
  --fw-border:        #e5e7eb;
  --fw-bg-soft:       #f9fafb;
  --fw-radius-lg:     20px;
  --fw-radius-md:     14px;
}
/* Keep home layout from overflowing on mobile */
.fw-home,
.fw-home * ,
.fw-home *::before,
.fw-home *::after {
  box-sizing: border-box;
}

/* Generic layout helpers */
.fw-home {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.fw-section {
  padding: 1rem 0;
}

.fw-section-head {
  text-align: left;
  margin-bottom: 1.5rem;
}
.fw-section-head-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}
.fw-section-title {
  margin: 0 0 .5rem;
  font-size: 1.7rem;
}
.fw-section-sub {
  margin: 0;
  color: var(--fw-muted);
  font-size: .95rem;
}

/* Buttons */
.fw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, transform .15s, border-color .2s;
}
.fw-btn i {
  font-size: .9em;
}

.fw-btn-primary {
  background: var(--fw-primary);
  color: #fff;
  border-color: var(--fw-primary);
  box-shadow: 0 10px 30px rgba(79, 70, 229, .35);
}
.fw-btn-primary:hover {
  background: var(--fw-primary-dark);
  border-color: var(--fw-primary-dark);
  transform: translateY(-1px);
}

.fw-btn-ghost {
  background: transparent;
  color: #111827;
  border-color: #d1d5db;
}
.fw-btn-ghost:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

.fw-btn-hostinger {
  background: linear-gradient(120deg, #4c1d95, #6366f1);
    border-color: #171745;
  color: #fff;
  box-shadow: 0 12px 35px rgba(79, 70, 229, .45);
}
.fw-btn-hostinger:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Inline link */
.fw-link-inline {
  font-size: .9rem;
  color: var(--fw-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.fw-link-inline span {
  font-size: 1em;
}
.fw-link-inline:hover {
  color: var(--fw-primary-dark);
}

/* ===================================================================
   HERO
   =================================================================== */
.fw-hero {
  padding: 2rem 0 3.8rem;
}
.fw-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.fw-badge {
  display: inline-flex;
  align-items: center;
  padding: .3rem .75rem;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--fw-primary);
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.fw-hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 .7rem;
}
.fw-hero-lead {
  margin: 0 0 1.4rem;
  font-size: .98rem;
  color: #374151;
}
.fw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.3rem;
}
.fw-hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .35rem;
  font-size: .9rem;
  color: var(--fw-muted);
}
.fw-hero-meta li i {
  color: var(--fw-primary);
  margin-right: .4rem;
}

.fw-hero-visual {
  display: flex;
  justify-content: center;
}
.fw-hero-card {
  position: relative;
  border-radius: var(--fw-radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .25);
}
.fw-hero-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.fw-hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: .7rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .75));
  color: #f9fafb;
}
.fw-hero-overlay span i {
  margin-right: .35rem;
}

/* ===================================================================
   PRODUCT CATEGORIES
   =================================================================== */
.fw-cats {
  background: #fff;
}
.fw-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.fw-cat-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: var(--fw-radius-md);
  border: 1px solid var(--fw-border);
  background: #fff;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .15s, background .2s;
}
.fw-cat-card:hover {
  border-color: var(--fw-primary);
  box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
}
.fw-cat-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fw-primary);
}
.fw-cat-name {
  display: block;
  font-size: .95rem;
  color: #111827;
}
.fw-cat-count {
  font-size: .8rem;
  color: var(--fw-muted);
}

/* ===================================================================
   PRODUCTS WRAPPER (Woo markup already styled elsewhere)
   =================================================================== */
.fw-products-grid {
  margin-top: 1rem;
}

/* ===================================================================
   SERVICES / ABOUT
   =================================================================== */
.fw-services {
  background: var(--fw-bg-soft);
}
.fw-services-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}
.fw-services-list {
  list-style: none;
  margin: 1rem 0 1.3rem;
  padding: 0;
  font-size: .95rem;
  color: #374151;
}
.fw-services-list li {
  margin-bottom: .4rem;
}
.fw-services-list li i {
  color: var(--fw-primary);
  margin-right: .4rem;
}
.fw-services-cards {
  display: grid;
  gap: .9rem;
}
.fw-service-card {
  background: #fff;
  border-radius: var(--fw-radius-md);
  padding: .9rem 1rem;
  border: 1px solid var(--fw-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}
.fw-service-card h3 {
  margin: 0 0 .3rem;
  font-size: 1rem;
}
.fw-service-card p {
  margin: 0 0 .5rem;
  font-size: .9rem;
  color: #4b5563;
}
.fw-service-tag {
  font-size: .78rem;
  color: var(--fw-muted);
}

/* ===================================================================
   TUTORIALS / YOUTUBE
   =================================================================== */
/* ================== YOUTUBE / TUTORIALS ================== */
.fw-tutorials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.fw-tutorial-card {
  background: #fff;
  border-radius: var(--fw-radius-md);
  border: 1px solid var(--fw-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.fw-tutorial-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.fw-tutorial-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.fw-tutorial-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
  opacity: 0;
  transition: opacity .2s;
}

.fw-tutorial-thumb:hover img {
  transform: scale(1.05);
}

.fw-tutorial-thumb:hover .fw-tutorial-play {
  opacity: 1;
}

.fw-tutorial-play i {
  text-shadow: 0 8px 25px rgba(0,0,0,.5);
}

.fw-tutorial-body {
  padding: .75rem 1rem 1rem;
}

.fw-tutorial-title {
  margin: 0;
  font-size: .96rem;
}

.fw-tutorial-title a {
  text-decoration: none;
  color: #111827;
	font-size:14px;
	font-weight:bold;
}

.fw-tutorial-title a:hover {
  color: var(--fw-primary);
}


/* ===================================================================
   BLOG PREVIEW
   =================================================================== */
.fw-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}
.fw-blog-card {
  padding: 1rem 1.1rem;
  border-radius: var(--fw-radius-md);
  border: 1px solid var(--fw-border);
  background: #fff;
  box-shadow: 0 10px 25px rgba(15,23,42,.04);
}
.fw-blog-meta-top span {
  font-size: .8rem;
  color: var(--fw-muted);
}
.fw-blog-title {
  margin: .35rem 0 0;
  font-size: 1rem;
}
.fw-blog-title a {
  text-decoration: none;
  color: #111827;
}
.fw-blog-title a:hover {
  color: var(--fw-primary);
}

/* ===================================================================
   FAQ
   =================================================================== */
.fw-faq-accordion {
  margin-top: 1.3rem;
}
.fw-faq-accordion details {
  border-radius: var(--fw-radius-md);
  border: 1px solid var(--fw-border);
  margin: .5rem 0;
  background: #fff;
  overflow: hidden;
}
.fw-faq-accordion summary {
  cursor: pointer;
  padding: .9rem 1rem;
  font-weight: 600;
  font-size: .95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fw-faq-accordion summary::after {
  content: "▾";
  font-size: .8rem;
  color: var(--fw-muted);
  transition: transform .25s;
}
.fw-faq-accordion details[open] summary::after {
  transform: rotate(180deg);
}
.fw-faq-answer {
  padding: 0 .95rem .9rem;
  border-top: 1px solid var(--fw-border);
  font-size: .9rem;
  color: #374151;
}

/* ===================================================================
   HOSTINGER CTA
   =================================================================== */
/* Hostinger CTA as a card, not full-width */
.fw-hosting {
  background: #f9fafb;       /* page background, not gradient */
  padding-bottom: 2.8rem;    /* space above footer */
}

.fw-hosting-inner {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #4c1d95 0, #1d1b4f 45%, #020617 100%);
  color: #e5e7eb;
  padding: 2rem 2.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .45);
  overflow: hidden;
}

/* keep existing text colors inside card */
.fw-hosting-copy .fw-section-title {
  color: #f9fafb;
}
.fw-hosting-copy .fw-section-sub {
  color: #e5e7eb;
}
.fw-hosting-note {
  margin-top: .5rem;
  font-size: .8rem;
  color: #9ca3af;
}

/* tighten on mobile */
@media (max-width: 768px) {
  .fw-hosting-inner {
    padding: 1.6rem 1.5rem;
    border-radius: 18px;
  }
}

.fw-hosting-copy .fw-section-title {
  color: #f9fafb;
}
.fw-hosting-copy .fw-section-sub {
  color: #e5e7eb;
}
.fw-hosting-list {
  list-style: none;
  margin: 1rem 0 1.1rem;
  padding: 0;
  font-size: .92rem;
}
.fw-hosting-list li {
  margin-bottom: .4rem;
}
.fw-hosting-list li i {
  color: #a855f7;
  margin-right: .4rem;
}
.fw-hosting-note {
  margin-top: .5rem;
  font-size: .8rem;
  color: #9ca3af;
}
.fw-hosting-bonus {
  margin: 0 0 .8rem;
  font-size: .9rem;
  color: #e5e7eb;
  font-weight: 500;
}

/* slightly tighten bottom so it flows into footer better */
.fw-hosting {
  padding-bottom: 2.6rem;
}
/* Tighter Hostinger card spacing */
.fw-hosting-inner {
    /* was ~2rem 2.4rem; */
    padding: 1.4rem 2rem;      /* less top/bottom, slightly narrower */
}

.fw-hosting {
    /* reduce space above footer */
    padding-bottom: 2rem;
}

/* tighten internal spacing */
.fw-hosting-copy .fw-section-title {
    margin-bottom: 0.4rem;
}

.fw-hosting-copy .fw-section-sub {
    margin-bottom: 0.6rem;
}

.fw-hosting-list {
    margin: 0.6rem 0 0.7rem;
}

.fw-hosting-bonus {
    margin: 0 0 0.7rem;
}

.fw-hosting-note {
    margin-top: 0.4rem;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .fw-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .fw-hero-visual {
    order: -1;
  }
  .fw-services-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .fw-section {
    padding: 1.5rem 0;
  }
  .fw-hero {
    padding-top: 1.5rem;
	  padding-bottom:10px;
  }
	.fw-hosting

 {

    padding: 10px !important;
}
  .fw-section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .fw-hero-title {
    font-size: 1.9rem;
  }
  .fw-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .fw-btn {
    width: 100%;
  }
}

