:root {
    /* Colors */
    --background-light: #F2F2F7;
    --nav-background: rgba(245, 245, 247, .8);
    --nav-color: rgba(0, 0, 0, .8);
    --nav-hover-color: #000000;
    --button-color: rgb(0, 113, 227);
    --button-hover-color: rgb(0, 118, 223);
    
    --linkt-color: #06c;
    --text-color: rgb(0, 113, 227);

    --feature-background-color: rgb(0, 113, 227);

    --text-secondary: #86868B;
    --border-color: rgba(0, 0, 0, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-background: #ffffff;
    --text-primary: #1d1d1f;
    --footer-background: #f5f5f7;
    --footer-textColor: #515154;
    --footer-textColor-hover: #1d1d1f;

    /* Font Sizes */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 20px;
    --font-xl: 22px;
    --font-2xl: 24px;

    /* Line Heights */
    --line-height-large: 170%;

    /* Andere */
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Font-Family Variablen */
    --font-family-heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, 
        "Helvetica Neue", Arial, sans-serif;
    --font-family-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, 
        "Helvetica Neue", Arial, sans-serif;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

body {
    font-family: var(--font-family-body);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

sup {
    font-size: 0.7em;
    vertical-align: super;
    line-height: 0;
}

.hero-button {
    background: var(--button-color);
    color: white;
    border: none;
    width: 120px;
    height: 24px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
}

.hero-button:hover {
    background: var(--button-hover-color);
}

/* Hero Section */
.hero {
    background: var(--card-background);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Logo im Hero */
.hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transform-origin: center;
    opacity: 0;
    animation: logoAnimation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Titel Styling */
.hero h1,
.hero .subtitle {
    color: #000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.2s;
}

.hero .subtitle {
    margin-bottom: 60px;
    font-weight: 600;
    animation-delay: 1.4s;
}

/* CTA Button Styling */
.cta-button {
    background: var(--button-color);
    color: white;
    padding: 18px 31px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    border: none;
    transition: all 0.3s ease;
    margin: 20px auto 0;
    min-width: 140px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.6s;
}

.cta-button:hover {
    background: var(--button-hover-color);
}

/* Responsive Anpassungen */
@media (max-width: 1068px) {
    .hero h1,
    .hero .subtitle {
        font-size: 56px;
    }

    .feature-item h2 {
        font-size: 36px;
    }

    .insurance-experience-section h1 {
        font-size: 56px;
    }

    .experience-description {
        font-size: 19px;
    }

    .device-compatibility-section h1 {
        font-size: 56px;
    }

    .faq-section h1 {
        font-size: 56px;
    }

    .faq-button span {
        font-size: 21px;
    }
}

@media (max-width: 734px) {
    .hero {
        padding: 65px 20px;
    }

    .hero h1,
    .hero .subtitle {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .cta-button {
        margin: 15px auto 0;
        font-size: 15px;
        padding: 16px 28px;
    }

    .feature-item h2 {
        font-size: 28px;
    }

    .insurance-experience-section h1 {
        font-size: 40px;
    }

    .experience-description {
        font-size: 17px;
        margin-bottom: 60px;
    }

    .device-compatibility-section h1 {
        font-size: 32px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .device-item span {
        font-size: 15px;
    }

    .faq-section h1 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .faq-button span {
        font-size: 17px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .hero .subtitle {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cta-button {
        font-size: 14px;
        padding: 14px 24px;
    }

    .feature-item h2 {
        font-size: 24px;
    }

    .insurance-experience-section h1 {
        font-size: 32px;
    }

    .experience-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .device-compatibility-section h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .device-item span {
        font-size: 14px;
    }

    .faq-section h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-button span {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Device Section Styles */
.device-section {
    background: var(--card-background);
    overflow: hidden;
    min-height: 860px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 100px;
}

.device-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 48px 0;
    width: 100%;
    max-width: 1200px;
}

.device-image {
    width: 335px;
    height: auto;
    opacity: 0;
    animation: fadeInDeviceDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 2s;
}

.device-image:nth-child(even) {
    animation: fadeInDeviceUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 2.2s;
}

@media (max-width: 1068px) {
    .device-section {
        padding: 40px 0;
        margin-top: 60px;
        overflow: hidden;
        min-height: 500px;
    }

    .device-container {
        flex-wrap: nowrap;
        overflow: visible;
        padding: 0;
        gap: 16px;
        scrollbar-width: none;
        justify-content: center;
        margin: 0;
        padding-left: calc(50% - 167.5px);
        padding-right: calc(50% - 167.5px);
    }

    .device-container::-webkit-scrollbar {
        display: none;
    }

    .device-image {
        width: 335px;
        flex-shrink: 0;
        animation: fadeInDeviceDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .device-image:nth-child(even) {
        animation: fadeInDeviceUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
}

/* Features List Section */
.features-list-section {
    background: var(--card-background);
    padding: 100px 20px;
    overflow: hidden;
}

.features-list-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-item {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}


.feature-item:not(.visible) {
    transform: translateY(40px);
    opacity: 0;
}

.feature-item h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.feature-item .highlight {
    color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 1068px) {
    .feature-item h2 {
        font-size: 40px;
    }
}

@media (max-width: 734px) {
    .features-list-section {
        padding: 60px 20px;
    }

    .features-list-container {
        gap: 60px;
    }

    .feature-item h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .feature-item h2 {
        font-size: 28px;
    }
    
    .features-list-container {
        gap: 40px;
    }
}

@keyframes logoAnimation {
    0% {
        transform: scale(2);
        opacity: 0;
    }
    20% {
        transform: scale(2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes fadeInDeviceDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(40px);
    }
}

@keyframes fadeInDeviceUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(-40px);
    }
}

/* Info Insurance Section */
.info-insurance-section {
    background-color: var(--feature-background-color);
    height: 644px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
}

.info-insurance-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    background: transparent;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 250px;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.info-card h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.info-card p {
    font-size: 17px;
    line-height: 1.4;
    opacity: 0.9;
    margin: 0;
}

.info-card .cta-button {
    background: white;
    color: var(--button-color);
    margin-top: 20px;
    margin-left: 0;
    width: 168px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.info-card .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--button-hover-color);
}

@media (max-width: 1068px) {
    .info-insurance-section {
        height: auto;
        padding: 80px 20px;
    }
    
    .info-insurance-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .info-card {
        text-align: center;
    }
}

/* Insurance Experience Section */
.insurance-experience-section {
    background-color: #F5F5F7;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insurance-experience-container {
    max-width: 1000px;
    margin: 0 auto;
}

.insurance-experience-section h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.015em;
}

.experience-description {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
    margin-bottom: 80px;
}

.insurance-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
}

.insurance-grid-left,
.insurance-grid-right {
    display: grid;
    grid-template-columns: repeat(5, 208px);
    gap: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.insurance-grid-left {
    right: calc(50% + 450px);
}

.insurance-grid-right {
    left: calc(50% + 450px);
}

.magazine-cover {
    width: 208px;
    height: 260px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ipad-container {
    position: relative;
    width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.ipad-frame {
    width: 100%;
    height: auto;
}

@media (max-width: 1068px) {
    .insurance-grid-left,
    .insurance-grid-right {
        display: none;
    }

    .ipad-container {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 1400px) {
    .insurance-grid-left,
    .insurance-grid-right {
        grid-template-columns: repeat(5, 160px);
    }
    
    .magazine-cover {
        width: 160px;
        height: 200px;
    }

    .ipad-container {
        width: 800px;
    }
}

@media (max-width: 1068px) {
    .insurance-experience-section h1 {
        font-size: 42px;
    }
    .experience-description {
        font-size: 21px;
    }
}

@media (max-width: 734px) {
    .insurance-experience-section {
        padding: 80px 20px;
    }
    .insurance-experience-section h1 {
        font-size: 32px;
    }
    .experience-description {
        font-size: 19px;
    }
}


.feature-section {
    padding: 120px 0;
    background-color: var(--background-light);
}

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

.feature-heading {
    text-align: center;
    margin-bottom: 80px;
}

.feature-heading h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-heading h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.feature-main-card {
    background: white;
    border-radius: 18px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    width: 820px;
    height: 460px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.feature-main-card .feature-text {
    position: relative;
    z-index: 2;
}

.feature-main-card .feature-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: auto;
    overflow: hidden;
}

.feature-main-card .feature-image img {
    width: 130%;
    height: auto;
    transform: translateX(5%);
}

.feature-small-cards {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    gap: 40px;
    justify-content: center;
}

.feature-card {
    background: white;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 590px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.feature-card .feature-text {
    flex: 0 0 auto;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

.feature-card .feature-image {
    position: absolute;
    bottom: -220px;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.feature-card .feature-image img {
    position: relative;
    width: auto;
    height: 500px;
    object-fit: contain;
}

.feature-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.feature-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.icon-container i {
    font-size: 180px;
    color: var(--button-color);
    opacity: 0.9;
}

.icon-container .lock-icon {
    width: 120px !important;
    height: auto;
    filter: brightness(0) saturate(100%) invert(34%) sepia(85%) saturate(2154%) hue-rotate(204deg) brightness(99%) contrast(93%);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .feature-main-card {
        width: 328px;
        height: 561px;
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        padding: 40px;
        position: relative;
        overflow: hidden;
    }

    .feature-main-card .feature-text {
        flex: 0 0 auto;
        padding-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    .feature-main-card .feature-image {
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        overflow: hidden;
        transform: none;
    }

    .feature-main-card .feature-image img {
        position: relative;
        width: auto;
        height: 770px;
        object-fit: contain;
        transform: none;
        left: 100px;
    }

    .feature-small-cards {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        justify-items: center;
    }

    .feature-card {
        width: 328px;
        height: 610px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 30px;
    }

    .feature-text h3 {
        font-size: 24px;
    }

    .feature-text p {
        font-size: 17px;
    }
}

/* Card Styling */
.feature-info {
    height: 744px;
    position: relative;
    margin-bottom: 30px;
}

.feature-stats-container {
    display: grid;
    grid-template-columns: repeat(2, 683px);
    gap: 34px;
    justify-content: center;
}

.feature-stats {
    height: 807px;
    position: relative;
    margin-bottom: 30px;
}

/* Überschriften */
h1, h2, h3, h4, .feature-title, .puzzle-letter {
    font-family: var(--font-family-heading);
}

/* Spezifische Anpassungen für bestimmte Elemente */
.hero h1,
.hero .subtitle,
.feature-title,
.feature-stats h3,
.puzzle-letter {
    font-family: var(--font-family-heading);
}

.feature-subtitle,
.puzzle-caption,
p,
.nav-link,
.footer-section p,
.footer-section a {
    font-family: var(--font-family-body);
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .feature-card {
        width: 328px;
        height: 610px;
    }

    .feature-card .feature-image {
        bottom: -220px;
    }

    .feature-card .feature-image img {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 30px;
    }

    .feature-text h3 {
        font-size: 24px;
    }

    .feature-text p {
        font-size: 17px;
    }
}

/* Füge diese Styles für das Icon hinzu */
.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: auto;
}



/* Anpassung für das responsive Design */
@media (max-width: 1024px) {
    .feature-main-card .icon-container {
        position: absolute;
        right: auto;
        top: auto;
        bottom: 40px;
        left: 0;
        width: 100%;
        transform: none;
    }

    .icon-container i {
        font-size: 140px;
    }

    .icon-container .lock-icon {
        width: 60px !important;
    }
}

/* Füge diese Styles zu deiner style.css hinzu */
.feature-main-card, .feature-card {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.card-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Anpassung für das responsive Design */
@media (prefers-reduced-motion: reduce) {
    .feature-main-card, .feature-card {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Füge diese Styles zu deiner style.css hinzu */
.device-compatibility-section {
    padding: 120px 0;
    background-color: white;
    text-align: center;
}

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

.device-compatibility-section h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.003em;
    color: var(--text-primary);
    margin-bottom: 70px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
    justify-items: center;
    text-align: center;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 200px;
}

.device-item img {
    width: 107px;
    height: 93px;
    object-fit: contain;
    margin-bottom: 8px;
}

.device-item span {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
}

.device-item:nth-child(5),
.device-item:nth-child(6) {
    grid-column: span 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .device-compatibility-section h1 {
        font-size: 32px;
        padding: 0 20px;
    }

    .device-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }

    .device-item:nth-child(5),
    .device-item:nth-child(6) {
        grid-column: auto;
    }

    .device-item {
        max-width: 160px;
    }

    .device-item img {
        width: 85px;
        height: 74px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 120px 0;
    background-color: white;
}

.faq-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h1 {
    font-size: 80px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-button {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-button span {
    font-size: 24px;
    line-height: 1.1666666667;
    font-weight: 400;
    letter-spacing: .009em;
    color: var(--text-primary);
}

.faq-button i {
    font-size: 24px;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.faq-button:hover span {
    color: var(--button-color);
}

.faq-button:hover i {
    color: var(--button-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section h1 {
        font-size: 48px;
        padding: 0 20px;
    }

    .faq-button span {
        font-size: 19px;
    }
}

/* Ergänze die FAQ Styles */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 48px 0 0;
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.4705882353;
    font-weight: 400;
    letter-spacing: -.022em;
    color: var(--text-secondary);
    padding: 0 0 24px 0;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

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

/* Mobile CTA Button */
.mobile-cta-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.mobile-cta-button.show {
    opacity: 1;
    visibility: visible;
}

.mobile-cta-link {
    display: block;
    width: 310px;
    height: 44px;
    background: var(--button-color);
    color: white;
    text-decoration: none;
    border-radius: 22px;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mobile-cta-link:hover {
    background: var(--button-hover-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mobile-cta-button.in-info-section .mobile-cta-link {
    background: white;
    color: var(--button-color);
    border: 1px solid var(--button-color);
}

.mobile-cta-button.in-info-section .mobile-cta-link:hover {
    background: rgba(0, 113, 227, 0.1);
    color: var(--button-hover-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 113, 227, 0.2);
}

@media (max-width: 768px) {
    .mobile-cta-button {
        display: block;
    }
}
