/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary: #7B5A3E;
    --primary-light: #9d7a5e;
    --primary-dark: #5a3f2a;
    --cream: #FBF8F3;
    --cream-dark: #F5EFE7;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-medium: #6b6b6b;
    --text-light: #9a9a9a;
    --accent: #D4AF87;
    --shadow: rgba(123, 90, 62, 0.08);
    --shadow-medium: rgba(123, 90, 62, 0.12);
    --shadow-strong: rgba(123, 90, 62, 0.18);

    /* Bronze aliases for primary (used throughout the site) */
    --bronze: #7B5A3E;
    --bronze-light: #9d7a5e;
    --bronze-dark: #5a3f2a;
    --accent-rose: #D4AF87;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-medium);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background-color: var(--cream-dark);
}

/* ===========================
   Guides List Page
   NOTE: Guides list page now uses the same styles as the home page
   (main-hero, guides-showcase, guide-item, etc.)
   =========================== */

/* ===========================
   Single Guide Page
   =========================== */
.guide-single {
    background-color: var(--white);
}

.guide-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.guide-category-badge {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reading-time {
    color: var(--text-medium);
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    background-color: var(--white);
    border-radius: 20px;
}

.guide-main-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.guide-featured-image {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 2rem;
}

.guide-featured-image img {
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.guide-body {
    padding: 3rem 0 5rem;
}

.guide-layout {
    display: flex;
    gap: 3rem;
}

.guide-sidebar {
  position: sticky;
  top: 2rem;
  width: 250px;
  flex-shrink: 0;
  align-self: flex-start;
  max-height: calc(100vh - 4rem);
}

.sidebar-content {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px var(--shadow);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--cream-dark);
}

/* Custom scrollbar for webkit browsers */
.sidebar-content::-webkit-scrollbar {
  width: 8px;
}

.sidebar-content::-webkit-scrollbar-track {
  background: var(--cream-dark);
  border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.guide-main-content {
    flex: 1;
    min-width: 0;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--bronze);
}

.guide-toc ul {
    list-style: none;
}

.guide-toc li {
    margin-bottom: 0.8rem;
}

.guide-toc a {
    color: var(--text-medium);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.guide-toc a:hover {
    color: var(--bronze);
    padding-left: 0.5rem;
}

.toc-placeholder {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.reading-progress {
    position: sticky;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bronze-light);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--cream-dark);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-light) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.guide-main-content h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--bronze-dark);
}

.guide-main-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--bronze);
}

.guide-main-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.guide-main-content ul,
.guide-main-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.guide-main-content li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.guide-main-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.guide-main-content blockquote {
    border-left: 4px solid var(--bronze);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-medium);
    background-color: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
}

.guide-footer-cta {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--cream-dark);
}

.cta-card {
    background: linear-gradient(135deg, var(--bronze-light) 0%, var(--bronze) 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--bronze);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===========================
   Monica CTA Partial
   =========================== */
.monica-cta {
    margin: 3rem 0;
    width: 100%;
}

.monica-cta-container {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 20px;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px var(--shadow-medium);
    overflow: hidden;
    position: relative;
}

.monica-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.monica-cta-content {
    padding: 3rem;
}

.monica-cta-header {
    margin-bottom: 2rem;
}

.monica-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.monica-image-placeholder {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.monica-title-group {
    flex: 1;
}

.monica-name {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.monica-role {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.4;
}

.monica-description {
    margin-bottom: 2rem;
}

.monica-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.monica-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--cream-dark);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.credential-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.monica-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.monica-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.monica-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.monica-cta-button:hover::before {
    left: 100%;
}

.monica-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-strong);
    gap: 1.2rem;
}

.monica-cta-button svg {
    transition: transform 0.4s ease;
}

.monica-cta-button:hover svg {
    transform: translateX(5px);
}

.monica-website {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background-color: var(--text-dark);
    color: var(--cream);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--bronze-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--bronze-light);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.footer-section p {
    color: var(--cream-dark);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--cream-dark);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    transform: translateX(5px);
    color: var(--white);
}

.footer-about {
    padding-right: 2rem;
}

