.contact-page {
  background: var(--background);
}

.contact-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 226, 237, 0.6);
}

.contact-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  width: min(1120px, 92vw);
}

.contact-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

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

.contact-content {
  padding-bottom: 4rem;
}

.contact-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(71, 71, 71, 0.12), rgba(105, 130, 165, 0.08));
}

.contact-hero .container {
  width: min(960px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 1vw + 2.1rem, 3rem);
}

.contact-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.contact-section {
  padding: 3.5rem 0;
}

.contact-section .container {
  width: min(1120px, 92vw);
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.channels-grid,
.offices-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.channel-card,
.office-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.channel-card a.btn {
  align-self: flex-start;
}

.contact-form {
  margin-top: 2rem;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(226, 226, 237, 0.9);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(226, 226, 237, 0.9);
  font-size: 1rem;
  background: var(--background);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(71, 71, 71, 0.25);
  box-shadow: 0 0 0 4px rgba(71, 71, 71, 0.12);
  border-color: rgba(71, 71, 71, 0.4);
}

.form-grid .full {
  grid-column: 1 / -1;
}

.contact-section.cta {
  background: linear-gradient(120deg, #6982a5 0%, #5a6f8f 100%);
  color: var(--white);
}

.contact-section.cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-section.cta p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-section.cta .btn {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

.contact-section.cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.contact-footer {
  background: #111116;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.contact-footer .container {
  width: min(960px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-footer .btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(71, 71, 71, 0.32);
}

.contact-footer .btn:hover {
  background: var(--primary-dark);
}

.account-section.cta {
  background: linear-gradient(120deg, #6982a5 0%, #5a6f8f 100%);
  color: var(--white);
}

.account-section.cta .container {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.account-section.cta p {
  color: rgba(255, 255, 255, 0.86);
}

.account-section.cta .btn {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

.account-section.cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.account-footer {
  background: #111116;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.account-footer .container {
  width: min(960px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.account-footer .btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(71, 71, 71, 0.32);
}

.account-footer .btn:hover {
  background: var(--primary-dark);
}

.account-page {
  background: var(--background);
}

.account-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 226, 237, 0.6);
}

.account-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  width: min(1120px, 92vw);
}

.account-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

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

.account-content {
  padding-bottom: 4rem;
}

.account-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(71, 71, 71, 0.12), rgba(105, 130, 165, 0.08));
}

.account-hero .container {
  width: min(1120px, 92vw);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.account-hero h1 {
  font-size: clamp(2.4rem, 1vw + 2.1rem, 3rem);
}

.account-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.account-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.account-meta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.account-hero .hero-media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.account-section {
  padding: 3.5rem 0;
}

.account-section .container {
  width: min(1120px, 92vw);
}

.account-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.plan-card li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.plan-card .badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(71, 71, 71, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.plan-card.popular {
  border: 2px solid rgba(71, 71, 71, 0.4);
  box-shadow: 0 24px 48px rgba(71, 71, 71, 0.15);
}

.integrations-grid,
.onboarding-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.integration-card,
.onboarding-card,
.faq-card {
  background: var(--background);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-card {
  background: var(--white);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.account-section.c
.credit-page {
  background: var(--background);
}

.credit-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 226, 237, 0.6);
}

.credit-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  width: min(1120px, 92vw);
}

.credit-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

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

.credit-content {
  padding-bottom: 4rem;
}

.credit-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(71, 71, 71, 0.12), rgba(105, 130, 165, 0.08));
}

.credit-hero .container {
  width: min(1120px, 92vw);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.credit-hero h1 {
  font-size: clamp(2.4rem, 1vw + 2.1rem, 3rem);
}

.credit-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.credit-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.credit-meta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.credit-simulator {
  padding: 4rem 0 3.5rem;
}

.credit-simulator .container {
  width: min(1120px, 92vw);
}

.credit-simulator h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.simulator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.simulator-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.credit-section {
  padding: 3.5rem 0;
}

.credit-section .container {
  width: min(1120px, 92vw);
}

.credit-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.credit-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.credit-product-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.credit-product-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.credit-product-card li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.credit-product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.credit-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: var(--background);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.requirement-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.requirement-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.requirement-card li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.requirement-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  background: linear-gradient(180deg, #fff5f0 0%, #ffffff 100%);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.7);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: var(--muted);
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--text);
}

.credit-section.cta {
  background: linear-gradient(120deg, #6982a5 0%, #5a6f8f 100%);
  color: var(--white);
}

.credit-section.cta .container {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.credit-section.cta p {
  color: rgba(255, 255, 255, 0.86);
}

.credit-section.cta .btn {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

.credit-section.cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.credit-footer {
  background: #111116;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.credit-footer .container {
  width: min(960px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.credit-footer .btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(71, 71, 71, 0.32);
}

.credit-footer .btn:hover {
  background: var(--primary-dark);
}

.api-page {
  background: var(--background);
}

.api-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 226, 237, 0.6);
}

.api-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  width: min(1120px, 92vw);
}

.api-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

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

.api-content {
  padding-bottom: 4rem;
}

.api-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(71, 71, 71, 0.12), rgba(105, 130, 165, 0.08));
}

.api-hero .container {
  width: min(960px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.api-hero h1 {
  font-size: clamp(2.4rem, 1vw + 2.1rem, 3rem);
}

.api-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.api-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.api-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.api-meta code {
  background: rgba(17, 17, 17, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-family: "Fira Code", "Source Code Pro", Consolas, monospace;
  font-size: 0.95rem;
}

.api-section {
  padding: 3.5rem 0;
}

.api-section .container {
  width: min(1120px, 92vw);
}

.api-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.api-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.endpoints {
  background: var(--white);
}

.endpoint-list {
  display: grid;
  gap: 1.25rem;
}

.endpoint-card {
  background: var(--background);
  border-radius: 18px;
  border: 1px solid rgba(226, 226, 237, 0.85);
  padding: 1.5rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.endpoint-card header {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.method {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  background: rgba(17, 17, 17, 0.1);
}

.method.get {
  background: rgba(56, 189, 248, 0.2);
  color: #0f172a;
}

.method.post {
  background: rgba(74, 222, 128, 0.2);
  color: #064e3b;
}

.endpoint-card code {
  font-family: "Fira Code", "Source Code Pro", Consolas, monospace;
  font-size: 0.95rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.05);
}

.webhook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.webhook-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.webhook-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.webhook-card li {
  position: relative;
  padding-left: 1.5rem;
  font-family: "Fira Code", "Source Code Pro", Consolas, monospace;
  font-size: 0.95rem;
}

.webhook-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.sdk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.sdk-card {
  background: var(--background);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.api-footer {
  background: #111116;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.api-footer .container {
  width: min(960px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.api-footer .btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(71, 71, 71, 0.32);
}

.api-footer .btn:hover {
  background: var(--primary-dark);
}

.stories-page {
  background: var(--background);
}

.stories-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 226, 237, 0.6);
}

.stories-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  width: min(1120px, 92vw);
}

.stories-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

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

.stories-content {
  padding-bottom: 4rem;
}

.stories-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(71, 71, 71, 0.12), rgba(105, 130, 165, 0.08));
}

.stories-hero .container {
  width: min(960px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stories-hero h1 {
  font-size: clamp(2.4rem, 1vw + 2.1rem, 3rem);
}

.stories-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.stories-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.stories-section {
  padding: 3.5rem 0;
}

.stories-section .container {
  width: min(1120px, 92vw);
}

.stories-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.stories-grid {
  display: grid;
  gap: 2rem;
}

.story-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-card-body ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.story-card-body li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.story-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.badge {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(71, 71, 71, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.quotes {
  background: var(--white);
}

.quotes-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.quote-card {
  background: linear-gradient(180deg, #fff5f0 0%, #ffffff 100%);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.7);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.quote-card p {
  color: var(--muted);
}

.quote-card .author {
  font-weight: 600;
  color: var(--text);
}

.stories-section.cta {
  background: linear-gradient(120deg, #6982a5 0%, #5a6f8f 100%);
  color: var(--white);
}

.stories-section.cta .container {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stories-section.cta p {
  color: rgba(255, 255, 255, 0.86);
}

.stories-section.cta .btn {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

.stories-section.cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stories-footer {
  background: #111116;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.stories-footer .container {
  width: min(960px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.stories-footer .btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(71, 71, 71, 0.32);
}

.stories-footer .btn:hover {
  background: var(--primary-dark);
}

.help-page {
  background: var(--background);
}

.help-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 226, 237, 0.6);
}

.help-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  width: min(1120px, 92vw);
}

.help-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

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

.help-content {
  padding-bottom: 4rem;
}

.help-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(71, 71, 71, 0.12), rgba(105, 130, 165, 0.08));
}

.help-hero .container {
  width: min(960px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.help-hero h1 {
  font-size: clamp(2.4rem, 1vw + 2.1rem, 3rem);
}

.help-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.help-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.help-search input[type="search"] {
  flex: 1 1 320px;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(226, 226, 237, 0.9);
  font-size: 1rem;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.help-search input[type="search"]:focus {
  outline: 2px solid rgba(71, 71, 71, 0.25);
}

.help-shortcuts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.help-shortcuts a {
  font-weight: 600;
  color: var(--primary);
}

.help-shortcuts a:hover {
  text-decoration: underline;
}

.help-section {
  padding: 3.5rem 0;
}

.help-section .container {
  width: min(1120px, 92vw);
}

.help-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-card h3 {
  font-size: 1.2rem;
}

.faq-card p {
  color: var(--muted);
}

.tutorials {
  background: var(--white);
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.tutorial-card {
  background: var(--background);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tutorial-card p {
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.support-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.support-card a.btn {
  align-self: flex-start;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.help-footer {
  background: #111116;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.help-footer .container {
  width: min(960px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.help-footer .btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(71, 71, 71, 0.32);
}

.help-footer .btn:hover {
  background: var(--primary-dark);
}

:root {
  --primary: #6982a5;
  --primary-dark: #5a6f8f;
  --primary-light: #8fa3c0;
  --secondary: #474747;
  --secondary-dark: #2d2d2d;
  --background: #f9f9fb;
  --text: #1f1f28;
  --muted: #6b6b7a;
  --border: #e2e2ed;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  font-size: 16px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--background);
.policy-page {
  background: var(--background);
}

.policy-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 226, 237, 0.6);
}

.policy-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  width: min(960px, 92vw);
}

.policy-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

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

.policy-content {
  padding-bottom: 4rem;
}

.policy-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(71, 71, 71, 0.12), rgba(105, 130, 165, 0.08));
}

.policy-hero .container {
  width: min(840px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.policy-hero h1 {
  font-size: clamp(2.4rem, 1vw + 2.1rem, 3rem);
}

.policy-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.policy-section {
  padding: 3rem 0;
}

.policy-section .container {
  width: min(840px, 92vw);
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.policy-section p {
  color: var(--muted);
}

.policy-section ul {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--text);
}

.policy-section li {
  position: relative;
  padding-left: 1.6rem;
}

.policy-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.policy-section a {
  color: var(--primary);
  font-weight: 600;
}

.policy-footer {
  background: #111116;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.policy-footer .container {
  width: min(840px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.policy-footer .btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(71, 71, 71, 0.32);
}

.policy-footer .btn:hover {
  background: var(--primary-dark);
}

  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(71, 71, 71, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn .icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
}

.btn .icon svg {
  width: 100%;
  height: 100%;
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.link {
  font-weight: 600;
  color: var(--primary);
}

.link:hover {
  text-decoration: underline;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 226, 237, 0.5);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: inherit;
}

.branding .logo {
  width: 100px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 300;
}

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

.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  filter: brightness(1);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.6rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--primary);
  animation: subtleGlow 3s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(105, 130, 165, 0.5);
}

@keyframes subtleGlow {
  0%, 100% {
    text-shadow: 0 0 15px rgba(105, 130, 165, 0.5), 0 0 25px rgba(105, 130, 165, 0.3);
  }
  50% {
    text-shadow: 0 0 25px rgba(105, 130, 165, 0.8), 0 0 40px rgba(105, 130, 165, 0.5), 0 0 60px rgba(105, 130, 165, 0.3);
  }
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust p {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.hero-illustration {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-illustration img {
  border-radius: 24px;
  box-shadow: none;
  border: none;
  background: transparent;
  width: 100%;
  height: auto;
  display: block;
}

.hero-illustration::after {
  display: none;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: floatIcon 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.floating-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.floating-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.floating-icon::after {
  content: attr(data-label);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-icon:hover::after {
  opacity: 1;
}

.floating-icon:nth-child(1) {
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  animation-delay: 0.6s;
}

.floating-icon:nth-child(3) {
  animation-delay: 1.2s;
}

.floating-icon:nth-child(4) {
  animation-delay: 1.8s;
}

.floating-icon:nth-child(5) {
  animation-delay: 2.4s;
}

.floating-icon:nth-child(6) {
  animation-delay: 3s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(-5px) translateX(-5px);
  }
  75% {
    transform: translateY(-15px) translateX(3px);
  }
}

@media (max-width: 768px) {
  .floating-icon {
    width: 45px;
    height: 45px;
  }

  .floating-icon svg {
    width: 24px;
    height: 24px;
  }

  .floating-icon::after {
    font-size: 0.65rem;
    padding: 4px 8px;
    bottom: -30px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 1vw + 1.5rem, 2.6rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.services {
  padding: 4.5rem 0;
}

.open-account {
  padding: 5rem 0 4rem;
}

.open-account-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.open-account-header h2 {
  font-size: clamp(2.2rem, 1vw + 1.8rem, 2.8rem);
}

.open-account-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.open-account-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.open-account-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(226, 226, 237, 0.7);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 2.2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(71, 71, 71, 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.step-card h3 {
  font-size: 1.25rem;
}

.step-card p {
  color: var(--muted);
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(71, 71, 71, 0.08), rgba(105, 130, 165, 0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.step-card:hover::after {
  opacity: 1;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.solutions {
  padding: 5rem 0 4.5rem;
  background: var(--white);
}

.solutions .section-header {
  margin-bottom: 3.5rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.solution-card {
  background: var(--background);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(226, 226, 237, 0.9);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(71, 71, 71, 0.08), rgba(105, 130, 165, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card .card-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.solution-card .tag {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(71, 71, 71, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.solution-card h3 {
  font-size: 1.35rem;
}

.solution-card p {
  color: var(--muted);
}

.solution-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.solution-card li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card img {
  width: 48px;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

.benefits {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.benefits .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.benefits .copy h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.benefits .copy p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.benefits ul {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.benefits .media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.benefits .media {
  position: relative;
}

.benefits .media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(71, 71, 71, 0.24);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.intelligence {
  padding: 5rem 0;
}

.screens {
  padding: 5rem 0;
}

.screens-carousel {
  position: relative;
  overflow: hidden;
}

.screens-carousel::before,
.screens-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.screens-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--background) 0%, rgba(249, 249, 251, 0) 100%);
}

.screens-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--background) 0%, rgba(249, 249, 251, 0) 100%);
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: carousel-scroll 45s linear infinite;
}

.screens-carousel:hover .carousel-track {
  animation-play-state: paused;
}

.screen-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(226, 226, 237, 0.7);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 clamp(240px, 24vw, 320px);
}

.screen-card img {
  border-radius: 16px;
  border: 1px solid rgba(226, 226, 237, 0.5);
}

.screen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.13);
}

@keyframes carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.intelligence .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.feature {
  background: linear-gradient(140deg, #ffffff 0%, #fff5f0 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.7);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature p {
  color: var(--muted);
}

.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(105, 130, 165, 0.15) 0%, rgba(71, 71, 71, 0.12) 100%);
}

.carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.quote {
  background: linear-gradient(180deg, #fff5f0 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(226, 226, 237, 0.7);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  font-size: 0.95rem;
}

.quote p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.quote .author {
  font-weight: 600;
  color: var(--text);
}

.hub-services {
  padding: 5rem 0;
  background: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 226, 237, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta {
  padding: 4rem 0;
  background: linear-gradient(120deg, #6982a5 0%, #474747 100%);
  color: var(--white);
}

.cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta h2 {
  font-size: clamp(2rem, 1vw + 1.5rem, 2.6rem);
  margin-bottom: 0.75rem;
}

.cta p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
}

.cta .btn {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

.cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.footer {
  padding: 4rem 0 2.5rem;
  background: #111116;
  color: rgba(255, 255, 255, 0.84);
}

.footer .container {
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  max-width: 360px;
}

.footer .logo {
  width: 90px;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links a {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-actions .link {
  color: rgba(255, 255, 255, 0.72);
}

.footer-actions .link:hover {
  color: #ffffff;
}

.back-to-top {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 18px 36px rgba(71, 71, 71, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.back-to-top.desktop {
  display: inline-flex;
}

.back-to-top.mobile {
  display: none;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(71, 71, 71, 0.32);
  padding: 0;
  justify-content: center;
}

.back-to-top.mobile .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.back-to-top .icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
}

.back-to-top .icon svg {
  width: 100%;
  height: 100%;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(71, 71, 71, 0.34);
}

.back-to-top .label {
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .back-to-top {
    right: 1.1rem;
    bottom: 1.1rem;
    padding: 0.65rem 0.9rem;
  }

  .back-to-top .label {
    display: none;
  }

  .back-to-top.desktop {
    display: none;
  }

  .back-to-top.mobile {
    display: inline-flex;
  }
}

.whatsapp-float {
  position: fixed;
  left: 1.75rem;
  bottom: 1.75rem;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    left: 1.1rem;
    bottom: 1.1rem;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 960px) {
  .top-bar .container {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .actions {
    order: 2;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 45%;
    min-width: 180px;
  }
}

@media (max-width: 600px) {
  .top-bar .container {
    padding: 0.85rem 0;
    gap: 1rem;
  }

  .branding span {
    display: none;
  }

  .main-nav {
    gap: 0.9rem;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .cta .container {
    justify-content: flex-start;
  }

  .open-account-header {
    margin-bottom: 2.5rem;
  }

  .open-account-steps {
    gap: 1.1rem;
  }

  .solutions {
    padding: 4rem 0 3.5rem;
  }
}

.feature-list {
  list-style: none;
  padding: 1.5rem;
  text-align: left;
  margin: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  color: var(--text);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-list li strong {
  color: var(--text);
  font-weight: 600;
}

