/* VISA MUNICIPAL - Raw CSS Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: hsl(180, 38%, 99%);
    color: hsl(196, 72%, 16%);
    line-height: 1.6;
}

.htflow-wrapper {
    min-height: 100vh;
}

/* Typography */
.font-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

/* Colors */
.text-gradient {
    background: linear-gradient(135deg, hsl(196, 72%, 16%), hsl(177, 66%, 21%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container-main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Utilities */
.hidden {
    display: none;
}

/* Buttons */
.btn-cta {
    background-color: hsl(177, 66%, 21%);
    color: hsl(180, 38%, 99%);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition-property: all;
    transition-duration: 300ms;
    box-shadow: 0 4px 16px hsla(177, 66%, 21%, 0.2);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta:hover {
    background-color: hsl(165, 47%, 42%);
    box-shadow: 0 8px 24px hsla(177, 66%, 21%, 0.3);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: hsl(165, 47%, 42%);
    color: hsl(180, 38%, 99%);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition-property: all;
    transition-duration: 300ms;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: hsl(177, 66%, 21%);
    color: hsl(180, 38%, 99%);
}

/* Cards */
.card-feature {
    background-color: hsl(180, 38%, 99%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px hsla(196, 72%, 16%, 0.08);
    border: 1px solid hsla(180, 17%, 83%, 0.2);
    transition-property: all;
    transition-duration: 300ms;
}

.card-feature:hover {
    box-shadow: 0 8px 40px hsla(196, 72%, 16%, 0.12);
    transform: translateY(-4px);
}

/* Sections */
.section-gradient {
    background: linear-gradient(180deg, hsl(180, 38%, 99%), hsla(180, 17%, 83%, 0.3));
}

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

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(192, 10%, 51%);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header-main {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: hsla(180, 38%, 99%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(180, 17%, 83%, 0.2);
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo-image {
    height: 2.5rem;
    width: auto;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: hsl(196, 72%, 16%);
    font-weight: 500;
    transition-property: color;
    transition-duration: 300ms;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.nav-link:hover {
    color: hsl(165, 47%, 42%);
}

.header-cta {
    display: block;
}

.mobile-menu-btn {
    padding: 0.5rem;
    color: hsl(196, 72%, 16%);
    background: none;
    border: none;
    cursor: pointer;
    transition-property: color;
    transition-duration: 300ms;
    display: none;
}

.mobile-menu-btn:hover {
    color: hsl(165, 47%, 42%);
}

.menu-icon,
.close-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.nav-mobile {
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid hsla(180, 17%, 83%, 0.2);
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.nav-mobile-link {
    text-align: left;
    color: hsl(196, 72%, 16%);
    font-weight: 500;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition-property: color;
    transition-duration: 300ms;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.nav-mobile-link:hover {
    color: hsl(165, 47%, 42%);
}

.mobile-cta {
    width: fit-content;
    margin-top: 1rem;
}

/* Hero Section */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, hsl(180, 38%, 99%), hsla(180, 17%, 83%, 0.3));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-badge-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: hsla(180, 38%, 99%, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border: 1px solid hsla(180, 17%, 83%, 0.2);
}

.hero-logo {
    height: 4rem;
    width: auto;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(192, 10%, 51%);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 4rem;
}

.hero-cta-btn {
    font-size: 1.125rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    text-align: center;
}

.hero-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.hero-feature-icon.secondary {
    background-color: hsla(165, 47%, 42%, 0.1);
    color: hsl(165, 47%, 42%);
}

.hero-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 0.5rem;
}

.hero-feature-desc {
    color: hsl(192, 10%, 51%);
}

/* About Section */
.about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: hsl(180, 38%, 99%);
}

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

.about-paragraph {
    font-size: 1.125rem;
    color: hsl(192, 10%, 51%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-video {
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, hsla(165, 47%, 42%, 0.1), hsla(177, 66%, 21%, 0.1));
    border-radius: 1.5rem;
    padding: 2rem;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsla(180, 17%, 83%, 0.2);
}

.video-content {
    text-align: center;
}

.play-button {
    width: 5rem;
    height: 5rem;
    background-color: hsl(165, 47%, 42%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    transition-property: transform;
    transition-duration: 300ms;
    cursor: pointer;
    color: hsl(180, 38%, 99%);
}

.play-button:hover {
    transform: scale(1.1);
}

.video-text {
    color: hsl(192, 10%, 51%);
    font-weight: 500;
}

.differentials-section {
    margin-top: 5rem;
}

.differentials-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    text-align: center;
    margin-bottom: 3rem;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.differential-card {
    text-align: center;
    background-color: hsl(180, 38%, 99%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px hsla(196, 72%, 16%, 0.08);
    border: 1px solid hsla(180, 17%, 83%, 0.2);
    transition-property: all;
    transition-duration: 300ms;
}

.differential-card:hover {
    box-shadow: 0 8px 40px hsla(196, 72%, 16%, 0.12);
    transform: translateY(-4px);
}

.differential-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.differential-icon.secondary {
    background-color: hsla(165, 47%, 42%, 0.1);
    color: hsl(165, 47%, 42%);
}

.differential-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 0.5rem;
}

.differential-desc {
    color: hsl(192, 10%, 51%);
    font-size: 0.875rem;
}

/* Features Section */
.features-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, hsl(180, 38%, 99%), hsla(180, 17%, 83%, 0.3));
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: hsl(180, 38%, 99%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px hsla(196, 72%, 16%, 0.08);
    border: 1px solid hsla(180, 17%, 83%, 0.2);
    transition-property: all;
    transition-duration: 300ms;
}

.feature-card:hover {
    box-shadow: 0 8px 40px hsla(196, 72%, 16%, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition-property: background-color;
    transition-duration: 300ms;
}

.feature-icon.secondary {
    background-color: hsla(165, 47%, 42%, 0.1);
    color: hsl(165, 47%, 42%);
}

.feature-card:hover .feature-icon.secondary {
    background-color: hsla(165, 47%, 42%, 0.2);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 1rem;
}

.feature-desc {
    color: hsl(192, 10%, 51%);
    line-height: 1.6;
}

.integration-highlight {
    margin-top: 5rem;
    background-color: hsla(180, 38%, 99%, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid hsla(180, 17%, 83%, 0.2);
}

.integration-content {
    text-align: center;
}

.integration-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 1rem;
}

.integration-desc {
    font-size: 1.25rem;
    color: hsl(192, 10%, 51%);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.integration-tag {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.integration-tag.secondary {
    background-color: hsla(165, 47%, 42%, 0.1);
    color: hsl(165, 47%, 42%);
}

/* Target Audience Section */
.target-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: hsl(180, 38%, 99%);
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 96rem;
    margin-left: auto;
    margin-right: auto;
}

.target-card {
    background-color: hsl(180, 38%, 99%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px hsla(196, 72%, 16%, 0.08);
    border: 1px solid hsla(180, 17%, 83%, 0.2);
    transition-property: all;
    transition-duration: 300ms;
    text-align: center;
}

.target-card:hover {
    box-shadow: 0 8px 40px hsla(196, 72%, 16%, 0.12);
    transform: translateY(-4px);
}

.target-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.target-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-icon.secondary {
    background-color: hsla(165, 47%, 42%, 0.1);
    color: hsl(165, 47%, 42%);
}

.target-icon.accent {
    background-color: hsla(177, 66%, 21%, 0.1);
    color: hsl(177, 66%, 21%);
}

.target-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 1rem;
}

.target-subtitle {
    color: hsl(192, 10%, 51%);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.target-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-top: 0.75rem;
    flex-shrink: 0;
}

.target-bullet.secondary {
    background-color: hsl(165, 47%, 42%);
}

.target-bullet.accent {
    background-color: hsl(177, 66%, 21%);
}

.target-item span {
    color: hsl(192, 10%, 51%);
}

.target-cta {
    text-align: center;
    margin-top: 4rem;
}

.target-cta-content {
    background: linear-gradient(90deg, hsla(165, 47%, 42%, 0.1), hsla(177, 66%, 21%, 0.1));
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid hsla(180, 17%, 83%, 0.2);
}

.target-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 1rem;
}

.target-cta-desc {
    font-size: 1.25rem;
    color: hsl(192, 10%, 51%);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.target-cta-btn {
    font-size: 1.125rem;
}

/* Benefits Section */
.benefits-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, hsl(180, 38%, 99%), hsla(180, 17%, 83%, 0.3));
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 96rem;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background-color: hsl(180, 38%, 99%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px hsla(196, 72%, 16%, 0.08);
    border: 1px solid hsla(180, 17%, 83%, 0.2);
    transition-property: all;
    transition-duration: 300ms;
}

.benefit-card:hover {
    box-shadow: 0 8px 40px hsla(196, 72%, 16%, 0.12);
    transform: translateY(-4px);
}

.benefit-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition-property: transform;
    transition-duration: 300ms;
}

.benefit-icon.secondary {
    background-color: hsla(165, 47%, 42%, 0.1);
    color: hsl(165, 47%, 42%);
}

.benefit-icon.accent {
    background-color: hsla(177, 66%, 21%, 0.1);
    color: hsl(177, 66%, 21%);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-text {
    flex: 1;
}

.benefit-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.benefit-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
}

.benefit-stat {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    background-color: hsla(180, 38%, 99%, 0.8);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.benefit-stat.secondary {
    color: hsl(165, 47%, 42%);
}

.benefit-stat.accent {
    color: hsl(177, 66%, 21%);
}

.benefit-desc {
    color: hsl(192, 10%, 51%);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: hsl(180, 38%, 99%);
}

.cta-wrapper {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-main {
    background: linear-gradient(135deg, hsl(177, 66%, 21%), hsl(165, 47%, 42%));
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.cta-circle-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: white;
    border-radius: 50%;
    transform: translateX(8rem) translateY(-8rem);
}

.cta-circle-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background-color: white;
    border-radius: 50%;
    transform: translateX(-6rem) translateY(6rem);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-primary-btn {
    background-color: white;
    color: hsl(177, 66%, 21%);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition-property: all;
    transition-duration: 300ms;
    box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-primary-btn:hover {
    background-color: hsl(180, 17%, 83%);
    transform: scale(1.05);
}

.cta-secondary-btn {
    border: 2px solid white;
    color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition-property: all;
    transition-duration: 300ms;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
}

.cta-secondary-btn:hover {
    background-color: white;
    color: hsl(177, 66%, 21%);
}

.arrow-icon {
    transition-property: transform;
    transition-duration: 300ms;
}

.cta-primary-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-feature span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-card {
    background-color: hsl(180, 38%, 99%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px hsla(196, 72%, 16%, 0.08);
    border: 1px solid hsla(180, 17%, 83%, 0.2);
    transition-property: all;
    transition-duration: 300ms;
    text-align: center;
}

.cta-card:hover {
    box-shadow: 0 8px 40px hsla(196, 72%, 16%, 0.12);
    transform: translateY(-4px);
}

.cta-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.cta-card-icon.secondary {
    background-color: hsla(165, 47%, 42%, 0.1);
    color: hsl(165, 47%, 42%);
}

.cta-card-icon.accent {
    background-color: hsla(177, 66%, 21%, 0.1);
    color: hsl(177, 66%, 21%);
}

.cta-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(196, 72%, 16%);
    margin-bottom: 1rem;
}

.cta-card-desc {
    color: hsl(192, 10%, 51%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.cta-card-list li {
    color: hsl(192, 10%, 51%);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.cta-card-btn {
    width: 100%;
}

/* Footer */
.footer-main {
    background-color: hsl(196, 72%, 16%);
    color: hsl(180, 38%, 99%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 3rem;
    width: auto;
}

.footer-desc {
    color: hsla(180, 38%, 99%, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsla(255, 255%, 255%, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: background-color;
    transition-duration: 300ms;
    color: hsl(180, 38%, 99%);
    text-decoration: none;
}

.social-link:hover {
    background-color: hsl(165, 47%, 42%);
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: hsla(180, 38%, 99%, 0.8);
    transition-property: color;
    transition-duration: 300ms;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    text-align: left;
    padding: 0;
}

.footer-link:hover {
    color: hsl(165, 47%, 42%);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    color: hsl(165, 47%, 42%);
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.contact-text {
    color: hsla(180, 38%, 99%, 0.8);
}

.contact-hours {
    color: hsla(180, 38%, 99%, 0.6);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid hsla(255, 255%, 255%, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: hsla(180, 38%, 99%, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.legal-link {
    color: hsla(180, 38%, 99%, 0.6);
    transition-property: color;
    transition-duration: 300ms;
    text-decoration: none;
}

.legal-link:hover {
    color: hsl(165, 47%, 42%);
}

/* Responsive Styles */

/* Tablet */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .nav-desktop,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 479px) {
    .container-main {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-feature,
    .feature-card,
    .benefit-card,
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-main {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

/* Hover Effects for Interactive Elements */
.feature-card:hover .feature-icon,
.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

/* Active States */
.active-heading {
    color: hsl(165, 47%, 42%);
    transform: translateY(-2px);
    transition-property: all;
    transition-duration: 300ms;
}