/* Fiteria – Design Tokens */
:root {
  --color-rolex-green: #006039;
  --color-deep-forest: #083D2B;
  --color-champagne-gold: #A37E2C;
  --color-warm-off-white: #FAF7F2;
  --color-charcoal: #111827;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --container-max: 80rem;
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-warm-off-white);
  color: var(--color-charcoal);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

/* Header */
.header {
  background: var(--color-warm-off-white);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
}
.header .container { position: relative; }
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 5rem;
}
.logo {
  height: 90px;
  width: auto;
  display: block;
}
@media (min-width: 1024px) {
  .logo-link {
    margin-left: min(3rem, calc(3rem - (100vw - var(--container-max)) / 2));
  }
}
.nav-desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 2rem;
  }
}
.nav-desktop a {
  font-weight: 500;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--color-rolex-green); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  border: none;
}
.btn-primary {
  background: var(--color-rolex-green);
  color: var(--color-warm-off-white);
}
.btn-primary:hover { background: var(--color-deep-forest); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(17, 24, 39, 0.2);
  color: var(--color-charcoal);
}
.btn-outline:hover { border-color: var(--color-rolex-green); color: var(--color-rolex-green); }
.btn-dark {
  background: var(--color-charcoal);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}
.btn-dark:hover { background: var(--color-rolex-green); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; font-weight: 600; }
.btn-cta-gold:hover { background: var(--color-champagne-gold); }
.btn-cta-outline { border-color: var(--color-rolex-green); color: var(--color-rolex-green); }
.btn-cta-outline:hover { background: var(--color-rolex-green); color: var(--color-warm-off-white); }

/* Mobile menu */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--color-charcoal);
  border-radius: 0.375rem;
  color: var(--color-charcoal);
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .btn-header-cta { display: inline-flex; }
}
@media (max-width: 767px) {
  .btn-header-cta { display: none; }
}
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-warm-off-white);
  box-shadow: var(--shadow-xl);
  padding: 1rem;
}
.header { position: relative; }
.nav-mobile.is-open {
  display: block;
}
.nav-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
}

/* Hero */
.hero {
  background: var(--color-warm-off-white);
  overflow: hidden;
}
.hero-grid {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    min-height: 800px;
  }
}
.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .hero-content {
    width: 50%;
    padding: 0 5rem;
  }
}
.hero-title {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-charcoal);
  margin: 0 0 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-title .accent { color: var(--color-rolex-green); }
.hero-text {
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(17, 24, 39, 0.7);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 2rem;
}
@media (min-width: 640px) { .hero-text { font-size: 1.25rem; } }
.hero-text .highlight {
  font-weight: 500;
  color: var(--color-rolex-green);
  margin-top: 0.5rem;
  display: block;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-image-wrap {
  width: 100%;
  height: 400px;
  position: relative;
  background: #e5e7eb;
}
@media (min-width: 1024px) {
  .hero-image-wrap {
    width: 50%;
    height: auto;
    min-height: 800px;
  }
}
.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-deep-forest) 0%, var(--color-rolex-green) 50%, rgba(0, 96, 57, 0.6) 100%);
  opacity: 0.92;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}
@media (min-width: 1024px) { .hero-image-overlay { display: none; } }

/* Benefits strip */
.benefits-strip {
  background: #fff;
  border-top: 1px solid rgba(163, 126, 44, 0.2);
  padding: 2.5rem 0;
  position: relative;
  z-index: 20;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.05);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .benefit-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}
.benefit-icon {
  flex-shrink: 0;
  font-size: 1.875rem;
  color: var(--color-rolex-green);
}
.benefit-icon-simple {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-rolex-green);
  opacity: 0.85;
  display: block;
}
.benefit-item h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.benefit-item p {
  font-size: 0.875rem;
  color: rgba(17, 24, 39, 0.6);
  margin: 0;
}

/* Section common */
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--color-charcoal);
  margin: 0 0 1rem;
}
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-desc {
  font-size: 1.25rem;
  color: rgba(17, 24, 39, 0.6);
  max-width: 42rem;
  margin: 0 auto;
}

