:root {
  --fg-primary: #121212;
  --fg-secondary: #1E1E1E;
  --fg-accent: #4F46E5;
  --fg-accent-secondary: #6366F1;
  --fg-text-primary: #F8F8F8;
  --fg-text-secondary: #A3A3A3;
  --fg-success: #10B981;
  --fg-warning: #F59E0B;
  --fg-error: #EF4444;
  --fg-border: #2D2D2D;
  --fg-card: #1A1A1A;
  --fg-hover: #2E2E2E;
  --fg-transition: all 0.3s ease;
  --fg-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Red Hat Display', sans-serif;
  background-color: var(--fg-primary);
  color: var(--fg-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--fg-text-primary);
  text-decoration: none;
  transition: var(--fg-transition);
}

a:hover {
  color: var(--fg-accent);
}

img {
  max-width: 100%;
  height: auto;
}

button, .fg-button {
  background-color: var(--fg-accent);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--fg-transition);
  font-family: 'Red Hat Display', sans-serif;
}

button:hover, .fg-button:hover {
  background-color: var(--fg-accent-secondary);
  transform: translateY(-2px);
}

.fg-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--fg-text-primary) 0%, var(--fg-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.fg-text-gradient {
  background: linear-gradient(135deg, var(--fg-accent) 0%, var(--fg-accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.fg-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fg-border);
  padding: 15px 0;
}

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

.fg-logo {
  display: flex;
  align-items: center;
}

.fg-logo img {
  height: 40px;
}

.fg-nav {
  display: flex;
  align-items: center;
}

.fg-nav-list {
  display: flex;
  list-style: none;
}

.fg-nav-item {
  margin-left: 2rem;
}

.fg-nav-link {
  position: relative;
  font-weight: 500;
  padding: 5px 0;
}

.fg-nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--fg-accent);
  transition: var(--fg-transition);
}

.fg-nav-link:hover:after,
.fg-nav-link.active:after {
  width: 100%;
}

.fg-mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--fg-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.fg-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--fg-secondary);
  padding: 2rem;
  transition: var(--fg-transition);
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.fg-mobile-menu.active {
  right: 0;
}

.fg-mobile-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--fg-text-primary);
  font-size: 1.5rem;
  padding: 0;
  margin-bottom: 2rem;
}

.fg-mobile-nav-list {
  list-style: none;
}

.fg-mobile-nav-item {
  margin-bottom: 1.5rem;
}

.fg-mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 500;
}

.fg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}

.fg-overlay.active {
  display: block;
}


.fg-main {
  padding-top: 80px;
}


.fg-panels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 20px;
  margin: 2rem 0;
}

.fg-panel {
  background-color: var(--fg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--fg-shadow);
  transition: var(--fg-transition);
  cursor: grab;
  position: relative;
}

.fg-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.5);
}

.fg-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--fg-border);
}

.fg-panel-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.fg-panel-controls {
  display: flex;
  gap: 0.5rem;
}

.fg-panel-control {
  background: transparent;
  border: none;
  color: var(--fg-text-secondary);
  cursor: pointer;
  transition: var(--fg-transition);
  padding: 5px;
}

.fg-panel-control:hover {
  color: var(--fg-text-primary);
}

.fg-panel-content {
  height: 100%;
}

.fg-panel-sm {
  grid-column: span 3;
}

.fg-panel-md {
  grid-column: span 6;
}

.fg-panel-lg {
  grid-column: span 9;
}

.fg-panel-xl {
  grid-column: span 12;
}


.fg-hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.fg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.fg-hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.fg-hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--fg-text-secondary);
}

.fg-hero-cta {
  display: flex;
  gap: 1rem;
}

.fg-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}


.fg-services {
  padding: 5rem 0;
}

.fg-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fg-service-card {
  background-color: var(--fg-card);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--fg-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fg-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fg-shadow);
}

.fg-service-icon {
  font-size: 2.5rem;
  color: var(--fg-accent);
  margin-bottom: 1.5rem;
}

.fg-service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fg-service-description {
  color: var(--fg-text-secondary);
  flex-grow: 1;
}