.footer-legal {
    text-align: right;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .guide-layout {
        flex-direction: column;
    }

    .guide-sidebar {
        order: 2;
        width: 100%;
    }

    .guide-main-content {
        order: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guide-main-title {
        font-size: 2.2rem;
    }

    .guide-subtitle {
        font-size: 1.1rem;
    }

    .guide-main-content {
        padding: 2rem 1.5rem;
    }

    .monica-cta-content {
        padding: 2rem;
    }

    .monica-profile {
        flex-direction: column;
        text-align: center;
    }

    .monica-name {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-legal {
        text-align: left;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-lead {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1.5rem;
    }

    .stat-text {
        align-items: flex-start;
        text-align: left;
    }

    .guides-heading {
        font-size: 2.2rem;
    }

    .guides-subheading {
        font-size: 1.05rem;
    }

    .guides-masonry {
        grid-template-columns: 1fr;
    }

    .cta-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }

    .cta-text-side {
        padding-right: 0;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .guide-main-title {
        font-size: 1.8rem;
    }

    .guide-card {
        border-radius: 12px;
    }

    .guide-content {
        padding: 1.5rem;
    }

    .guide-title {
        font-size: 1.5rem;
    }

    .guides-hero {
        padding: 3rem 0;
    }

    .guide-header {
        padding: 3rem 0 2rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .monica-cta-content {
        padding: 1.5rem;
    }

    .monica-name {
        font-size: 1.3rem;
    }

    .monica-role {
        font-size: 0.9rem;
    }

    .monica-description p {
        font-size: 0.95rem;
    }

    .monica-cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .home-hero {
        padding: 3rem 0;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .main-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }

    .stat-item {
        padding: 1.2rem;
    }

    .stat-icon svg {
        width: 28px;
        height: 28px;
    }

    .stat-text strong {
        font-size: 1rem;
    }

    .stat-text span {
        font-size: 0.85rem;
    }

    .guides-showcase {
        padding: 3rem 1.5rem;
    }

    .guides-heading {
        font-size: 1.8rem;
    }

    .guides-intro {
        margin-bottom: 2.5rem;
    }

    .guide-inner {
        padding: 2rem;
    }

    .guide-item-title {
        font-size: 1.4rem;
    }

    .website-cta {
        padding: 3rem 1.5rem;
    }

    .cta-content-grid {
        padding: 2.5rem 1.5rem;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .cta-benefits li {
        font-size: 0.9rem;
    }

    .cta-main-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
}

/* ===========================
   Home Page Styles
   =========================== */

/* Hero Section */
.main-hero {
    background-color: var(--white);
    padding: 6rem 2rem 5rem;
    position: relative;
    border-bottom: 1px solid var(--cream-dark);
}

.hero-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.hero-text-center {
    max-width: 900px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.hero-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background-color: var(--cream);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--cream-dark);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    background-color: var(--white);
    border-color: var(--primary);
}

.stat-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.stat-text strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.stat-text span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Guides Showcase */
.guides-showcase {
    padding: 6rem 2rem;
    background-color: var(--white);
    position: relative;
}

.guides-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.guides-container {
    max-width: 1200px;
    margin: 0 auto;
}

.guides-intro {
    text-align: center;
    margin-bottom: 4.5rem;
}

.guides-heading {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.guides-subheading {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.guide-item {
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--cream-dark);
    position: relative;
}

.guide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.guide-item:hover::before {
    transform: scaleX(1);
}

.guide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--accent);
    background-color: var(--white);
}

.guide-inner {
    padding: 2.5rem;
}

.guide-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.guide-item-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.guide-excerpt {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.guide-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

.guide-link svg {
    transition: transform 0.3s ease;
}

.guide-link:hover svg {
    transform: translateX(3px);
}

/* Website CTA Section */
.website-cta {
    background-color: var(--white);
    padding: 5rem 2rem 6rem;
    border-top: 1px solid var(--cream-dark);
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--accent);
}

.cta-text-side {
    padding-right: 2rem;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

.cta-benefits svg {
    color: var(--primary);
    flex-shrink: 0;
}

.cta-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.cta-main-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.cta-main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-main-button:hover::before {
    left: 100%;
}

.cta-main-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
    gap: 1.5rem;
}

.button-arrow {
    transition: transform 0.4s ease;
}

.cta-main-button:hover .button-arrow {
    transform: translateX(5px);
}

.cta-website-url {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}