/* How it works */
.how-cards {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .how-cards { grid-template-columns: repeat(3, 1fr); } }
.how-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(163, 126, 44, 0.2);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.how-card:hover { box-shadow: var(--shadow-xl); }
.how-card-image {
  height: 12rem;
  overflow: hidden;
}
.how-card-image img { width: 100%; height: 100%; object-fit: cover; }
.how-card-image-minimal {
  background: linear-gradient(145deg, var(--color-rolex-green), var(--color-deep-forest));
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-card-step {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(250, 247, 242, 0.9);
  line-height: 1;
}
.how-card-body { padding: 2rem; }
.how-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0 0 1rem;
  text-align: center;
}
.how-card p {
  color: rgba(17, 24, 39, 0.6);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* Why choose us */
.why-section {
  background: linear-gradient(135deg, var(--color-deep-forest), var(--color-rolex-green));
  color: var(--color-warm-off-white);
  padding: 5rem 0;
}
.why-section .section-title { color: var(--color-warm-off-white); }
.why-section .section-desc { color: rgba(250, 247, 242, 0.8); }
.why-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  text-align: center;
}
.why-card-image {
  width: 100%;
  height: 12rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(163, 126, 44, 0.3);
}
.why-card-image img { width: 100%; height: 100%; object-fit: cover; }
.why-card-image-minimal {
  background: rgba(250, 247, 242, 0.12);
  border: 2px solid rgba(163, 126, 44, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 242, 0.7);
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.why-card p {
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Strategic edge / Benefits bento */
.benefits-section {
  background: #fff;
  padding: 5rem 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  grid-auto-rows: auto;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }
}
@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.bento-tile {
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.2s;
}
.bento-tile:hover { box-shadow: var(--shadow-xl); }
@media (min-width: 768px) {
  .bento-tile-1 { grid-column: span 2; grid-row: span 2; }
  .bento-tile-2 { grid-column: span 2; grid-row: span 2; }
  .bento-tile-3, .bento-tile-4, .bento-tile-5 { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento-tile-1 { grid-column: span 3; }
  .bento-tile-2 { grid-column: span 3; }
  .bento-tile-3, .bento-tile-4, .bento-tile-5 { grid-column: span 2; }
}
.bento-tile-1 {
  background: var(--color-rolex-green);
  color: var(--color-warm-off-white);
  padding: 2.5rem;
}
@media (min-width: 1024px) { .bento-tile-1 { padding: 2.5rem; } }
.bento-badge {
  display: inline-block;
  background: var(--color-champagne-gold);
  color: var(--color-charcoal);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.bento-tile-1 .bento-title {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  line-height: 1.2;
}
@media (min-width: 1024px) { .bento-tile-1 .bento-title { font-size: 2.25rem; } }
.bento-tile-1 .bento-text {
  color: rgba(250, 247, 242, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.bento-tile-1 .bento-text strong { color: var(--color-champagne-gold); }
.bento-image {
  height: 8rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.bento-image img { width: 100%; height: 100%; object-fit: cover; }
.bento-image-minimal {
  height: 4rem;
  background: rgba(250, 247, 242, 0.12);
  border-radius: 0.5rem;
}
.bento-footer-icon-minimal {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--color-champagne-gold);
  opacity: 0.9;
  display: inline-block;
  flex-shrink: 0;
}
.bento-tile-3 .bento-icon-minimal,
.bento-tile-4 .bento-icon-minimal,
.bento-tile-5 .bento-icon-minimal {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  display: block;
  margin-bottom: 1rem;
}
.bento-tile-3 .bento-icon-minimal { background: var(--color-champagne-gold); }
.bento-tile-4 .bento-icon-minimal { background: var(--color-deep-forest); }
.bento-tile-5 .bento-icon-minimal { background: var(--color-rolex-green); opacity: 0.9; }
.bento-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 242, 0.2);
}
.bento-footer-icon {
  font-size: 1.5rem;
  color: var(--color-champagne-gold);
}
.bento-footer span { font-size: 0.875rem; color: rgba(250, 247, 242, 0.8); }

.bento-tile-2 {
  background: var(--color-warm-off-white);
  border: 2px solid var(--color-rolex-green);
  color: var(--color-charcoal);
}
.bento-tile-2 .bento-title {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  line-height: 1.2;
}
@media (min-width: 1024px) { .bento-tile-2 .bento-title { font-size: 2.25rem; } }
.bento-box {
  background: rgba(0, 96, 57, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.bento-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.bento-box-label { font-size: 0.875rem; font-weight: 600; color: var(--color-charcoal); }
.bento-box-value { font-weight: 700; font-size: 1.5rem; color: var(--color-champagne-gold); }
.bento-bar {
  height: 0.5rem;
  background: rgba(0, 96, 57, 0.2);
  border-radius: 9999px;
  overflow: hidden;
}
.bento-bar-fill {
  height: 100%;
  width: 100%;
  background: var(--color-rolex-green);
  border-radius: 9999px;
}
.bento-tile-2 .bento-text {
  color: rgba(17, 24, 39, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.bento-tile-2 .bento-text .gold { font-weight: 700; color: var(--color-champagne-gold); }
.bento-tile-2 .bento-text .green { font-weight: 600; color: var(--color-rolex-green); }
.bento-tile-2 .bento-footer { border-top-color: rgba(0, 96, 57, 0.2); }
.bento-tile-2 .bento-footer-icon { color: var(--color-rolex-green); }
.bento-tile-2 .bento-footer span { color: rgba(17, 24, 39, 0.6); }

.bento-tile-3 {
  background: var(--color-deep-forest);
  color: var(--color-warm-off-white);
  padding: 1.5rem;
}
.bento-tile-3 .bento-icon,
.bento-tile-4 .bento-icon,
.bento-tile-5 .bento-icon {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.bento-tile-3 .bento-icon { color: var(--color-champagne-gold); }
.bento-tile-3 .bento-title,
.bento-tile-4 .bento-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.bento-tile-3 .bento-text,
.bento-tile-4 .bento-text {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.bento-tile-3 .bento-image,
.bento-tile-4 .bento-image,
.bento-tile-5 .bento-image {
  height: 5rem;
}

.bento-tile-4 {
  background: var(--color-champagne-gold);
  color: var(--color-charcoal);
  padding: 1.5rem;
}
.bento-tile-4 .bento-icon { color: var(--color-deep-forest); }
.bento-tile-4 .bento-text { color: rgba(17, 24, 39, 0.8); }

.bento-tile-5 {
  background: var(--color-warm-off-white);
  border: 2px solid var(--color-champagne-gold);
  color: var(--color-charcoal);
  padding: 1.5rem;
}
.bento-tile-5 .bento-icon { color: var(--color-rolex-green); }
.bento-tile-5 .bento-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.bento-tile-5 .bento-text { color: rgba(17, 24, 39, 0.7); margin-bottom: 1rem; }
.bento-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.bento-tag {
  background: rgba(0, 96, 57, 0.1);
  color: var(--color-rolex-green);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* CTA */
.cta-section {
  padding: 5rem 0;
  background: var(--color-warm-off-white);
}
.cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--color-charcoal);
  margin: 0 0 1.5rem;
}
@media (min-width: 1024px) { .cta-title { font-size: 3rem; } }
.cta-desc {
  font-size: 1.25rem;
  color: rgba(17, 24, 39, 0.6);
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }
.btn-scale:hover { transform: scale(1.05); }

/* Footer */
.footer {
  background: var(--color-charcoal);
  color: var(--color-warm-off-white);
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--color-rolex-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon i { color: var(--color-warm-off-white); font-size: 0.875rem; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}
.footer p {
  color: rgba(250, 247, 242, 0.6);
  margin: 0;
  font-size: 0.9375rem;
}
.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer a {
  color: rgba(250, 247, 242, 0.6);
  transition: color 0.2s;
}
.footer a:hover { color: var(--color-champagne-gold); }
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(250, 247, 242, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--color-champagne-gold); color: var(--color-warm-off-white); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.9375rem;
}