.fg-service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  font-weight: 500;
  color: var(--fg-accent);
}

.fg-service-link i {
  margin-left: 0.5rem;
  transition: var(--fg-transition);
}

.fg-service-link:hover i {
  transform: translateX(5px);
}


.fg-about {
  padding: 5rem 0;
}

.fg-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fg-about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--fg-shadow);
}

.fg-about-content h2 {
  margin-bottom: 2rem;
}

.fg-about-features {
  margin-top: 2rem;
}

.fg-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.fg-feature-icon {
  color: var(--fg-accent);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.fg-feature-content h4 {
  margin-bottom: 0.5rem;
}

.fg-feature-content p {
  color: var(--fg-text-secondary);
}


.fg-contact-form {
  background-color: var(--fg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--fg-shadow);
}

.fg-form-group {
  margin-bottom: 1.5rem;
}

.fg-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.fg-form-input,
.fg-form-textarea,
.fg-form-select {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--fg-secondary);
  border: 1px solid var(--fg-border);
  border-radius: 6px;
  color: var(--fg-text-primary);
  font-family: 'Red Hat Display', sans-serif;
  transition: var(--fg-transition);
}

.fg-form-input:focus,
.fg-form-textarea:focus,
.fg-form-select:focus {
  outline: none;
  border-color: var(--fg-accent);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.fg-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.fg-form-checkbox {
  display: flex;
  align-items: flex-start;
}

.fg-form-checkbox input {
  margin-right: 10px;
  margin-top: 5px;
}

.fg-form-checkbox label {
  color: var(--fg-text-secondary);
  font-size: 0.9rem;
}

.fg-form-checkbox a {
  color: var(--fg-accent);
}

.fg-form-button {
  width: 100%;
}


.fg-footer {
  background-color: var(--fg-secondary);
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  border-top: 1px solid var(--fg-border);
}

.fg-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.fg-footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.fg-footer-brand p {
  color: var(--fg-text-secondary);
}

.fg-footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.fg-footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--fg-accent);
}

.fg-footer-links {
  list-style: none;
}

.fg-footer-link {
  margin-bottom: 0.75rem;
}

.fg-footer-link a {
  color: var(--fg-text-secondary);
  transition: var(--fg-transition);
}

.fg-footer-link a:hover {
  color: var(--fg-accent);
  padding-left: 5px;
}

.fg-footer-contact {
  list-style: none;
}

.fg-footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--fg-text-secondary);
}

.fg-footer-contact i {
  margin-right: 1rem;
  color: var(--fg-accent);
}

.fg-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--fg-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.fg-footer-copyright {
  color: var(--fg-text-secondary);
}

.fg-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.fg-footer-legal a {
  color: var(--fg-text-secondary);
  font-size: 0.9rem;
}


.fg-investment-header {
  padding: 5rem 0;
  background-color: var(--fg-secondary);
  position: relative;
  overflow: hidden;
}

.fg-investment-header-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.fg-investment-services {
  padding: 5rem 0;
}

.fg-investment-case {
  padding: 5rem 0;
  background-color: var(--fg-secondary);
}

.fg-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fg-case-card {
  background-color: var(--fg-card);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--fg-transition);
}

.fg-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fg-shadow);
}

.fg-case-image {
  height: 200px;
  overflow: hidden;
}

.fg-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--fg-transition);
}

.fg-case-card:hover .fg-case-image img {
  transform: scale(1.05);
}

.fg-case-content {
  padding: 2rem;
}

.fg-case-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fg-case-description {
  color: var(--fg-text-secondary);
  margin-bottom: 1.5rem;
}

.fg-case-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--fg-border);
  padding-top: 1.5rem;
}

.fg-case-stat {
  text-align: center;
}

.fg-case-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg-accent);
  margin-bottom: 0.5rem;
}

.fg-case-stat-label {
  font-size: 0.9rem;
  color: var(--fg-text-secondary);
}


.fg-approach-header {
  padding: 5rem 0;
  background-color: var(--fg-secondary);
}

