:root {
  --color:#262626;
  --color-primary: #3b82f6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Geist", sans-serif;

  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: white;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--color)
}

.logo span{
  color: var(--color-primary)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  transition: color 0.3s;
  color: var(--color);
  font-weight: 500;
  font-size: 14px;  
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  margin-top: 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--color-primary)
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color)
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-primary {
  background: var(--color-primary);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-primary:hover {
  transform: translateY(-2px);
}

.cta-outline{
  background: white;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.cta-secondary {
  background: transparent;
  color: #fff;
  padding: 15px 40px;
  border: 2px solid #fff;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
}

.cta-secondary:hover {
  background: #fff;
  color: #1a1a2e;
}

/* Trust Badges */
.trust-section {
  background: #f8f9fa;
  padding: 3rem 0;
  text-align: center;
}

.trust-section h3 {
  color: #666;
  margin-bottom: 2rem;
  font-weight: normal;
}

.company-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.company-logo img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 500px;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.about-text p {
  margin-bottom: 1rem;
  color: #666;
  font-size: 1.1rem;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.credential-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  border-left: 4px solid #ffd700;
}

.credential-item strong {
  color: #1a1a2e;
}

/* Experience Section */
.experience-section {
  color: var(--color);
  background: #f8f9fa;
  padding: 5rem 0;
}

.experience-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.experience-card {
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid #ddd
}

.experience-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.experience-card p {
  opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a2e;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #666;
}

.testimonial-author {
  font-weight: bold;
  color: #1a1a2e;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #999;
}

.stars {
  color: #ffd700;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background-color: #171717;
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.cta-form button {
  grid-column: 1 / -1;
  background: #1a1a2e;
  color: #ffd700;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-form button:hover {
  transform: translateY(-3px);
}

.guarantee {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
footer {
  padding: 3rem 0 1rem;
  padding-left: 4em;
  padding-right: 4em;
  border-top: 1px solid #ccc;
}

.footer-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--color);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content,
  .about-content,
  .experience-grid,
  .testimonials-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-content{
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .stats {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }
}

/* ---- */

.hero-img img {
  max-width: 540px;
  border-radius: 14px;
}

.title {
  letter-spacing: -0.06em;
  line-height: 1;
}

.subtitle {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 2em;
  margin-top: 1em;
}

.h-icon {
  width: 28px;
  height: 28px;
}

.strategies-section {
  text-align: center;
  margin-bottom: 4em;
}
.strategies-section h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.strategies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.strategy-card {
  border: 1px solid #ccc;
  padding: 1.5rem;
  text-align: start;
  border-radius: 18px;
}
.strategy-card:hover {
  background-color: #eeeeee6f;
  transition: all ease 0.3s;
}

.sc-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.06rem;
}

.sc-subtitle {
  font-weight: 500;
  margin-bottom: 14px;
}

.sc-desc {
  font-size: 14px;
}

.pricing-section{
  margin-top: 8em;
}

.pricing-section .title,
.pricing-section .subtitle {
  text-align: center;
}

/* pricing */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 6em 0;
}
.pricing-card {
  color: var(--color);
  background: #fafafa;
  border: 1px solid #e5e5e5;
  padding: 1.5em;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plan-name {
  font-size: 28px;
  letter-spacing: -0.06em;
}
.plan-price {
  font-size: 48px;
  font-weight: 500;
}
.plan-price span {
  font-size: 24px;
}
.plan-billing {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
}
.plan-features li svg {
  width: 18px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}
.plan-btn {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  padding: 0.6em;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  margin-top: 28px;
}

.popular-badge {
  margin-top: -2.5em;
  background-color: var(--color-primary);
  color: white;
  text-align: center;
  border-radius: 14px;
  padding: 4px;
}

.pro-plan-btn {
  background-color: var(--color-primary);
  color: white;
}

/* features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  border: 1px solid #ccc;
  border-radius: 14px;
  padding: 1em;
  background-color: #eee;
}

.feature-title {
  letter-spacing: -0.06em;
  font-size: 28px;
  font-weight: 500;
}

.feature-icon {
  background: #eee;
  padding: 7px 8px;
  border-radius: 14px;
  max-width: max-content;
  max-height: max-content;
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}

.feature-card svg {
  width: 22px;
}

.section-header {
  text-align: center;
  color: #0a0a0a;
}

.testimonial-stars {
  color: #ffd700;
}
.testimonial-author {
  display: flex;
  gap: 8px;
}

.author-avatar {
  background-color: #eee;
  border-radius: 100%;
  padding: 14px;
}

.author-title {
  font-weight: normal;
}
.newsletter-section {
  padding: 4em 0;
  background-color: #0a0a0a;
  color: white;
}
.newsletter-section .section-header {
  color: white;
}
.newsletter-form {
  display: flex;
  gap: 2em;
  justify-content: center;
}
.newsletter input {
  padding: 0.8em 1em;
  border: 2px solid #eee;
  border-radius: 14px;
  width: 100%;
  max-width: 30em;
  display: block;
}
.newsletter button {
  padding: 0.8em 2em;
  border: none;
  border-radius: 12px;
  font-weight: 500;
  display: block;
  color:white;
  background-color: var(--color-primary);
}

.e-chart-icon {
  background-color: #bfdbfe;
  border: 1px solid #93c5fd;
  padding: 8px;
  max-width: max-content;
  border-radius: 12px;
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}

/* mobile responsive */

.h-menu-btn {
  display: none;
}
aside {
  display: none;
}
.h-contact button {
  border: none;
  background-color: #ffd700;
  font-size: 16px;
  font-weight: 500;
  border-radius: 18px;
  padding: 8px 16px;
}

.h-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  color: white;
  padding: 2px 16px;
  border-radius: 28px;
}
.h-actions img {
  margin-top: 5px;
}


@media (max-width: 480px) {
  .pricing-container {
    display: grid;
    grid-template-columns: 1fr;
  }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .h-menu-btn {
    display: block;
  }
  .h-menu-btn button {
    background-color: transparent;
    border: none;
  }
  .container {
    max-width: 99%;
  }
  .company-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-image img,
  .hero-img img {
    max-width: 100%;
  }
  .hero-content {
    text-align: center;
  }
  .strategies {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-number {
    font-size: 28px;
    font-weight: 500;
  }
  .stat-label {
    font-weight: 500;
    font-size: 14px;
  }
  /* aside */
  aside {
    background-color: white;
    color: var(--color);
    padding: 1em;
    min-height: 100vh;
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    width: 70%;
    padding-top: 6em;
    align-items: start;
    display: none;
  }
  aside a {
    color: var(--color);
    font-size: 18px;
    text-decoration: none;
  }
  .aside-links {
    display: flex;
    flex-direction: column;
  }
  .aside-links li {
    list-style: none;
    margin-top: 14px;
  }
  .h-actions {
    display: flex;
    margin-top: 2em;
    gap: 28px;
  }
  .footer-content {
    flex-direction: column;
  }
}

.about-content {
  display: flex;
  align-items: center;
}

.about-content .container {
  background-color: white;
  color: black;
  margin: 6em auto !important;
  max-width: 800px;
}

.about-content h2 {
  border-top: 1px solid #ccc;
  padding-top: 0.5em;
  margin-top: 0.5em;
}

.about-content ul {
  padding-left: 28px;
}
.about-content ul li {
  margin-bottom: 14px;
}
.about-content .choose-block {
  margin-top: 14px;
}

.footer-logo img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
}
.fh-actions {
  background-color: transparent;
  border: none;
  color: var(--color);
  font-size: 24px;
  gap: 10px;
  padding: 0;
  font-weight: 500;
  min-width: max-content;
}
.fh-actions img {
  width: 36px;
  height: 36px;
}

.footer-logo img{
  width: 200px;
  object-fit: contain;
}

@media (min-width: 768px) {

  .footer-content-wrapper{
    display: flex; 
    flex-direction: row-reverse;
    width: 60%;
    justify-content: space-between;
    align-items: center;
}

}

