/* Variables */
:root {
  --primary: #2563eb; /* Royal Blue */
  --secondary: #0f172a; /* Slate 900 */
  --accent: #f97316; /* Bright Orange */
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #334155;
  --text-light: #94a3b8;
  --white: #ffffff;
  --success: #10b981;
  --error: #ef4444;

  --font-heading: "Helvetica Neue", sans-serif;
  --font-body: system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --header-height: 80px;
  --radius: 12px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #475569;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1e40af);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  margin-top: 20px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Header */
.header {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.desktop-nav a {
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.95rem;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.btn-nav {
  padding: 10px 24px;
  background: var(--secondary);
  color: var(--white) !important;
  border-radius: 6px;
}

.btn-nav:hover {
  background: var(--primary);
}

/* Mobile Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--secondary);
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--secondary);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-links a {
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.bg-dark {
  background: var(--secondary);
  color: var(--white);
}

.bg-dark p {
  color: #cbd5e1;
}

.bg-dark-blue {
  background: #1e3a8a;
  color: var(--white);
}

.bg-gray {
  background: #e2e8f0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.text-white {
  color: var(--white);
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 700px;
  background: url("image-placeholder.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: var(--header-height);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero p {
  color: #cbd5e1;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Grids & Layouts */
.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.abstract-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary);
  margin-bottom: 30px;
}

.abstract-card.offset {
  transform: translateX(40px);
  border-left-color: var(--accent);
}

.icon-large {
  width: 48px;
  height: 48px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius);
  transition: 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.feature-card i {
  color: var(--accent);
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 15px;
}

/* Content Box */
.content-box {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-list li i {
  color: var(--success);
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--error);
  top: 0;
}

.text-wrapper strong {
  color: var(--accent);
}

.text-wrapper a.email {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}

/* Blog */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.article-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.article-item:hover {
  transform: translateY(-5px);
}

.article-img1 {
  height: 200px;
  background: #ccc;
  background-image: url("./images/man-working-outdoors-near-beach.jpg");
  background-size: cover;
  background-position: center;
}
.article-img2 {
  height: 200px;
  background: #ccc;
  background-image: url("./images/close-up-womens-looking-table\ \(1\).jpg");
  background-size: cover;
  background-position: center;
}
.article-img3 {
  height: 200px;
  background: #ccc;
  background-image: url("./images/waist-up-shot-young-blond-businesslady-working-office-desk\ \(1\).jpg");
  background-size: cover;
  background-position: center;
}

.article-text {
  padding: 25px;
}

.article-text .date {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 10px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 15px;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding: 20px 0;
  margin: 0;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Approximate max height */
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Form */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary);
}

.form-group input {
  width: 100%;
  padding: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-wrapper {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkbox-wrapper input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.checkbox-wrapper label {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4;
}

.error-text {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  min-height: 1.2em;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: #94a3b8;
  padding: 80px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-info p,
.footer-legal ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal ul {
  list-style: none;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 4px solid var(--primary);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  padding: 20px 0;
  transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-popup.active {
  bottom: 0;
}

.cookie-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 1024px) {
  .grid-split,
  .grid-3,
  .columns-2,
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .abstract-card.offset {
    transform: translateX(0);
  }
  .hero h1 {
    font-size: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .section-title {
    font-size: 2rem;
  }
}