.fg-approach-steps {
  padding: 5rem 0;
}

.fg-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.fg-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--fg-border);
}

.fg-timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: calc(50% - 30px);
}

.fg-timeline-item:nth-child(odd) {
  left: 0;
}

.fg-timeline-item:nth-child(even) {
  left: calc(50% + 30px);
}

.fg-timeline-item:before {
  content: '';
  position: absolute;
  top: 20px;
  width: 30px;
  height: 2px;
  background-color: var(--fg-border);
}

.fg-timeline-item:nth-child(odd):before {
  right: -30px;
}

.fg-timeline-item:nth-child(even):before {
  left: -30px;
}

.fg-timeline-marker {
  position: absolute;
  top: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--fg-accent);
  box-shadow: 0 0 0 4px var(--fg-primary);
}

.fg-timeline-item:nth-child(odd) .fg-timeline-marker {
  right: -36px;
}

.fg-timeline-item:nth-child(even) .fg-timeline-marker {
  left: -36px;
}

.fg-timeline-content {
  background-color: var(--fg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--fg-shadow);
}

.fg-timeline-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fg-timeline-description {
  color: var(--fg-text-secondary);
}


.fg-services-categories {
  padding: 5rem 0;
}

.fg-category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fg-category-tab {
  padding: 12px 24px;
  background-color: var(--fg-card);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--fg-transition);
}

.fg-category-tab.active {
  background-color: var(--fg-accent);
  color: white;
}

.fg-category-tab:hover:not(.active) {
  background-color: var(--fg-hover);
}

.fg-category-content {
  display: none;
}

.fg-category-content.active {
  display: block;
}

.fg-service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.fg-service-item {
  background-color: var(--fg-card);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--fg-transition);
}

.fg-service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--fg-shadow);
}

.fg-service-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.fg-service-item-icon {
  font-size: 2rem;
  color: var(--fg-accent);
  margin-right: 1rem;
}

.fg-service-item-title {
  font-size: 1.25rem;
}

.fg-service-item-description {
  color: var(--fg-text-secondary);
}


.fg-contacts {
  padding: 5rem 0;
}

.fg-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.fg-contacts-info h2 {
  margin-bottom: 2rem;
}

.fg-contacts-details {
  margin-bottom: 2rem;
}

.fg-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.fg-contact-icon {
  font-size: 1.5rem;
  color: var(--fg-accent);
  margin-right: 1rem;
}

.fg-contact-text h4 {
  margin-bottom: 0.5rem;
}

.fg-contact-text p {
  color: var(--fg-text-secondary);
}

.fg-map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}


.fg-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--fg-secondary);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  display: none;
}

.fg-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.fg-cookie-text {
  flex: 1;
  min-width: 280px;
}

.fg-cookie-text p {
  margin-bottom: 0;
}

.fg-cookie-actions {
  display: flex;
  gap: 1rem;
}

.fg-cookie-button-accept {
  background-color: var(--fg-success);
}

.fg-cookie-button-accept:hover {
  background-color: #0DA271;
}

.fg-cookie-button-settings {
  background-color: transparent;
  border: 1px solid var(--fg-border);
}

.fg-cookie-button-settings:hover {
  background-color: var(--fg-hover);
}

.fg-cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  display: none;
}

.fg-cookie-settings-content {
  background-color: var(--fg-secondary);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.fg-cookie-settings-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--fg-border);
}

.fg-cookie-settings-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.fg-cookie-settings-body {
  padding: 1.5rem;
}

.fg-cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--fg-border);
}

.fg-cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fg-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.fg-cookie-category-title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.fg-cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.fg-cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.fg-cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--fg-border);
  transition: var(--fg-transition);
  border-radius: 24px;
}

.fg-cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--fg-transition);
  border-radius: 50%;
}

input:checked + .fg-cookie-slider {
  background-color: var(--fg-accent);
}

input:checked + .fg-cookie-slider:before {
  transform: translateX(26px);
}

.fg-cookie-category-description {
  color: var(--fg-text-secondary);
  font-size: 0.9rem;
}

.fg-cookie-settings-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--fg-border);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.fg-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 80px);
  padding: 2rem;
}

.fg-thanks-icon {
  font-size: 5rem;
  color: var(--fg-success);
  margin-bottom: 2rem;
}

.fg-thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.fg-thanks-message {
  font-size: 1.25rem;
  color: var(--fg-text-secondary);
  max-width: 600px;
  margin-bottom: 2rem;
}


.fg-legal {
  padding: 5rem 0;
}

.fg-legal-content {
  background-color: var(--fg-card);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--fg-shadow);
}

.fg-legal-updated {
  color: var(--fg-text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.fg-legal-section {
  margin-bottom: 3rem;
}

.fg-legal-section:last-child {
  margin-bottom: 0;
}

.fg-legal-section h3 {
  margin-bottom: 1.5rem;
}

.fg-legal-list {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.fg-legal-list li {
  margin-bottom: 0.75rem;
}


.fg-text-center {
  text-align: center;
}

.fg-mb-1 {
  margin-bottom: 0.5rem;
}

.fg-mb-2 {
  margin-bottom: 1rem;
}

.fg-mb-3 {
  margin-bottom: 1.5rem;
}

.fg-mb-4 {
  margin-bottom: 2rem;
}

.fg-mb-5 {
  margin-bottom: 3rem;
}

.fg-mt-1 {
  margin-top: 0.5rem;
}

.fg-mt-2 {
  margin-top: 1rem;
}

.fg-mt-3 {
  margin-top: 1.5rem;
}

.fg-mt-4 {
  margin-top: 2rem;
}

.fg-mt-5 {
  margin-top: 3rem;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  height: 100%;
}

.iti__selected-flag {
  background-color: var(--fg-secondary) !important;
  border-radius: 6px 0 0 6px;
}

.iti__country-list {
  background-color: var(--fg-secondary);
  border: 1px solid var(--fg-border);
}

.iti__country {
  color: var(--fg-text-primary);
}

.iti__country.iti__highlight {
  background-color: var(--fg-hover);
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fg-animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fg-animate-delay-1 {
  animation-delay: 0.2s;
}

.fg-animate-delay-2 {
  animation-delay: 0.4s;
}

.fg-animate-delay-3 {
  animation-delay: 0.6s;
}


@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .fg-hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .fg-nav-list {
    display: none;
  }
  
  .fg-mobile-menu-toggle {
    display: block;
  }
  
  .fg-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .fg-contacts-grid {
    grid-template-columns: 1fr;
  }
  
  .fg-panel-sm, .fg-panel-md, .fg-panel-lg, .fg-panel-xl {
    grid-column: span 12;
  }
  
  .fg-hero-image {
    opacity: 0.3;
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
  }
  
  .fg-hero-content {
    max-width: 100%;
  }
  
  .fg-timeline:before {
    left: 40px;
  }
  
  .fg-timeline-item {
    width: calc(100% - 80px);
    left: 80px !important;
  }
  
  .fg-timeline-item:before {
    left: -40px !important;
  }
  
  .fg-timeline-marker {
    left: -46px !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .fg-hero-title {
    font-size: 2.75rem;
  }
  
  .fg-hero-description {
    font-size: 1.1rem;
  }
  
  .fg-hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .fg-hero-cta .fg-button {
    width: 100%;
    text-align: center;
  }
  
  .fg-services-grid, .fg-case-grid, .fg-service-list {
    grid-template-columns: 1fr;
  }
  
  .fg-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .fg-footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .fg-legal-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .fg-container {
    padding: 0 15px;
  }
  
  .fg-hero {
    padding: 3rem 0;
  }
  
  .fg-services, .fg-about, .fg-investment-services, .fg-investment-case, .fg-approach-steps, .fg-services-categories, .fg-contacts {
    padding: 3rem 0;
  }
  
  .fg-cookie-actions {
    width: 100%;
  }
  
  .fg-cookie-button-accept, .fg-cookie-button-settings {
    flex: 1;
  }
}